:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --soft: #f0f2f5;
  --ink: #1d2430;
  --muted: #667085;
  --line: #e2e6ec;
  --brand-blue: #07126f;
  --brand-orange: #ef6b21;
  --brand-red: #bd2330;
  --green: #198269;
  --shadow: 0 14px 38px rgba(24, 35, 55, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans Devanagari", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

body.dark {
  --bg: #11141b;
  --surface: #181d27;
  --soft: #202735;
  --ink: #f7f8fb;
  --muted: #aab3c4;
  --line: #2d3544;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.3);
}

body.drawer-open {
  overflow: hidden;
}

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

a:hover {
  color: var(--brand-orange);
}

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

button,
input {
  font: inherit;
}

.wrap {
  width: min(1188px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--surface);
  box-shadow: 0 1px 0 var(--line);
}

.mast-top {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.mast-top__inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.live-clock,
.mast-actions,
.social-row {
  display: flex;
  align-items: center;
}

.live-clock {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  gap: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  white-space: nowrap;
}

.live-clock svg {
  width: 20px;
  color: var(--brand-orange);
}

.live-clock strong {
  font-weight: 800;
  color: var(--brand-blue);
}

body.dark .live-clock strong {
  color: #ffb27b;
}

.social-row {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  gap: 10px;
  margin-left: 300px;
}

.social-row a {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.social-row a[aria-label="Facebook"] {
  color: #1877f2;
}

.social-row a[aria-label="Instagram"] {
  color: #e4405f;
}

.social-row a[aria-label="YouTube"] {
  color: #ff0000;
}

.social-row a[aria-label="Telegram"] {
  color: #229ed9;
}

.brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: block;
  width: 168px;
  height: 58px;
}

.brand img {
  /* width: 100%; */
  height: 100%;
  object-fit: contain;
}

.mast-actions {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  justify-content: flex-end;
  gap: 10px;
}

.icon-btn,
.menu-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
}

.icon-btn svg,
.menu-btn svg {
  width: 18px;
  height: 18px;
}

.icon-btn.mobile-header-btn {
  display: none;
}

.ghost-btn,
.solid-small {
  min-height: 34px;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.ghost-btn {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.solid-small {
  border: 1px solid var(--brand-orange);
  background: var(--brand-orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-bar {
  background: #eef0f4;
  border-bottom: 1px solid var(--line);
}

body.dark .nav-bar {
  background: #151a23;
}

.nav-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-btn {
  border: 0;
  background: transparent;
}

.nav-links {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: #3b4352;
  padding: 0 10px;
  font-weight: 800;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

body.dark .nav-links a {
  color: #e6e9ef;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--brand-orange);
  border-bottom-color: var(--brand-orange);
}

.nav-search {
  background: transparent;
  border: 0;
}

.search-panel {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.search-panel.is-open {
  display: block;
}

.search-panel__inner {
  min-height: 60px;
  display: grid;
  grid-template-columns: 24px 1fr 36px;
  gap: 12px;
  align-items: center;
}

.search-panel input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.05rem;
}

.breaking-ticker {
  background: linear-gradient(90deg, #101525 0%, #17203a 54%, #ef6b21 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(16, 21, 37, 0.18);
  box-shadow: 0 8px 22px rgba(16, 21, 37, 0.12);
}

.breaking-ticker__inner {
  min-height: 46px;
  display: flex;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.breaking-ticker__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 4px 12px;
  border-radius: 999px;
  background: #fff;
  color: #c2410c;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0;
  white-space: nowrap;
}

.breaking-ticker__label i {
  color: #ef3b2d;
}

.breaking-ticker__viewport {
  min-width: 0;
  overflow: hidden;
}

.breaking-ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  animation: ticker-scroll 34s linear infinite;
  will-change: transform;
}

.breaking-ticker__viewport:hover .breaking-ticker__track {
  animation-play-state: paused;
}

.breaking-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 850;
}

.breaking-ticker__item::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ffcf33;
  box-shadow: 0 0 0 4px rgba(255, 207, 51, 0.18);
}

.breaking-ticker__item a {
  color: #fff;
}

.breaking-ticker__item a:hover {
  color: #ffe2c7;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(2px);
}

.drawer-overlay[hidden] {
  display: none;
}

.side-drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  width: min(340px, calc(100vw - 48px));
  background: var(--surface);
  color: var(--ink);
  border-right: 1px solid var(--line);
  box-shadow: 24px 0 55px rgba(15, 23, 42, 0.22);
  transform: translateX(-105%);
  transition: transform 0.24s ease;
  display: none;
  flex-direction: column;
}

.side-drawer.is-open {
  display: flex;
  transform: translateX(0);
}

.drawer-head {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  color: var(--brand-blue);
}

body.dark .drawer-brand {
  color: #ffb27b;
}

.drawer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.drawer-brand span {
  font-size: 1.06rem;
  line-height: 1.2;
}

.drawer-nav {
  padding: 10px 12px;
  display: grid;
  gap: 2px;
  overflow-y: auto;
}

.drawer-nav a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid var(--line);
}

.drawer-nav a:hover {
  background: #fff3ea;
  color: var(--brand-orange);
}

body.dark .drawer-nav a:hover {
  background: #2a221e;
}

.drawer-social {
  margin-top: auto;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: var(--soft);
}

.drawer-social h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.drawer-social a {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.drawer-social span,
.drawer-social i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--surface);
  font-weight: 800;
}

.drawer-social .fa-facebook-f {
  color: #1877f2;
}

.drawer-social .fa-instagram {
  color: #e4405f;
}

.drawer-social .fa-youtube {
  color: #ff0000;
}

.drawer-social .fa-telegram {
  color: #229ed9;
}

.ad-hero {
  height: 178px;
  margin-top: 18px;
  border: 1px dashed #ccd3dd;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(239, 107, 33, 0.1), transparent 45%), var(--surface);
  color: var(--muted);
  display: grid;
  place-items: center;
  text-align: center;
}

.ad-slot {
  overflow: hidden;
}

.ad-slot a,
.ad-slot img {
  display: block;
  width: 100%;
}

.ad-slot img {
  height: 100%;
  object-fit: cover;
}

.ad-slot iframe,
.ad-slot ins {
  max-width: 100%;
}

.ad-slot--empty {
  background: linear-gradient(135deg, rgba(239, 107, 33, 0.1), transparent 45%), var(--surface);
}

.detail-ad {
  min-height: 112px;
  margin-top: 18px;
  border: 1px dashed #ccd3dd;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(239, 107, 33, 0.1), transparent 45%), var(--surface);
  color: var(--muted);
  display: grid;
  place-items: center;
  text-align: center;
}

.detail-ad span {
  color: #a7acb6;
  font-size: 0.82rem;
}

.detail-ad strong {
  color: var(--ink);
  font-size: 1.1rem;
}

.ad-hero span,
.rail-ad {
  color: #a7acb6;
  font-size: 0.82rem;
}

.ad-hero strong {
  color: var(--ink);
  font-size: 1.22rem;
}

.trend-strip {
  background: var(--surface);
  border-block: 1px solid var(--line);
  margin-top: 18px;
}

.trend-strip__inner {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
}

.trend-strip strong {
  color: var(--brand-orange);
  margin-right: 4px;
}

.trend-strip a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  color: #4a5362;
  background: var(--surface);
  white-space: nowrap;
  font-size: 0.92rem;
}

body.dark .trend-strip a {
  color: #d8deea;
}

.page-grid {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr) 300px;
  gap: 22px;
  align-items: start;
  padding-top: 22px;
}

.left-rail,
.right-rail {
  display: grid;
  gap: 16px;
}

.rail-ad {
  min-height: 260px;
  border: 1px dashed #d0d6df;
  border-radius: 6px;
  background: var(--surface);
  display: grid;
  place-items: center;
}

.rail-ad--tall {
  min-height: 320px;
}

.weather-card,
.mini-widget,
.horoscope-widget,
.latest-box,
.epaper-card,
.section-block,
.video-section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.weather-card,
.mini-widget,
.horoscope-widget,
.latest-box,
.section-block,
.video-section {
  padding: 16px;
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
}

body.dark .widget-title {
  color: #ffb27b;
}

.widget-title h2,
.mini-widget h2 {
  margin: 0;
  font-size: 1.02rem;
}

.weather-card__city {
  margin-top: 14px;
  padding: 8px 10px;
  background: #eef5ff;
  color: var(--brand-blue);
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
}

body.dark .weather-card__city {
  background: #202b3a;
  color: #dbeafe;
}

.weather-card__city svg {
  width: 16px;
}

.weather-card__value {
  margin-top: 18px;
  font-size: 2.4rem;
  font-weight: 800;
}

.weather-card p,
.mini-widget p,
.daily-sign p,
.lead-card p,
.epaper-card p,
.feature-strip p {
  color: var(--muted);
  margin: 8px 0 0;
}

.daily-sign {
  margin-top: 14px;
  padding: 12px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(239, 107, 33, 0.12), transparent 68%), var(--soft);
}

.daily-sign span {
  color: var(--brand-orange);
  font-size: 0.84rem;
  font-weight: 800;
}

.daily-sign h3 {
  margin: 3px 0 0;
  font-size: 1.36rem;
  line-height: 1.2;
}

.sign-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sign-grid a {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}

.sign-grid a:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.lead-column {
  min-width: 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  position: relative;
}

.section-title::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--brand-orange), transparent);
}

.section-title h1,
.section-title h2 {
  margin: 0;
  font-size: 1.36rem;
  line-height: 1.2;
  white-space: nowrap;
}

.section-title h1 span,
.section-title h2,
.story-line span,
.news-row span,
.tile-grid span,
.headline-stack span,
.feature-strip span,
.category-band span {
  color: var(--brand-orange);
}

.section-title--large h1 {
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  color: var(--ink);
}

.section-title a {
  color: var(--brand-orange);
  font-weight: 800;
  white-space: nowrap;
}

.lead-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lead-card__image {
  display: block;
  background: #eef0f4;
}

.lead-card__image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #fff;
  padding: 8px;
}

.lead-card__body {
  padding: 16px;
}

.story-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.story-line time {
  color: var(--muted);
  font-weight: 500;
}

.lead-card h2 {
  margin: 0;
  font-size: clamp(1.48rem, 2.5vw, 2.05rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.story-list {
  margin-top: 16px;
  display: grid;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.news-row {
  display: grid;
  grid-template-columns: 136px 1fr;
  gap: 14px;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.news-row:last-child {
  border-bottom: 0;
}

.news-row img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  border-radius: 6px;
}

.news-row h3,
.tile-grid h3,
.headline-stack h3,
.feature-strip h2,
.video-grid h3,
.category-band h3 {
  margin: 4px 0 0;
  line-height: 1.34;
  letter-spacing: 0;
}

.latest-box ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: latest;
}

.latest-box li {
  counter-increment: latest;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.latest-box li:last-child {
  border-bottom: 0;
}

.popular-box li span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.latest-box li::before {
  content: counter(latest);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff3ea;
  color: var(--brand-orange);
}

.epaper-card {
  overflow: hidden;
}

.epaper-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.epaper-card div {
  padding: 14px;
}

.epaper-card h2 {
  margin: 0;
}

.epaper-card a {
  margin-top: 12px;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 800;
}

.two-column-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding-top: 24px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tile-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.headline-stack article {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.headline-stack article:first-child {
  padding-top: 0;
}

.headline-stack article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mixed-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 24px;
}

.feature-strip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.feature-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.video-section {
  margin-top: 24px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #dde2ea;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(239, 107, 33, 0.95);
  color: #fff;
  cursor: pointer;
}

.category-band {
  padding: 24px 0 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.category-band article {
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-orange);
  border-radius: 8px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
  padding: 24px 0 36px;
}

.article-main,
.article-sidebar > section {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-main {
  padding: 22px;
}

.article-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 134px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--brand-orange);
  font-weight: 800;
}

.article-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.article-category {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff3ea;
  color: var(--brand-orange);
  font-weight: 800;
}

body.dark .article-category {
  background: #2a221e;
}

.article-header h1 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.article-summary {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.article-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-meta span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.article-meta a {
  color: var(--ink);
}

.share-strip {
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.share-strip strong {
  margin-right: 4px;
}

.share-strip button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 12px 0 8px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.share-strip button:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
}

.share-btn span,
.share-btn svg,
.share-btn i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.share-btn span {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.share-btn svg,
.share-btn i {
  padding: 4px;
  font-size: 0.86rem;
  line-height: 1;
}

.share-btn--facebook span {
  background: #1877f2;
}

.share-btn--whatsapp svg,
.share-btn--whatsapp i {
  background: #e9fbf1;
  color: #128c4a;
}

.share-btn--x span {
  background: #111827;
}

.share-btn--copy svg,
.share-btn--copy i {
  background: #fff3ea;
  color: var(--brand-orange);
}

.share-btn--facebook i {
  background: #eaf2ff;
  color: #1877f2;
}

.share-btn--x i {
  background: #eef0f3;
  color: #111827;
}

body.dark .share-btn--x i {
  background: #2f3542;
  color: #ffffff;
}

.article-hero {
  margin: 0;
}

.article-hero img {
  width: 100%;
  max-height: 540px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.article-hero--video video,
.article-hero--video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #111827;
}

.article-hero--link a {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  color: var(--text);
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
  font-weight: 800;
}

.article-hero--link i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(247, 91, 27, 0.12);
  color: var(--brand-orange);
}

.article-hero figcaption {
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 8px;
}

.article-body {
  margin-top: 20px;
  font-size: 1.08rem;
}

.article-body p,
.article-body ul {
  margin: 0 0 18px;
}

.article-body h2 {
  margin: 26px 0 10px;
  font-size: 1.45rem;
  line-height: 1.25;
}

.article-body blockquote {
  margin: 22px 0;
  padding: 14px 18px;
  border-left: 4px solid var(--brand-orange);
  background: var(--soft);
  border-radius: 0 8px 8px 0;
  font-weight: 800;
}

.article-body li {
  margin-bottom: 8px;
}

.article-author-box {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  padding: 16px;
}

.article-author-box img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
}

.article-author-box span {
  color: var(--brand-orange);
  font-weight: 800;
  font-size: 0.84rem;
}

.article-author-box h2 {
  margin: 2px 0 4px;
  font-size: 1.2rem;
}

.article-author-box p {
  margin: 0 0 8px;
  color: var(--muted);
}

.article-author-box > div > a {
  color: var(--brand-orange);
  font-weight: 800;
}

.comments-section {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.comments-section .section-title span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.comment-notice {
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-weight: 800;
}

.comment-notice.success {
  background: #ecfdf3;
  color: #027a48;
}

.comment-notice.warning {
  background: #fff7ed;
  color: #c2410c;
}

.comment-form {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  padding: 16px;
  margin-bottom: 18px;
}

.comment-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.comment-form label {
  display: grid;
  gap: 0px;
  font-weight: 600;
  color: var(--ink);
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--text);
  padding: 10px 12px;
  font: inherit;
}

.comment-form textarea {
  resize: vertical;
}

.comment-form button {
  justify-self: start;
  border: 0;
  cursor: pointer;
  gap: 6px;
}

.comment-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.comment-list {
  display: grid;
  gap: 12px;
}

.comment-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  padding: 5px 14px;
}

.comment-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(247, 91, 27, 0.12);
  color: var(--brand-orange);
  font-weight: 900;
  margin-top: 2px;
}

.comment-card header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  margin-top: 2px;
}

.comment-card time,
.comment-empty {
  color: var(--muted);
  font-size: 0.9rem;
}

.comment-card p {
  margin: 0;
}

.inline-ad {
  min-height: 120px;
  margin: 22px 0;
  border: 1px dashed #ccd3dd;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--soft);
}

.inline-ad.ad-slot {
  overflow: hidden;
}

.inline-ad span {
  color: #a7acb6;
  font-size: 0.82rem;
}

.related-news {
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

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

.related-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 8px;
}

.related-grid h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.site-footer {
  background: #101525;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1.15fr;
  gap: 28px;
  padding: 32px 0;
}

.footer-grid img {
  width: 130px;
  border-radius: 8px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 1.05rem;
}

.newsletter-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 22px;
  align-items: start;
}

.newsletter-panel span {
  color: #ffb27b;
  font-weight: 900;
  font-size: 0.82rem;
}

.newsletter-panel h2 {
  margin: 4px 0 6px;
  font-size: 1.25rem;
}

.newsletter-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.newsletter-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.newsletter-form input {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 12px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.newsletter-check {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.newsletter-check input {
  min-height: auto;
}

.newsletter-form button,
.newsletter-whatsapp {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  font-weight: 900;
  font-size: 14px;
}

.newsletter-form button {
  background: var(--brand-orange);
  color: #fff;
  cursor: pointer;
}

.newsletter-whatsapp {
  background: #128c4a;
  color: #fff;
}

.newsletter-honeypot {
  position: absolute;
  left: -9999px;
}

.newsletter-message {
  display: inline-block;
  margin-top: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.82rem;
}

.newsletter-message.success {
  background: #ecfdf3;
  color: #027a48;
}

.newsletter-message.warning {
  background: #fff7ed;
  color: #c2410c;
}

.footer-grid a {
  display: block;
  color: #d7ddec;
  margin: 8px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  color: #c1c8d8;
  padding: 14px;
  font-size: 0.9rem;
}

.static-hero {
  margin-top: 24px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.static-hero span {
  color: var(--brand-orange);
  font-weight: 800;
}

.static-hero h1 {
  margin: 6px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.static-hero p {
  max-width: 820px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.page-count {
  display: inline-flex;
  margin-top: 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: 800;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pager a,
.pager span {
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
}

.pager a.is-active {
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: #fff;
}

.pager a.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.pager span {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

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

.author-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  gap: 14px;
}

.author-card__avatar img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
}

.author-card h2 {
  margin: 0;
  font-size: 1.25rem;
}

.author-card__role {
  color: var(--brand-orange);
  font-weight: 800;
  margin: 4px 0 8px;
}

.author-card p {
  color: var(--muted);
  margin: 0 0 10px;
}

.author-tags {
  display: inline-flex;
  border-radius: 999px;
  background: #fff3ea;
  color: var(--brand-orange);
  padding: 5px 10px;
  font-size: 0.82rem;
  font-weight: 800;
}

.author-card__meta {
  margin-top: 12px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.author-card__meta strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.author-profile {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 24px;
}

.author-profile > img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
}

.author-profile span {
  color: var(--brand-orange);
  font-weight: 800;
}

.author-profile h1 {
  margin: 4px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}

.author-profile p {
  color: var(--muted);
}

.author-profile__stats {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
}

.author-profile__stats strong {
  font-size: 1.35rem;
}

.author-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.author-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--brand-blue);
}

.static-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
  padding: 24px 0 36px;
}

.static-page {
  display: grid;
  gap: 14px;
}

.static-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.static-card h2 {
  margin: 0;
  font-size: 1.24rem;
}

.static-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.empty-state {
  padding: 18px;
}

.text-muted {
  color: var(--muted);
}

.form-control {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: var(--surface);
  color: var(--ink);
}

.mt-3 {
  margin-top: 1rem;
}

.static-side {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 134px;
}

.footer-policy-links {
  display: grid;
  gap: 8px;
}

.footer-policy-links a {
  min-height: 34px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}

.footer-policy-links a:last-child {
  border-bottom: 0;
}

@media (max-width: 1060px) {
  .page-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

  .left-rail {
    display: none;
  }
}

@media (max-width: 860px) {
  .mast-top__inner {
    grid-template-columns: 1fr auto;
  }

  .live-clock,
  .social-row {
    display: none;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .mast-actions {
    grid-column: 2;
  }

  .page-grid,
  .two-column-news,
  .mixed-sections,
  .video-grid,
  .category-band {
    grid-template-columns: 1fr;
  }

  .right-rail {
    grid-template-columns: 1fr 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .authors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-sidebar,
  .static-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar,
  .static-side {
    position: static;
  }

  .article-sidebar {
    grid-template-columns: 1fr 1fr;
  }

  .rail-ad--tall {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .breaking-ticker__track {
    animation: none;
    flex-wrap: wrap;
    white-space: normal;
    padding: 8px 0;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 24px, 1188px);
  }

  .mast-top__inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand {
    width: 134px;
    height: 48px;
  }

  .ghost-btn,
  .solid-small {
    display: none;
  }

  .mast-actions {
    gap: 8px;
  }

  .icon-btn.mobile-header-btn {
    display: inline-grid;
  }

  .nav-bar__inner {
    min-height: 0;
    align-items: flex-start;
    padding: 0;
  }

  .nav-bar .menu-btn,
  .nav-search {
    display: none;
  }

  .nav-links {
    display: none;
    flex-wrap: wrap;
    overflow: visible;
    padding: 6px 0 10px;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 34px;
    padding: 0 8px;
  }

  .breaking-ticker__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px 0;
  }

  .breaking-ticker__label {
    justify-self: start;
    font-size: 0.74rem;
  }

  .breaking-ticker__track {
    gap: 20px;
    animation-duration: 28s;
  }

  .breaking-ticker__item {
    font-size: 0.9rem;
    font-weight: 800;
  }

  .ad-hero {
    height: 116px;
    margin-top: 12px;
  }

  .trend-strip__inner {
    min-height: 48px;
  }

  .page-grid {
    gap: 16px;
    padding-top: 18px;
  }

  .section-title h1,
  .section-title h2 {
    white-space: normal;
  }

  .lead-card {
    border-radius: 10px;
  }

  .lead-card__body,
  .weather-card,
  .mini-widget,
  .horoscope-widget,
  .latest-box,
  .section-block,
  .video-section {
    padding: 14px;
  }

  .lead-card h2 {
    font-size: 1.38rem;
  }

  .news-row {
    grid-template-columns: 112px 1fr;
    gap: 10px;
  }

  .news-row img {
    height: 82px;
  }

  .right-rail,
  .article-sidebar,
  .related-grid,
  .tile-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .article-main {
    padding: 14px;
  }

  .article-header h1 {
    font-size: 1.72rem;
  }

  .article-summary,
  .article-body {
    font-size: 1rem;
  }

  .authors-grid,
  .author-profile,
  .article-author-box {
    grid-template-columns: 1fr;
  }

  .comment-form-grid {
    grid-template-columns: 1fr;
  }

  .author-profile > img,
  .article-author-box img {
    justify-self: start;
  }

  .feature-strip img {
    order: -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-panel,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-check {
    grid-column: auto;
  }

  .static-hero,
  .static-card {
    padding: 14px;
  }
}
