@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800;900&display=swap");

:root {
  --brand: #e21d2f;
  --ink: #171717;
  --muted: #666;
  --line: #e6e6e6;
  --soft: #f6f7f8;
  --paper: #fff;
  --accent: #0a7c7c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Noto Sans Devanagari", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  max-width: none;
  margin: 0 auto;
  background: var(--paper);
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 64px;
  padding: 0 38px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--paper);
}

.topbar.is-scrolled {
  box-shadow: 0 5px 16px rgba(0, 0, 0, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  min-width: 180px;
  max-width: 180px;
  height: 64px;
  color: #242424;
  font-size: 0;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
}

.brand-logo {
  display: block;
  width: auto !important;
  max-width: 100% !important;
  max-height: 48px !important;
  height: auto !important;
  object-fit: contain !important;
}

.primary-nav {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: 0;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  font-size: 17px;
  font-weight: 900;
}

.mobile-quick-links {
  display: none;
}

.primary-nav li {
  list-style: none;
}

.primary-nav a,
.primary-nav .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  color: #292929;
  white-space: nowrap;
}

.primary-nav a:first-child,
.primary-nav .nav-link-home {
  color: #ff8200;
}

.primary-nav a + a,
.primary-nav li + li,
.nav-link + .nav-link {
  border-left: 1px solid #ededed;
}

.nav-icon {
  width: 25px;
  height: 25px;
  position: relative;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  font-size: 24px;
}

.nav-icon i {
  line-height: 1;
}

.nav-link-home .nav-icon::before {
  display: none;
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 16px;
  height: 12px;
  background: currentColor;
  border-radius: 3px 3px 2px 2px;
}

.nav-link-home .nav-icon::after {
  display: none;
  content: "";
  position: absolute;
  left: 2px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: currentColor;
  transform: rotate(45deg);
  clip-path: polygon(50% 0, 100% 50%, 76% 50%, 76% 100%, 24% 100%, 24% 50%, 0 50%);
}

.nav-link-play .nav-icon {
  border: 0;
  border-radius: 0;
}

.nav-link-play .nav-icon::before {
  display: none;
  content: "";
  position: absolute;
  left: 8px;
  top: 5px;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.nav-link-search .nav-icon::before {
  display: none;
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.nav-link-search .nav-icon::after {
  display: none;
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 10px;
  height: 3px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.nav-link-watch .nav-icon::before {
  display: none;
  content: "";
  position: absolute;
  left: 2px;
  top: 5px;
  width: 21px;
  height: 14px;
  background: currentColor;
  border-radius: 4px;
}

.nav-link-watch .nav-icon::after {
  display: none;
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  border-left: 7px solid #fff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.nav-link-stories .nav-icon::before,
.nav-link-stories .nav-icon::after {
  display: none;
  content: "";
  position: absolute;
  top: 3px;
  width: 8px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 2px;
}

.nav-link-stories .nav-icon::before {
  left: 4px;
}

.nav-link-stories .nav-icon::after {
  left: 14px;
}

.nav-link-paper .nav-icon::before {
  display: none;
  content: "";
  position: absolute;
  inset: 3px;
  border: 3px solid currentColor;
  border-radius: 2px;
}

.nav-link-paper .nav-icon::after {
  display: none;
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 10px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor;
}

.primary-nav::-webkit-scrollbar,
.category-rail::-webkit-scrollbar,
.trend-list::-webkit-scrollbar {
  display: none;
}

.category-rail {
  display: none;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.category-rail li {
  list-style: none;
}

.category-rail a,
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 800;
  background: #fff;
}

.category-rail a::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  flex: 0 0 auto;
}

.category-rail .cat-pill::before {
  display: none;
}

.cat-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #ff6a21;
  background: transparent;
  font-size: 20px;
}

.cat-icon i {
  line-height: 1;
}

.ad-slot {
  margin: 14px 18px;
  min-height: 90px;
  border: 1px dashed #cfcfcf;
  display: grid;
  place-items: center;
  color: #888;
  font-size: 12px;
  background: #fafafa;
  overflow: hidden;
}

.ad-code,
.ad-code > *,
.ad-slot iframe,
.ad-slot img,
.ad-slot ins {
  max-width: 100%;
}

.ad-code {
  width: 100%;
  display: grid;
  place-items: center;
}

.ad-label {
  margin-top: 6px;
  color: #aaa;
  font-size: 11px;
}

.demo-ad {
  display: grid;
  place-items: center;
  gap: 6px;
  width: 100%;
  min-height: 100%;
  padding: 18px;
  color: #1f2937;
  text-align: center;
  background: linear-gradient(135deg, #ffe0b9, #e7f1ff);
  border: 1px solid #f3c98c;
}

.demo-ad strong {
  font-size: 18px;
  font-weight: 900;
}

.demo-ad span {
  color: #555;
  font-size: 13px;
  font-weight: 800;
}

.demo-ad-wide {
  min-height: 220px;
}

.demo-ad-box {
  min-height: 250px;
}

.demo-ad-strip {
  min-height: 82px;
}

.header-ad-slot {
  margin: 0;
  min-height: 250px;
  border: 0;
  border-bottom: 1px solid #f1f1f1;
  background: #fafafa;
}

.ad-slot-header {
  margin: 0;
  min-height: 250px;
  border: 0;
  border-bottom: 1px solid #f1f1f1;
  background: #fafafa;
}

.archive .header-ad-slot,
.category .header-ad-slot {
  min-height: 140px;
}

.ad-loader {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.ad-loader i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d0d0;
}

.ad-loader i:first-child {
  background: #888;
}

.trends {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trend-title {
  color: var(--brand);
  font-weight: 900;
  font-size: 14px;
}

.trend-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.trend-list:empty {
  display: none;
}

.trends:has(.trend-list:empty) {
  display: none;
}

.trend-list a {
  border: 1px solid var(--line);
  padding: 10px 17px;
  border-radius: 999px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 900;
  background: #fff;
}

.bhaskar-layout {
  display: grid;
  grid-template-columns: 292px minmax(0, 640px) minmax(420px, 1fr);
  gap: 0;
  width: 100%;
  max-width: 1365px;
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #fff;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 20px;
  padding: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.left-rail {
  position: sticky;
  top: 64px;
  align-self: start;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  scrollbar-width: none;
  padding: 36px 20px 20px 55px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.left-rail::-webkit-scrollbar {
  display: none;
}

.rail-link {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  margin-bottom: 3px;
  padding: 0 16px;
  border-radius: 4px;
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.rail-link.is-active,
.home .rail-link:first-child {
  background: #f3f4f6;
}

.rail-link:hover {
  background: #f3f4f6;
  color: #111;
}

.rail-link:hover .rail-icon {
  transform: scale(1.08);
}

.rail-icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  font-size: 26px;
  transition: transform .18s ease;
}

.rail-icon::before {
  display: none;
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #ff5a30;
}

.rail-pin .rail-icon::before {
  display: none;
  background: #ff5b57;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.rail-bat .rail-icon::before {
  display: none;
  width: 7px;
  height: 24px;
  left: 11px;
  top: 2px;
  border-radius: 7px;
  transform: rotate(-28deg);
  background: #2077c9;
}

.rail-spark .rail-icon::before {
  display: none;
  inset: 1px;
  background: #ff8a00;
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 20% 91%, 31% 56%, 2% 35%, 39% 34%);
}

.rail-drop .rail-icon::before {
  display: none;
  background: #ff9d00;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.rail-flame .rail-icon,
.rail-drop .rail-icon,
.rail-flame .cat-icon,
.rail-drop .cat-icon {
  color: #ff6a21;
}

.rail-pin .rail-icon,
.rail-pin .cat-icon {
  color: #ff514f;
}

.rail-bat .rail-icon,
.rail-ball .rail-icon,
.rail-bat .cat-icon,
.rail-ball .cat-icon {
  color: #1976d2;
}

.rail-spark .rail-icon,
.rail-star .rail-icon,
.rail-spark .cat-icon,
.rail-star .cat-icon {
  color: #ff8a00;
}

.rail-book .rail-icon,
.rail-book .cat-icon {
  color: #2f5fca;
}

.rail-money .rail-icon,
.rail-money .cat-icon {
  color: #38a64a;
}

.rail-life .rail-icon,
.rail-life .cat-icon {
  color: #e8438d;
}

.rail-flag .rail-icon,
.rail-flag .cat-icon {
  color: #f57c00;
}

.rail-globe .rail-icon,
.rail-globe .cat-icon {
  color: #00897b;
}

.rail-tech .rail-icon,
.rail-tech .cat-icon {
  color: #7b1fa2;
}

.rail-opinion .rail-icon,
.rail-opinion .cat-icon {
  color: #616161;
}

.content-column {
  min-width: 0;
  border-right: 1px solid var(--line);
  background: #fff;
}

.right-rail {
  position: sticky;
  top: 64px;
  align-self: start;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  scrollbar-width: none;
  padding: 24px 34px 24px 24px;
  background: #fff;
}

.right-rail::-webkit-scrollbar {
  display: none;
}

.news-feed {
  display: grid;
  gap: 0;
  padding: 0;
}

.archive-column {
  padding-top: 24px;
}

.archive-breadcrumb {
  display: flex;
  gap: 6px;
  padding: 0 20px;
  color: #777;
  font-size: 12px;
  font-weight: 500;
}

.archive-title {
  margin: 26px 20px 14px;
  color: #333;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.2;
}

.single-column {
  position: relative;
  padding: 24px 0 32px;
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 20px;
  color: #777;
  font-size: 12px;
  font-weight: 500;
}

.article-header {
  padding: 24px 20px 12px;
}

.article-title {
  margin: 0;
  color: #222;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.23;
}

.article-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  color: #777;
  font-size: 14px;
}

.article-meta strong {
  color: #333;
}

.article-share {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  padding: 0 20px 14px;
  border-bottom: 1px solid var(--line);
}

.article-share a,
.article-share button {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 22px;
  cursor: pointer;
}

.article-share a:hover,
.article-share button:hover,
.article-share .is-copied {
  color: #ff8200;
}

.article-media {
  margin: 18px 20px 0;
  border-radius: 4px;
  overflow: hidden;
  background: #eee;
}

.article-media img {
  width: 100%;
  height: 338px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.article-media figcaption {
  padding: 8px 10px;
  color: #777;
  font-size: 12px;
}

.article-content {
  padding: 18px 20px 0;
  color: #222;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.78;
  text-align: justify;
  text-justify: inter-word;
}

.article-content p {
  margin: 0 0 20px;
}

.article-content h2,
.article-content h3 {
  margin: 26px 0 12px;
  color: #222;
  font-size: 24px;
  line-height: 1.35;
}

.article-inline-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 66px;
  margin: 20px 0;
  padding: 10px 18px;
  background: #ffe0b9;
  font-size: 15px;
  font-weight: 900;
}

.article-inline-cta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  background: #4685f4;
  color: #fff;
  white-space: nowrap;
}

.related-posts {
  border-top: 1px solid var(--line);
}

.related-posts h2 {
  margin: 0;
  padding: 18px 20px 0;
  font-size: 22px;
  font-weight: 900;
}

.infinite-loader {
  display: grid;
  place-items: center;
  padding: 20px;
}

.load-more-posts {
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #222;
  font-weight: 900;
  cursor: pointer;
}

.loading-text {
  display: none;
  color: #777;
  font-size: 13px;
  font-weight: 800;
}

.infinite-loader.is-loading .load-more-posts,
.infinite-loader.is-finished {
  display: none;
}

.infinite-loader.is-loading .loading-text {
  display: inline;
}

.archive-feed {
  padding-top: 0;
  gap: 0;
}

.archive-story-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 144px;
  gap: 12px;
  padding: 16px 20px 14px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background-color .18s ease, box-shadow .18s ease;
}

.archive-story-card:hover {
  background: #fbfbfb;
  box-shadow: inset 4px 0 0 #ff8200;
}

.archive-story-title {
  margin: 0;
  color: #222;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
}

.archive-story-title a {
  color: #1677f2;
  transition: color .18s ease;
}

.archive-story-card:hover .archive-story-title a {
  color: #ff5a00;
}

.archive-story-meta {
  margin-top: 13px;
}

.archive-story-city {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #333;
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.archive-story-city::after {
  content: "\203A";
  margin-left: 8px;
  font-size: 20px;
  line-height: 1;
}

.archive-story-share {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 8px;
  color: #777;
}

.archive-story-share a,
.archive-story-share button {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.archive-story-share a:hover,
.archive-story-share button:hover {
  color: #ff8200;
}

.archive-story-thumb {
  position: relative;
  overflow: hidden;
  align-self: start;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background: #eee;
}

.archive-story-side {
  align-self: start;
}

.archive-story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}

.archive-story-card:hover .archive-story-thumb img {
  transform: scale(1.05);
}

.archive-story-card:hover .archive-story-share {
  color: #555;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 144px;
  gap: 16px;
  padding: 20px 20px 18px;
  border-bottom: 1px solid var(--line);
  transition: background-color .18s ease, box-shadow .18s ease;
}

.story-card:hover {
  background: #fbfbfb;
  box-shadow: inset 4px 0 0 #ff8200;
}

.story-card.featured {
  grid-template-columns: minmax(0, 1fr);
  padding: 24px 20px 20px;
}

.story-card.featured .story-thumb {
  aspect-ratio: 16 / 8.8;
  margin-top: 12px;
}

.story-card.featured .story-share {
  padding-right: 2px;
}

.story-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.live-badge {
  color: #fff;
  background: #ff3d2e;
  padding: 3px 5px;
  border-radius: 4px;
  font-size: 20px;
  line-height: 1;
}

.story-title {
  margin: 0;
  color: #2d2d2d;
  font-size: 26px;
  line-height: 1.36;
  font-weight: 900;
}

.story-title a {
  transition: color .18s ease;
}

.story-card:hover .story-title a {
  color: #ff5a00;
}

.archive-feed .story-title a {
  color: #1677f2;
}

.story-card:not(.featured) .story-title {
  font-size: 21px;
  line-height: 1.42;
}

.story-meta {
  color: var(--muted);
  font-size: 13px;
  margin-top: 9px;
}

.story-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 3;
  background: #ddd;
}

.story-side {
  align-self: start;
}

.story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
}

.story-card:hover .story-thumb img {
  transform: scale(1.05);
}

.story-share {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 8px;
  color: #777;
}

.story-share a,
.story-share button {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
}

.story-share a:hover,
.story-share button:hover,
.story-share .is-copied {
  color: #ff8200;
}

.story-card:hover .story-share {
  color: #555;
}

.video-chip {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(0, 0, 0, .78);
  color: #fff;
  padding: 4px 7px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.sidebar {
  display: none;
  align-content: start;
  gap: 16px;
}

.follow-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  margin-bottom: 24px;
  padding: 14px 14px;
  border-radius: 7px;
  background: #ffe0b9;
  font-size: 14px;
  line-height: 1.35;
}

.follow-card span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 11px;
  border-radius: 6px;
  color: #fff;
  background: #4685f4;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.side-ad-slot,
.ad-slot-sidebar {
  min-height: 230px;
  margin: 0;
  border: 0;
  background: #fafafa;
}

.ad-slot-infeed,
.ad-slot-article_top,
.ad-slot-article_inline {
  margin: 16px 20px;
  min-height: 90px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.panel-title {
  margin: 0;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 900;
}

.mini-list {
  display: grid;
  gap: 0;
}

.mini-item {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.mini-item:last-child {
  border-bottom: 0;
}

.section-title {
  font-size: 22px;
  font-weight: 900;
  margin: 22px 0 12px;
  border-left: 5px solid var(--brand);
  padding-left: 10px;
  margin-left: 18px;
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 18px 18px;
}

.tile {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.tile h3 {
  margin: 0;
  padding: 10px;
  font-size: 16px;
  line-height: 1.35;
}

.site-footer {
  margin-top: 0;
  background: #fff;
  color: #777;
  border-top: 1px solid var(--line);
}

.footer-layout {
  display: grid;
  grid-template-columns: 292px minmax(0, 640px) minmax(420px, 1fr);
  gap: 0;
  width: 100%;
  max-width: 1365px;
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.footer-app-block {
  padding: 34px 40px 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.footer-app-block p,
.follow-label {
  margin: 0 0 12px;
  color: #888;
  font-size: 13px;
  font-weight: 500;
}

.app-buttons {
  display: grid;
  gap: 10px;
}

.app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  border-radius: 6px;
  color: #fff;
  background: #050505;
  font-size: 11px;
  line-height: 1.1;
  text-align: left;
}

.app-button i {
  font-size: 26px;
}

.app-button strong {
  font-size: 20px;
  font-weight: 800;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 0;
}

.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: #8a8a8a;
  font-size: 15px;
}

.footer-social a:hover {
  background: #ff8200;
}

.follow-label {
  margin-top: 40px;
}

.footer-spacer {
  border-right: 1px solid var(--line);
}

.footer-legal-block {
  padding: 28px 24px 30px;
  color: #888;
  font-size: 13px;
  line-height: 1.75;
}

.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 9px;
  margin-bottom: 22px;
}

.footer-policy-links a,
.footer-divisions a,
.footer-ethics a {
  color: #777;
}

.footer-policy-links a::after {
  content: "|";
  margin-left: 9px;
  color: #aaa;
}

.footer-policy-links a:last-child::after {
  content: "";
  margin: 0;
}

.footer-divisions {
  display: grid;
  gap: 4px;
}

.footer-divisions p {
  margin: 0 0 2px;
  color: #888;
}

.footer-divisions a {
  font-weight: 900;
}

.footer-copy,
.footer-ethics,
.footer-dev {
  margin: 10px 0 0;
}

.footer-ethics a {
  color: #1677f2;
}

.footer-dev {
  color: #999;
  font-weight: 700;
}

@media (max-width: 820px) {
  .topbar {
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 8px;
    min-height: auto;
    padding: 8px 12px 0;
  }

  .brand {
    min-width: 0;
    width: auto;
    flex: 1 1 auto;
    max-width: 210px;
    height: 44px;
    justify-content: flex-start;
    order: 1;
  }

  .mobile-quick-links {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    order: 1;
    margin-left: auto;
  }

  .mobile-quick-links a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #222;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-quick-links i {
    display: inline-grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 15px;
    line-height: 1;
  }

  .mobile-quick-links a:first-child i {
    color: #fff;
    background: #1677f2;
  }

  .mobile-quick-links a:last-child i {
    color: #fff;
    background: #ff8200;
  }

  .brand-logo {
    width: auto !important;
    max-width: 100% !important;
    max-height: 40px !important;
  }

  .primary-nav {
    display: none;
  }

  .primary-nav a,
  .primary-nav .nav-link {
    gap: 6px;
    min-height: 34px;
    padding: 0 12px;
  }

  .nav-icon {
    width: 18px;
    height: 18px;
    font-size: 18px;
  }

  .header-ad-slot {
    display: none;
  }

  .ad-slot-header {
    display: none;
  }

  .ad-slot-sidebar,
  .ad-slot-infeed,
  .ad-slot-article_top,
  .ad-slot-article_inline {
    margin: 12px;
    min-height: 72px;
  }

  .category-rail {
    display: flex;
    padding: 1px 0 3px;
    gap: 13px;
    order: 2;
    width: 100%;
    margin-top: 2px;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .category-rail a,
  .cat-pill {
    position: relative;
    min-height: 24px;
    padding: 0;
    border: 0;
    border-radius: 0;
    font-size: 13px;
    background: transparent;
  }

  .category-rail .cat-pill::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    height: 2px;
    border-radius: 999px;
    background: #111;
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity .16s ease, transform .16s ease;
  }

  .category-rail .cat-pill:hover::after,
  .category-rail .cat-pill:focus-visible::after,
  .category-rail .cat-pill:active::after,
  .category-rail .cat-pill.is-active::after {
    opacity: 1;
    transform: scaleX(1);
  }

  .category-rail a::before,
  .cat-icon {
    width: 18px;
    height: 18px;
    font-size: 17px;
  }

  .layout,
  .bhaskar-layout {
    grid-template-columns: 1fr;
    padding: 0;
    border: 0;
    max-width: none;
  }

  .left-rail,
  .right-rail {
    display: none;
  }

  .content-column {
    border-right: 0;
  }

  .trends {
    padding: 9px 10px;
  }

  .trend-title {
    font-size: 12px;
  }

  .trend-list a {
    padding: 7px 11px;
    font-size: 12px;
  }

  .news-feed {
    gap: 0;
    padding: 0;
  }

  .story-card {
    grid-template-columns: minmax(0, 1fr) 108px;
    gap: 10px;
    padding: 14px 12px;
  }

  .story-card.featured {
    grid-template-columns: 1fr;
  }

  .story-card.featured .story-thumb {
    margin-top: 10px;
    aspect-ratio: 16 / 9;
  }

  .story-kicker {
    font-size: 11px;
    margin-bottom: 5px;
  }

  .live-badge {
    font-size: 13px;
  }

  .archive-story-card {
    grid-template-columns: minmax(0, 1fr) 104px;
    gap: 10px;
    padding: 14px 12px;
  }

  .archive-story-title {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.42;
  }

  .archive-breadcrumb {
    padding: 0 12px;
    font-size: 11px;
  }

  .archive-title {
    margin: 18px 12px 10px;
    font-size: 22px;
  }

  .archive-story-meta {
    margin-top: 10px;
  }

  .archive-story-city {
    min-height: 26px;
    padding: 0 9px;
    font-size: 12px;
    font-weight: 800;
  }

  .archive-story-share {
    gap: 14px;
    margin-top: 8px;
  }

  .archive-story-share a,
  .archive-story-share button {
    font-size: 17px;
  }

  .story-title,
  .story-card:not(.featured) .story-title {
    font-size: 16px;
    line-height: 1.38;
  }

  .story-meta {
    font-size: 12px;
    margin-top: 6px;
  }

  .grid-section {
    grid-template-columns: 1fr;
    padding: 0 12px 16px;
  }

  .section-title {
    margin: 18px 12px 10px;
    font-size: 20px;
  }

  .sidebar {
    display: none;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    border-left: 0;
    border-right: 0;
  }

  .footer-app-block,
  .footer-spacer,
  .footer-legal-block {
    border-right: 0;
  }

  .footer-app-block {
    padding: 26px 18px;
  }

  .footer-spacer {
    display: none;
  }

  .footer-legal-block {
    padding: 22px 18px 26px;
    border-top: 1px solid var(--line);
  }

  .app-buttons {
    max-width: 240px;
    margin: 0 auto;
  }

  .article-title {
    font-size: 24px;
    line-height: 1.32;
  }

  .article-content {
    padding: 14px 12px 0;
    font-size: 17px;
    line-height: 1.72;
  }

  .single-column {
    padding-top: 18px;
  }

  .article-breadcrumb,
  .article-header,
  .article-share {
    padding-left: 12px;
    padding-right: 12px;
  }

  .article-header {
    padding-top: 18px;
  }

  .article-share {
    justify-content: flex-start;
    gap: 18px;
  }

  .article-media {
    margin: 14px 12px 0;
  }

  .article-media img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .article-inline-cta {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    margin: 16px 0;
    padding: 12px;
    font-size: 14px;
  }

  .related-posts h2 {
    padding: 16px 12px 0;
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .brand-logo {
    max-height: 36px !important;
  }

  .primary-nav a,
  .primary-nav .nav-link {
    padding: 0 10px;
  }

  .story-card,
  .archive-story-card {
    grid-template-columns: minmax(0, 1fr) 96px;
  }
}
