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

:root {
  --news-red: #e21d2b;
  --news-red-dark: #b90f1c;
  --ink: #12141a;
  --muted: #68707d;
  --paper: #fff;
  --soft: #f5f6f8;
  --line: #e6e8ec;
  --navy: #0c1f3d;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, .07);
  --shadow-lg: 0 24px 70px rgba(15, 23, 42, .14);
  --font-news: "Noto Sans Devanagari", "Nirmala UI", "Mangal", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-news);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 1100;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 0 0 8px 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.top-strip {
  padding: 7px 0;
  color: #fff;
  background: #101216;
  font-size: .78rem;
  letter-spacing: .02em;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #ff3949;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,57,73,.16);
  animation: pulse 1.5s infinite;
}
@keyframes pulse { 50% { opacity: .45; transform: scale(.85); } }

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 6px 24px rgba(15,23,42,.04);
  backdrop-filter: blur(12px);
}
.navbar { min-height: 76px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  display: block;
  width: 190px;
  height: 58px;
  object-fit: contain;
}
.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: var(--news-red);
  border-radius: 4px;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-2deg);
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-copy strong { font-size: 1.2rem; font-weight: 800; letter-spacing: -.015em; }
.brand-copy small {
  margin-top: 5px;
  color: var(--news-red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .35em;
}
.nav-link {
  position: relative;
  margin: 0 2px;
  color: #2c3038;
  font-size: .92rem;
  font-weight: 650;
}
.nav-link:hover, .nav-link.active { color: var(--news-red); }
.nav-link.active::after {
  position: absolute;
  right: 12px;
  bottom: 2px;
  left: 12px;
  height: 2px;
  background: var(--news-red);
  content: "";
}
.menu-parent {
  position: relative;
  display: flex;
  align-items: center;
}
.submenu-toggle {
  width: 22px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
}
.submenu-toggle span {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid #59606b;
  border-bottom: 2px solid #59606b;
  transform: translateY(-2px) rotate(45deg);
}
.menu-dropdown .dropdown-menu {
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(15,23,42,.14);
}
.menu-dropdown .dropdown-item {
  padding: 9px 12px;
  border-radius: 7px;
  font-size: .9rem;
  font-weight: 650;
}
.menu-dropdown .dropdown-item:hover,
.menu-dropdown .dropdown-item.active {
  color: var(--news-red);
  background: rgba(226,29,43,.08);
}
@media (min-width: 992px) {
  .menu-parent > .nav-link {
    z-index: 2;
    padding-right: 4px;
  }
  .menu-parent > .submenu-toggle {
    position: relative;
    z-index: 2;
    flex: 0 0 22px;
  }
  .menu-dropdown .dropdown-menu,
  .menu-dropdown .dropdown-menu[data-bs-popper] {
    top: calc(100% + 8px) !important;
    right: auto !important;
    left: 0 !important;
    margin: 0 !important;
    transform: none !important;
  }
  .menu-dropdown .dropdown-menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 10px;
    content: "";
  }
  .menu-dropdown:hover .dropdown-menu {
    display: block;
  }
}
.icon-btn {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--ink);
  background: var(--soft);
  border: 0;
  border-radius: 50%;
}
.icon-btn:hover { color: #fff; background: var(--news-red); }
.icon-btn svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(226,29,43,.2); }
.search-panel {
  display: grid;
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid transparent;
  transition: max-height .3s ease, border-color .3s ease;
}
.search-panel.open { max-height: 100px; border-color: var(--line); }
.search-box { display: flex; gap: 10px; max-width: 720px; margin: auto; }
.form-control {
  min-height: 48px;
  border-color: var(--line);
  border-radius: 4px;
}
.form-control:focus {
  border-color: var(--news-red);
  box-shadow: 0 0 0 .2rem rgba(226,29,43,.12);
}
.btn-news {
  padding-inline: 24px;
  color: #fff;
  background: var(--news-red);
  border-radius: 4px;
  font-weight: 700;
}
.btn-news:hover { color: #fff; background: var(--news-red-dark); }
.category-load-more { margin-top: 30px; text-align: center; }
.category-load-more p { min-height: 24px; margin: 10px 0 0; color: var(--muted); font-size: .85rem; }
.category-load-more .btn:disabled { cursor: wait; opacity: .75; }

.ticker {
  color: #fff;
  background: var(--news-red);
  overflow: hidden;
}
.ticker-label {
  z-index: 1;
  flex: 0 0 auto;
  padding: 12px 20px 11px 0;
  background: var(--news-red);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.ticker-window { overflow: hidden; }
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 24s linear infinite;
}
.ticker-track span {
  position: relative;
  padding: 12px 44px;
  white-space: nowrap;
  font-size: .88rem;
  font-weight: 600;
}
.ticker-track span::before {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}
@keyframes ticker { to { transform: translateX(-55%); } }

.hero-section { padding: 34px 0 18px; }
.hero-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: #16253a;
  border-radius: 12px;
}
.hero-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,9,19,.92) 0%, rgba(4,9,19,.62) 50%, rgba(4,9,19,.12) 100%);
}
.hero-content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 720px;
  padding: clamp(24px, 6vw, 58px);
}
.category-pill {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px 5px;
  color: #fff;
  background: var(--news-red);
  border-radius: 3px;
  font-size: .75rem;
  font-weight: 800;
}
.hero-content h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -.03em;
}
.hero-content p { max-width: 620px; margin-bottom: 22px; color: rgba(255,255,255,.82); font-size: 1rem; }
.news-meta { display: flex; gap: 20px; color: rgba(255,255,255,.68); font-size: .78rem; font-weight: 600; }
.news-meta span + span { position: relative; }
.news-meta span + span::before { position: absolute; top: 50%; left: -12px; width: 3px; height: 3px; background: currentColor; border-radius: 50%; content: ""; }
.news-meta.dark { color: #8a9099; }

.side-stories { display: grid; height: 100%; gap: 18px; grid-template-rows: 1fr 1fr; }
.side-story {
  position: relative;
  display: flex;
  min-height: 250px;
  padding: 28px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: #fff;
  border-radius: 12px;
}
.side-story::after {
  position: absolute;
  right: -30px;
  top: -30px;
  width: 180px;
  height: 180px;
  border: 35px solid rgba(255,255,255,.07);
  border-radius: 50%;
  content: "";
}
.story-blue { background: linear-gradient(135deg, #0a2b59, #145da0); }
.story-gold { background: linear-gradient(135deg, #9e4b08, #df8a17); }
.side-story .category-pill { align-self: flex-start; }
.side-story h2 { position: relative; z-index: 1; margin-bottom: 20px; font-size: 1.55rem; font-weight: 800; line-height: 1.3; }

.content-section { padding: 72px 0; }
.section-muted { background: var(--soft); }
.section-heading {
  display: flex;
  margin-bottom: 30px;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}
.section-heading.compact { align-items: center; }
.section-heading h2, .popular-panel h2 { margin: 2px 0 0; font-size: clamp(1.75rem, 3vw, 2.35rem); font-weight: 900; }
.section-heading h2::after {
  display: block;
  width: 44px;
  height: 4px;
  margin-top: 9px;
  background: var(--news-red);
  content: "";
}
.eyebrow {
  color: var(--news-red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.light { color: #ffb5ba; }
.view-all { color: var(--news-red); font-size: .88rem; font-weight: 800; white-space: nowrap; }
.view-all:hover { color: var(--news-red-dark); }

.news-card {
  height: 100%;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.news-card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(21,29,43,.1); }
.card-visual {
  position: relative;
  display: flex;
  height: 180px;
  padding: 18px;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.card-visual img,
.related-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-visual:has(img)::before,
.card-visual:has(img)::after {
  display: none;
}
.related-visual {
  position: relative;
  overflow: hidden;
}
.ticker-track a {
  color: inherit;
  text-decoration: none;
}
.article-content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 28px auto;
  border-radius: 10px;
  object-fit: cover;
}
.card-visual::before, .card-visual::after { position: absolute; content: ""; border-radius: 50%; }
.card-visual::before { width: 190px; height: 190px; right: -35px; top: -60px; border: 35px solid rgba(255,255,255,.12); }
.card-visual::after { width: 90px; height: 90px; left: 25px; top: 25px; background: rgba(255,255,255,.1); }
.card-visual span { z-index: 1; font-size: 1.45rem; font-weight: 900; }
.visual-weather { background: linear-gradient(145deg, #18599b, #5bb8df); }
.visual-tech { background: linear-gradient(145deg, #2f1b69, #824bc8); }
.visual-city { background: linear-gradient(145deg, #064f45, #20a17b); }
.visual-health { background: linear-gradient(145deg, #941d4b, #e34b72); }
.card-body { padding: 22px; }
.card-category { color: var(--news-red); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.news-card h3 { margin: 8px 0 10px; font-size: 1.15rem; font-weight: 800; line-height: 1.42; }
.news-card h3 a:hover, .list-story h3 a:hover, .popular-list a:hover { color: var(--news-red); }
.news-card p, .list-story p { color: var(--muted); font-size: .88rem; line-height: 1.65; }

.story-list { background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.list-story { display: grid; padding: 26px; gap: 22px; grid-template-columns: auto 1fr; }
.list-story + .list-story { border-top: 1px solid var(--line); }
.story-number { color: #d5d9df; font-size: 2.5rem; font-weight: 900; line-height: 1; }
.list-story h3 { margin: 5px 0 7px; font-size: 1.25rem; font-weight: 800; }
.list-story p { margin: 0; }
.popular-panel {
  padding: 30px;
  color: #fff;
  background: var(--navy);
  border-radius: 10px;
}
.popular-panel h2 { margin-bottom: 24px; }
.popular-list { margin: 0; padding-left: 28px; }
.popular-list li { padding: 14px 0 14px 10px; border-top: 1px solid rgba(255,255,255,.12); }
.popular-list li::marker { color: #ff6d76; font-size: 1.15rem; font-weight: 900; }
.popular-list a { font-size: .94rem; font-weight: 700; line-height: 1.5; }

.newsletter { padding: 60px 0; color: #fff; background: var(--news-red); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.newsletter h2 { margin: 5px 0 8px; font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 900; }
.newsletter p { margin: 0; color: rgba(255,255,255,.78); }
.newsletter-form { display: flex; width: min(100%, 470px); flex: 0 0 auto; gap: 10px; }
.newsletter-form .form-control { border: 0; }
.newsletter-form .btn { padding-inline: 24px; white-space: nowrap; }

.site-footer { padding: 64px 0 22px; color: #bbc0ca; background: #0e1015; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 2fr repeat(3, 1fr); }
.footer-brand { color: #fff; }
.footer-logo { width: 220px; height: auto; padding: 7px 10px; background: #fff; border-radius: 7px; }
.footer-grid p { max-width: 360px; margin: 22px 0 0; line-height: 1.8; }
.footer-grid h3 { margin-bottom: 18px; color: #fff; font-size: 1rem; font-weight: 800; }
.footer-grid > div > a:not(.brand) { display: block; margin: 11px 0; font-size: .88rem; }
.footer-grid > div > a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  margin-top: 54px;
  padding-top: 22px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #282b33;
  font-size: .78rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse { padding: 14px 0 18px; }
  .nav-link { padding: 11px 0; border-top: 1px solid var(--line); }
  .nav-link.active::after { display: none; }
  .menu-parent { display: grid; grid-template-columns: 1fr 42px; }
  .menu-parent > .nav-link { margin-right: 0; }
  .submenu-toggle {
    width: 42px;
    height: 100%;
    border-top: 1px solid var(--line);
  }
  .menu-dropdown .dropdown-menu {
    position: static !important;
    grid-column: 1 / -1;
    margin: 0 0 6px 14px !important;
    padding: 4px;
    border: 0;
    box-shadow: none;
    transform: none !important;
  }
  .hero-card { min-height: 460px; }
  .side-stories { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .newsletter-inner { align-items: flex-start; flex-direction: column; }
  .newsletter-form { width: 100%; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 767.98px) {
  .top-strip .text-white-50 { display: none; }
  .brand-logo { width: 150px; height: 48px; }
  .brand-mark { width: 42px; height: 42px; font-size: 1.25rem; }
  .brand-copy strong { font-size: 1.03rem; }
  .ticker-track { animation-duration: 18s; }
  .hero-section { padding-top: 18px; }
  .hero-card { min-height: 460px; }
  .hero-content p { display: none; }
  .side-stories { grid-template-columns: 1fr; }
  .side-story { min-height: 220px; }
  .content-section { padding: 50px 0; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { min-height: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 479.98px) {
  .container { --bs-gutter-x: 1.25rem; }
  .brand-logo { width: 132px; height: 44px; }
  .brand-copy small { font-size: .66rem; }
  .hero-card { min-height: 420px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(4,9,19,.95), rgba(4,9,19,.16)); }
  .hero-content { padding: 24px; }
  .hero-content h1 { font-size: 1.8rem; }
  .section-heading { align-items: center; }
  .list-story { padding: 20px; gap: 14px; }
  .story-number { font-size: 1.8rem; }
  .popular-panel { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

.page-hero {
  padding: 64px 0 54px;
  color: #fff;
  background: linear-gradient(120deg, var(--navy), #173f71);
}
.page-hero .breadcrumb { margin-bottom: 18px; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.65); }
.page-hero .breadcrumb-item.active { color: #fff; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.45); }
.page-hero h1 { max-width: 850px; margin: 0; font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; }
.page-hero p { max-width: 700px; margin: 16px 0 0; color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.8; }
.category-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
.feature-story {
  display: grid;
  margin-bottom: 36px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
  border-radius: 12px;
  grid-template-columns: 1.15fr 1fr;
}
.feature-story img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.feature-story-content { display: flex; padding: 42px; flex-direction: column; justify-content: center; }
.feature-story-content h2 { margin: 5px 0 14px; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; }
.feature-story-content p { color: rgba(255,255,255,.72); line-height: 1.8; }
.article-shell { max-width: 850px; margin: auto; }
.article-header { padding: 58px 0 32px; }
.article-header h1 { margin: 10px 0 18px; font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 900; line-height: 1.2; }
.article-lead { color: var(--muted); font-size: 1.15rem; line-height: 1.8; }
.article-image { width: 100%; max-height: 560px; object-fit: cover; border-radius: 12px; }
.article-body { padding: 36px 0 72px; }
.article-body p { margin-bottom: 22px; font-size: 1.06rem; line-height: 2; }
.article-body h2 { margin: 40px 0 16px; font-size: 1.65rem; font-weight: 900; }
.article-quote { margin: 32px 0; padding: 24px 28px; background: var(--soft); border-left: 5px solid var(--news-red); font-size: 1.2rem; font-weight: 700; line-height: 1.7; }
.info-card { height: 100%; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.info-card h2, .info-card h3 { font-weight: 900; }
.info-card p { color: var(--muted); line-height: 1.8; }
.contact-form { padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.contact-form .form-label { font-weight: 700; }
.contact-hero { position: relative; padding: 54px 0 80px; overflow: hidden; color: #fff; background: linear-gradient(120deg, #0b1425 0%, #132c50 65%, #8d1720 160%); }
.contact-hero::before { position: absolute; width: 420px; height: 420px; right: -130px; top: -190px; border: 70px solid rgba(255,255,255,.035); border-radius: 50%; content: ""; }
.contact-hero::after { position: absolute; width: 260px; height: 260px; left: 44%; bottom: -210px; background: rgba(226,29,43,.16); border-radius: 50%; filter: blur(4px); content: ""; }
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero .breadcrumb { margin-bottom: 32px; }
.contact-hero .breadcrumb-item, .contact-hero .breadcrumb-item a { color: rgba(255,255,255,.58); }
.contact-hero .breadcrumb-item.active { color: #fff; }
.contact-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }
.contact-hero-grid { display: grid; gap: 60px; align-items: end; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); }
.contact-kicker { display: inline-flex; margin-bottom: 17px; align-items: center; gap: 9px; color: #ff9fa5; font-size: .73rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.contact-kicker::before { width: 32px; height: 2px; background: var(--news-red); content: ""; }
.contact-hero h1 { max-width: 780px; margin: 0; font-size: clamp(2.35rem, 5vw, 4.45rem); font-weight: 720; line-height: 1.2; letter-spacing: -.025em; }
.contact-hero p { max-width: 690px; margin: 20px 0 0; color: rgba(255,255,255,.72); font-size: 1.02rem; line-height: 1.8; }
.contact-hero-note { padding: 25px; border: 1px solid rgba(255,255,255,.15); border-radius: 10px; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.contact-hero-note span { display: block; color: #ff9299; font-size: .66rem; font-weight: 900; letter-spacing: .18em; }
.contact-hero-note strong { display: block; margin: 10px 0 14px; font-size: 1.35rem; font-weight: 680; line-height: 1.5; }
.contact-hero-note small { color: rgba(255,255,255,.58); line-height: 1.65; }
.contact-options-section { position: relative; z-index: 2; margin-top: -35px; }
.contact-options-grid { display: grid; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 18px 48px rgba(15,23,42,.12); grid-template-columns: repeat(3, 1fr); }
.contact-option { display: flex; min-width: 0; padding: 25px 27px; align-items: center; gap: 17px; transition: background .2s ease; }
.contact-option + .contact-option { border-left: 1px solid var(--line); }
.contact-option:hover { background: #fafbfc; }
.contact-option-icon { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; color: #fff; background: var(--news-red); border-radius: 10px; }
.contact-option-icon.navy { background: var(--navy); }
.contact-option-icon.gold { background: #b36b0b; }
.contact-option-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-option > span:last-child { min-width: 0; }
.contact-option small, .contact-option strong, .contact-option em { display: block; }
.contact-option small { margin-bottom: 3px; color: #98a0ab; font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-option strong { color: var(--ink); font-size: .96rem; }
.contact-option em { margin-top: 5px; overflow: hidden; color: var(--muted); font-size: .74rem; font-style: normal; text-overflow: ellipsis; white-space: nowrap; }
.contact-main-section { padding: 72px 0; background: #f7f8fa; }
.contact-layout { display: grid; gap: 30px; align-items: start; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); }
.contact-form-card { padding: clamp(28px, 4vw, 44px); background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); }
.contact-card-heading { padding-bottom: 25px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.contact-card-heading h2 { margin: 6px 0 9px; font-size: clamp(1.65rem, 3vw, 2.3rem); font-weight: 740; }
.contact-card-heading p { margin: 0; color: var(--muted); }
.contact-form-pro label { display: block; margin-bottom: 8px; color: #363c46; font-size: .81rem; font-weight: 750; }
.contact-form-pro label span { color: var(--news-red); }
.contact-form-pro .form-control, .contact-form-pro .form-select { min-height: 51px; padding: 12px 15px; background-color: #fbfcfd; border-color: #dfe3e8; border-radius: 7px; font-size: .9rem; }
.contact-form-pro textarea.form-control { min-height: 150px; resize: vertical; }
.contact-form-pro .form-control:focus, .contact-form-pro .form-select:focus { background: #fff; border-color: var(--news-red); box-shadow: 0 0 0 4px rgba(226,29,43,.08); }
.contact-form-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.contact-form-footer p { max-width: 430px; margin: 0; color: #9299a3; font-size: .72rem; line-height: 1.6; }
.contact-submit { min-width: 160px; min-height: 48px; }
.contact-alert { margin-bottom: 25px; padding: 15px 18px; border-radius: 7px; font-size: .88rem; }
.contact-alert.success { color: #11663f; background: #eaf8f1; border: 1px solid #bce8d2; }
.contact-alert.error { color: #99232d; background: #fff0f1; border: 1px solid #f2c1c5; }
.contact-sidebar { display: grid; gap: 20px; position: sticky; top: 115px; }
.contact-newsroom-card { padding: 32px; color: #fff; background: linear-gradient(145deg, #101d35, #183f6c); border-radius: 13px; box-shadow: var(--shadow-sm); }
.contact-newsroom-card h2 { margin: 8px 0 12px; font-size: 1.65rem; font-weight: 700; line-height: 1.45; }
.contact-newsroom-card > p { color: rgba(255,255,255,.68); font-size: .87rem; line-height: 1.75; }
.contact-newsroom-card ul { margin: 25px 0; padding: 0; list-style: none; }
.contact-newsroom-card li { display: grid; padding: 12px 0; gap: 12px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.12); grid-template-columns: 31px 1fr; color: rgba(255,255,255,.83); font-size: .8rem; line-height: 1.5; }
.contact-newsroom-card li span { display: grid; width: 29px; height: 29px; place-items: center; color: #ff9299; background: rgba(255,255,255,.08); border-radius: 50%; font-size: .66rem; font-weight: 900; }
.contact-newsroom-card > a { display: inline-flex; color: #fff; font-size: .79rem; font-weight: 800; }
.contact-help-card { display: flex; padding: 23px; align-items: center; justify-content: space-between; gap: 20px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--news-red); border-radius: 9px; }
.contact-help-card.career { border-left-color: #b36b0b; }
.contact-help-card span { color: var(--news-red); font-size: .66rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contact-help-card.career span { color: #9a5a08; }
.contact-help-card h3 { margin: 5px 0 0; font-size: .98rem; font-weight: 690; line-height: 1.45; }
.contact-help-card > a { flex: 0 0 auto; color: var(--news-red); font-size: .72rem; font-weight: 800; text-align: right; }
.search-summary { margin-bottom: 28px; color: var(--muted); }
.empty-state { padding: 60px 24px; text-align: center; background: var(--soft); border-radius: 12px; }

@media (max-width: 991.98px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-story { grid-template-columns: 1fr; }
  .feature-story img { min-height: 300px; }
  .contact-hero-grid, .contact-layout { grid-template-columns: 1fr; }
  .contact-hero-note { max-width: 520px; }
  .contact-options-grid { grid-template-columns: 1fr; }
  .contact-option + .contact-option { border-top: 1px solid var(--line); border-left: 0; }
  .contact-sidebar { position: static; grid-template-columns: 1fr 1fr; }
  .contact-newsroom-card { grid-column: 1 / -1; }
}

@media (max-width: 767.98px) {
  .page-hero { padding: 46px 0 40px; }
  .category-grid { grid-template-columns: 1fr; }
  .feature-story-content { padding: 28px; }
  .contact-hero { padding: 42px 0 68px; }
  .contact-hero-grid { gap: 32px; }
  .contact-main-section { padding: 52px 0; }
  .contact-form-footer { align-items: flex-start; flex-direction: column; }
  .contact-submit { width: 100%; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .contact-newsroom-card { grid-column: auto; }
}

.home-utility { color: #475569; background: #fff; border-bottom: 1px solid var(--line); }
.home-utility-inner { display: flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 24px; }
.edition-block { display: flex; align-items: center; gap: 10px; }
.edition-icon { display: grid; width: 34px; height: 34px; place-items: center; color: var(--news-red); background: #fff0f1; border-radius: 50%; }
.edition-icon svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.edition-block div { display: flex; align-items: baseline; gap: 7px; }
.edition-block small { color: #94a3b8; font-size: .7rem; }
.edition-block strong { color: var(--ink); font-size: .82rem; }
.utility-links { display: flex; align-items: center; gap: 22px; font-size: .76rem; font-weight: 700; }
.utility-links a:hover { color: var(--news-red); }
.utility-dot { display: inline-block; width: 7px; height: 7px; margin-right: 6px; background: var(--news-red); border-radius: 50%; box-shadow: 0 0 0 4px rgba(226,29,43,.1); }
.whatsapp-link { padding: 8px 13px; color: #087a42; background: #ecf9f2; border-radius: 999px; }
.local-lead-section { padding: 30px 0 24px; background: linear-gradient(180deg, #f7f8fa 0%, #fff 100%); }
.lead-news-grid { display: grid; min-height: 540px; gap: 18px; grid-template-columns: 1.7fr 1fr; grid-template-rows: 1fr 1fr; }
.lead-news-main { position: relative; grid-row: 1 / 3; min-width: 0; overflow: hidden; color: #fff; background: #111; border-radius: 14px; box-shadow: var(--shadow-lg); }
.lead-news-main .carousel-inner, .lead-news-main .carousel-item { min-height: 540px; }
.lead-news-main .carousel-item > img { position: absolute; width: 100%; height: 100%; object-fit: cover; transition: transform 6s ease; }
.lead-news-main .carousel-item.active > img { transform: scale(1.045); }
.lead-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,10,18,.88) 0%, rgba(5,10,18,.58) 58%, rgba(5,10,18,.12) 100%), linear-gradient(0deg, rgba(5,10,18,.82), transparent 65%); }
.lead-copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: clamp(30px, 4vw, 48px) clamp(58px, 6vw, 76px) clamp(52px, 5vw, 64px); }
.lead-badges { display: flex; align-items: center; gap: 9px; }
.lead-badges .category-pill { margin-bottom: 0; }
.exclusive-badge { padding: 6px 10px 4px; color: #fff; border: 1px solid rgba(255,255,255,.45); border-radius: 3px; font-size: .63rem; font-weight: 900; letter-spacing: .12em; }
.lead-copy h1, .lead-copy h2 { display: -webkit-box; max-width: 760px; margin: 16px 0 12px; overflow: hidden; font-size: clamp(1.85rem, 3.1vw, 2.75rem); font-weight: 700; line-height: 1.3; letter-spacing: -.02em; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.lead-copy > p { display: -webkit-box; max-width: 680px; margin: 0 0 20px; overflow: hidden; color: rgba(255,255,255,.8); font-size: .9rem; line-height: 1.65; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.lead-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.read-story { padding: 10px 15px; flex: 0 0 auto; color: #fff; background: var(--news-red); border-radius: 5px; font-size: .78rem; font-weight: 800; }
.read-story:hover { color: #fff; background: var(--news-red-dark); }
.home-slider-control { z-index: 4; width: 46px; height: 46px; top: 50%; bottom: auto; margin: 0 14px; background: rgba(9,16,28,.58); border: 1px solid rgba(255,255,255,.28); border-radius: 50%; opacity: .9; transform: translateY(-50%); backdrop-filter: blur(8px); }
.home-slider-control:hover { background: var(--news-red); opacity: 1; }
.home-slider-control .carousel-control-prev-icon, .home-slider-control .carousel-control-next-icon { width: 18px; height: 18px; }
.home-slider-indicators { z-index: 5; right: auto; bottom: 22px; left: clamp(58px, 6vw, 76px); margin: 0; gap: 7px; justify-content: flex-start; }
.home-slider-indicators [data-bs-target] { width: 25px; height: 4px; margin: 0; background: rgba(255,255,255,.55); border: 0; border-radius: 99px; opacity: 1; transition: width .25s ease, background .25s ease; }
.home-slider-indicators .active { width: 48px; background: var(--news-red); }
.lead-news-side { position: relative; display: flex; padding: 30px; flex-direction: column; justify-content: space-between; overflow: hidden; color: #fff; border-radius: 14px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.lead-news-side:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(15,23,42,.18); }
.lead-news-side::after { position: absolute; right: -55px; bottom: -65px; width: 180px; height: 180px; border: 30px solid rgba(255,255,255,.06); border-radius: 50%; content: ""; }
.lead-side-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lead-side-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,12,24,.2), rgba(5,12,24,.92)); }
.side-card-top, .side-card-bottom { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.card-number { color: rgba(255,255,255,.22); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.side-card-bottom > a { display: grid; width: 36px; height: 36px; place-items: center; color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; font-size: 1.1rem; }
.lead-news-side h2 { position: relative; z-index: 1; margin: auto 0 22px; font-size: 1.48rem; font-weight: 700; line-height: 1.52; letter-spacing: -.01em; }
.lead-red { background: linear-gradient(145deg, #b20e1a, #ed3440); }
.lead-navy { background: linear-gradient(145deg, #101d35, #204f81); }
.local-tag { align-self: flex-start; padding: 5px 9px; color: #fff; background: var(--news-red); font-size: .7rem; font-weight: 800; }
.news-pulse { padding: 0 0 34px; background: #fff; }
.news-pulse-grid { display: grid; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); grid-template-columns: repeat(4, 1fr); }
.news-pulse-grid > div, .news-pulse-grid > a { display: flex; min-height: 82px; padding: 17px 22px; align-items: center; gap: 13px; }
.news-pulse-grid > * + * { border-left: 1px solid var(--line); }
.pulse-icon { display: grid; width: 39px; height: 39px; flex: 0 0 auto; place-items: center; color: #fff; border-radius: 9px; font-size: .72rem; font-weight: 900; }
.pulse-icon.red { background: var(--news-red); }
.pulse-icon.navy { background: var(--navy); }
.pulse-icon.green { background: #138a5b; }
.news-pulse-grid p { display: flex; margin: 0; flex-direction: column; }
.news-pulse-grid strong { font-size: .82rem; }
.news-pulse-grid small { margin-top: 3px; color: #94a3b8; font-size: .68rem; }
.news-pulse-grid > a { color: #fff; background: var(--navy); flex-direction: column; align-items: flex-start; justify-content: center; }
.news-pulse-grid > a span { color: #adb9ca; font-size: .7rem; }
.compact-news-section { padding: 62px 0; }
.local-section-title { display: flex; margin-bottom: 25px; align-items: end; justify-content: space-between; gap: 18px; border-bottom: 2px solid #15171c; }
.local-section-title h2 { margin: 3px 0 9px; font-size: clamp(1.65rem, 3vw, 2.25rem); font-weight: 750; letter-spacing: -.015em; }
.local-section-title h2::after { display: block; width: 52px; height: 4px; margin-top: 8px; background: var(--news-red); content: ""; }
.local-section-title > a { margin-bottom: 12px; color: var(--news-red); font-size: .83rem; font-weight: 800; }
.local-section-title.mini h2 { font-size: 1.65rem; }
.headline-grid { display: grid; gap: 20px; grid-template-columns: repeat(2, 1fr); }
.headline-card { display: grid; padding: 16px; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 6px 18px rgba(15,23,42,.035); grid-template-columns: 118px 1fr; transition: transform .2s ease, box-shadow .2s ease; }
.headline-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.headline-thumb { display: grid; min-height: 94px; place-items: center; color: #fff; border-radius: 7px; font-weight: 900; }
.thumb-crime { background: linear-gradient(145deg, #222, #c41d2b); }
.thumb-education { background: linear-gradient(145deg, #382273, #8463d3); }
.thumb-health { background: linear-gradient(145deg, #086d58, #35b18b); }
.thumb-government { background: linear-gradient(145deg, #123a70, #4388c8); }
.local-meta { color: #8a9098; font-size: .72rem; font-weight: 700; }
.headline-card h3, .regional-list h3, .small-story h3, .crime-list h3 { margin: 6px 0 0; font-size: 1rem; font-weight: 650; line-height: 1.62; }
.division-tabs { display: flex; margin: -8px 0 27px; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.division-tabs a { padding: 9px 15px; flex: 0 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 3px; font-size: .78rem; font-weight: 750; }
.division-tabs a.active, .division-tabs a:hover { color: #fff; background: var(--news-red); border-color: var(--news-red); }
.regional-layout { display: grid; gap: 30px; grid-template-columns: 1.25fr 1fr; }
.regional-feature { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); }
.regional-visual { display: flex; min-height: 280px; padding: 25px; align-items: end; color: #fff; background: linear-gradient(145deg, #0f2648, #d32732); }
.regional-visual span { font-size: 2.3rem; font-weight: 900; }
.regional-copy { padding: 25px; }
.regional-copy h3 { margin: 8px 0 12px; font-size: 1.5rem; font-weight: 700; line-height: 1.48; }
.regional-copy p { margin: 0; color: var(--muted); line-height: 1.7; }
.regional-list { background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); }
.regional-list article { display: grid; padding: 16px; gap: 16px; align-items: center; grid-template-columns: 112px 1fr; }
.regional-list article + article { border-top: 1px solid var(--line); }
.regional-thumb { display: block; width: 112px; height: 82px; overflow: hidden; background: #e5e7eb; border-radius: 8px; }
.regional-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.regional-list article:hover .regional-thumb img { transform: scale(1.05); }
.story-index { color: #d0d3d8; font-size: 1.7rem; font-weight: 900; }
.government-grid { display: grid; gap: 15px; grid-template-columns: 1.2fr 1fr; }
.government-main { display: flex; padding: 28px; grid-row: 1 / 3; flex-direction: column; justify-content: end; color: #fff; background: linear-gradient(145deg, #123c35, #1f8c74); border-radius: 7px; }
.government-main h3 { margin: 14px 0 12px; font-size: 1.55rem; font-weight: 700; }
.government-main p { color: rgba(255,255,255,.72); line-height: 1.65; }
.small-story { padding: 22px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--news-red); border-radius: 7px; box-shadow: 0 7px 18px rgba(15,23,42,.04); }
.most-read-list { margin: 0; padding: 10px 27px 10px 50px; background: var(--navy); color: #fff; border-radius: 7px; }
.most-read-list li { padding: 17px 5px; border-bottom: 1px solid rgba(255,255,255,.13); }
.most-read-list li:last-child { border: 0; }
.most-read-list li::marker { color: #ff6570; font-size: 1.25rem; font-weight: 900; }
.most-read-list a { display: grid; gap: 13px; align-items: center; grid-template-columns: 82px 1fr; font-size: .92rem; font-weight: 700; line-height: 1.5; }
.most-read-list img { width: 82px; height: 62px; object-fit: cover; border-radius: 7px; }
.menu-news-section { padding: 62px 0; }
.menu-section-grid { display: grid; gap: 28px; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); }
.menu-section-grid.single-story { grid-template-columns: minmax(0, 1fr); }
.menu-feature-story { display: grid; min-width: 0; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); grid-template-columns: minmax(250px, 1fr) minmax(280px, .9fr); }
.menu-feature-image { display: block; min-height: 330px; overflow: hidden; background: #e5e7eb; }
.menu-feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.menu-feature-story:hover .menu-feature-image img { transform: scale(1.035); }
.menu-feature-copy { display: flex; padding: 30px; flex-direction: column; justify-content: center; }
.menu-feature-copy h3 { margin: 9px 0 13px; font-size: clamp(1.3rem, 2vw, 1.8rem); font-weight: 720; line-height: 1.48; }
.menu-feature-copy p { margin: 0 0 18px; color: var(--muted); font-size: .9rem; line-height: 1.72; }
.section-read-link { align-self: flex-start; color: var(--news-red); font-size: .8rem; font-weight: 800; }
.menu-story-list { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); }
.menu-story-list article { display: grid; padding: 14px; gap: 15px; align-items: center; grid-template-columns: 112px minmax(0, 1fr); }
.menu-story-list article + article { border-top: 1px solid var(--line); }
.menu-story-thumb { display: block; width: 112px; height: 84px; overflow: hidden; background: #e5e7eb; border-radius: 8px; }
.menu-story-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.menu-story-list article:hover img { transform: scale(1.05); }
.menu-story-list h3 { display: -webkit-box; margin: 5px 0 0; overflow: hidden; font-size: .98rem; font-weight: 680; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.section-dark-news { color: #fff; background: #10141c; }
.light-title { border-color: rgba(255,255,255,.22); }
.light-title > a { color: #ff7b84; }
.dark-story-list article { display: grid; padding: 20px 0; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.13); grid-template-columns: auto 1fr; }
.dark-story-list span { color: #ff5965; font-size: 1.5rem; font-weight: 900; }
.dark-story-list h3 { margin: 0; font-size: 1.06rem; font-weight: 750; line-height: 1.55; }
.big-news-panel { display: flex; min-height: 290px; padding: 34px; flex-direction: column; justify-content: end; background: linear-gradient(145deg, #9e101b, #e33a43); border-radius: 7px; }
.big-news-panel h3 { margin: 15px 0 10px; font-size: 1.8rem; font-weight: 700; line-height: 1.48; }
.big-news-panel p { margin: 0; color: rgba(255,255,255,.75); }
.crime-grid { display: grid; gap: 28px; grid-template-columns: 1.1fr 1fr; }
.crime-feature { padding: 28px; color: #fff; background: #17191e; border-radius: 7px; }
.crime-icon { display: grid; width: 100%; min-height: 170px; margin-bottom: 20px; place-items: center; background: repeating-linear-gradient(135deg, #d51f2c 0 20px, #111 20px 40px); font-size: 2.5rem; font-weight: 900; letter-spacing: .08em; }
.crime-feature h3 { margin: 8px 0 0; font-size: 1.55rem; font-weight: 700; line-height: 1.52; }
.crime-list { border-top: 2px solid #17191e; }
.crime-list article { padding: 22px 4px; border-bottom: 1px solid var(--line); }
.three-category-grid { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); }
.category-column { min-width: 0; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); }
.column-feature { display: flex; min-height: 190px; padding: 22px; align-items: end; color: #fff; border-radius: 6px; }
.column-feature span { font-size: 1.65rem; font-weight: 900; }
.column-feature.entertainment { background: linear-gradient(145deg, #75204a, #df5288); }
.column-feature.sport { background: linear-gradient(145deg, #a65308, #e9a52d); }
.column-feature.international { background: linear-gradient(145deg, #15335f, #3882c3); }
.category-column > h3 { margin: 16px 0; font-size: 1.18rem; font-weight: 700; line-height: 1.58; }
.category-column ul { margin: 0; padding-left: 20px; }
.category-column li { padding: 8px 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }

@media (max-width: 991.98px) {
  .lead-news-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px auto; }
  .lead-news-main { grid-column: 1 / 3; grid-row: auto; }
  .lead-news-main .carousel-inner, .lead-news-main .carousel-item { min-height: 430px; }
  .regional-layout, .crime-grid { grid-template-columns: 1fr; }
  .three-category-grid { grid-template-columns: 1fr 1fr; }
  .news-pulse-grid { grid-template-columns: 1fr 1fr; }
  .news-pulse-grid > *:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .news-pulse-grid > *:nth-child(4) { border-top: 1px solid var(--line); }
  .menu-section-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  .home-utility-inner { min-height: 48px; }
  .utility-links a:not(:first-child) { display: none; }
  .edition-block div { display: block; line-height: 1.15; }
  .edition-block small { display: block; }
  .lead-news-grid { display: block; min-height: 0; }
  .lead-news-main { min-height: 420px; margin-bottom: 14px; }
  .lead-news-main .carousel-inner, .lead-news-main .carousel-item { min-height: 420px; }
  .lead-news-side { min-height: 210px; margin-bottom: 14px; }
  .lead-copy { padding: 28px 24px 54px; }
  .headline-grid, .government-grid, .three-category-grid { grid-template-columns: 1fr; }
  .government-main { min-height: 310px; grid-row: auto; }
  .headline-card { grid-template-columns: 96px 1fr; }
  .local-section-title { align-items: center; }
  .lead-actions { align-items: flex-start; flex-direction: column; }
  .lead-copy > p { display: none; }
  .lead-copy h1, .lead-copy h2 { max-width: calc(100% - 20px); font-size: clamp(1.55rem, 6vw, 2.15rem); line-height: 1.34; -webkit-line-clamp: 4; }
  .home-slider-control { width: 38px; height: 38px; margin: 0 8px; }
  .home-slider-indicators { bottom: 19px; left: 24px; }
  .lead-actions .news-meta { display: none; }
  .menu-news-section { padding: 50px 0; }
  .menu-feature-story { grid-template-columns: 1fr; }
  .menu-feature-image { min-height: 260px; }
  .menu-feature-copy { padding: 24px; }
}

@media (max-width: 479.98px) {
  .lead-news-main { min-height: 390px; }
  .lead-news-main .carousel-inner, .lead-news-main .carousel-item { min-height: 390px; }
  .lead-copy h1, .lead-copy h2 { font-size: 1.55rem; -webkit-line-clamp: 4; }
  .home-slider-control { top: 38%; width: 34px; height: 34px; }
  .headline-card { grid-template-columns: 1fr; }
  .regional-list article { grid-template-columns: 92px 1fr; }
  .regional-thumb { width: 92px; height: 72px; }
  .most-read-list { padding-left: 42px; }
  .most-read-list a { grid-template-columns: 72px 1fr; }
  .most-read-list img { width: 72px; height: 56px; }
  .menu-feature-image { min-height: 220px; }
  .menu-story-list article { grid-template-columns: 92px minmax(0, 1fr); }
  .menu-story-thumb { width: 92px; height: 72px; }
  .headline-thumb { min-height: 120px; }
  .news-pulse-grid { grid-template-columns: 1fr; }
  .news-pulse-grid > * + * { border-top: 1px solid var(--line); border-left: 0; }
  .news-pulse-grid > div:nth-child(3) { display: none; }
}

/* Homepage editorial refresh */
body[data-page="home"] { background: #f7f8fa; }
body[data-page="home"] .home-utility { position: relative; z-index: 3; }
body[data-page="home"] .local-lead-section { padding: 24px 0 22px; background: radial-gradient(circle at 78% 12%, rgba(226,29,43,.07), transparent 27%), linear-gradient(180deg, #f4f6f9 0%, #fff 88%); }
body[data-page="home"] .lead-news-grid { min-height: 500px; gap: 14px; grid-template-columns: minmax(0, 1.72fr) minmax(310px, .88fr); }
body[data-page="home"] .lead-news-main,
body[data-page="home"] .lead-news-side { border-radius: 18px; box-shadow: 0 18px 50px rgba(15,23,42,.13); }
body[data-page="home"] .lead-news-main .carousel-inner,
body[data-page="home"] .lead-news-main .carousel-item { min-height: 500px; }
body[data-page="home"] .lead-copy { padding: 36px 58px 54px; }
body[data-page="home"] .lead-copy h1,
body[data-page="home"] .lead-copy h2 { max-width: 680px; font-size: clamp(2rem, 3.15vw, 2.85rem); line-height: 1.25; }
body[data-page="home"] .lead-news-side { padding: 24px; }
body[data-page="home"] .lead-news-side h2 { margin-bottom: 15px; font-size: 1.25rem; line-height: 1.45; }
body[data-page="home"] .card-number { font-size: 1.65rem; }
body[data-page="home"] .news-pulse { position: relative; z-index: 2; padding: 0 0 52px; background: #fff; }
body[data-page="home"] .home-metrics { margin-top: 0; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 14px 36px rgba(15,23,42,.08); }
body[data-page="home"] .home-metrics > div,
body[data-page="home"] .home-metrics > a { min-height: 76px; }
body[data-page="home"] .home-latest-section { padding: 54px 0 70px; background: #fff; }
body[data-page="home"] .local-section-title { margin-bottom: 30px; border-bottom-color: #dfe3e8; }
body[data-page="home"] .local-section-title h2 { font-weight: 820; }
body[data-page="home"] .home-latest-grid { gap: 22px; }
body[data-page="home"] .home-latest-grid .news-card { position: relative; border: 0; border-radius: 14px; box-shadow: 0 9px 28px rgba(15,23,42,.08); }
body[data-page="home"] .home-latest-grid .card-visual { height: 205px; padding: 0; }
body[data-page="home"] .home-latest-grid .card-visual img { transition: transform .35s ease; }
body[data-page="home"] .home-latest-grid .news-card:hover .card-visual img { transform: scale(1.04); }
body[data-page="home"] .home-latest-grid .card-body { padding: 20px 22px 23px; }
body[data-page="home"] .home-latest-grid .news-card h3 { display: -webkit-box; min-height: 3.25em; overflow: hidden; font-size: 1.08rem; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
body[data-page="home"] .home-latest-grid .news-card p { display: -webkit-box; margin-bottom: 0; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
body[data-page="home"] .story-rank { position: absolute; z-index: 2; right: 14px; bottom: 12px; display: grid; width: 42px; height: 42px; place-items: center; color: #fff; background: rgba(9,18,34,.84); border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: .72rem; font-weight: 900; backdrop-filter: blur(7px); }
body[data-page="home"] .home-insight-section { padding: 72px 0; background: linear-gradient(135deg, #f2f4f7 0%, #fafafa 100%); }
body[data-page="home"] .home-insight-grid { display: grid; gap: 24px; grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); }
body[data-page="home"] .home-insight-grid > div,
body[data-page="home"] .home-popular-column { min-width: 0; }
body[data-page="home"] .home-insight-grid > .col-lg-7 { width: 100%; }
body[data-page="home"] .regional-list { overflow: hidden; border: 0; border-radius: 14px; box-shadow: 0 12px 35px rgba(15,23,42,.08); }
body[data-page="home"] .regional-list article { padding: 15px 18px; gap: 15px; grid-template-columns: 34px 118px minmax(0, 1fr); }
body[data-page="home"] .regional-rank { color: #c9ced6; font-size: 1.1rem; font-weight: 900; }
body[data-page="home"] .regional-thumb { width: 118px; height: 80px; }
body[data-page="home"] .regional-list h3 { display: -webkit-box; margin-top: 5px; overflow: hidden; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
body[data-page="home"] .home-popular-column { padding: 0; }
body[data-page="home"] .most-read-list { padding: 8px 22px 8px 48px; overflow: hidden; background: linear-gradient(155deg, #0d1a30 0%, #152f52 100%); border-radius: 14px; box-shadow: 0 18px 45px rgba(13,26,48,.22); }
body[data-page="home"] .most-read-list li { padding: 15px 3px; }
body[data-page="home"] .most-read-list a { grid-template-columns: 78px minmax(0, 1fr); }
body[data-page="home"] .most-read-list a > span { display: flex; min-width: 0; flex-direction: column; gap: 6px; }
body[data-page="home"] .most-read-list a strong { display: -webkit-box; overflow: hidden; font-size: .88rem; font-weight: 720; line-height: 1.5; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
body[data-page="home"] .most-read-list a small { color: #9fb0c7; font-size: .66rem; font-weight: 700; }
body[data-page="home"] .menu-news-section { background: #fff; }
body[data-page="home"] .menu-news-section.section-muted { background: #f5f6f8; }

@media (max-width: 991.98px) {
  body[data-page="home"] .lead-news-grid { min-height: 0; grid-template-columns: 1fr 1fr; grid-template-rows: 420px 240px; }
  body[data-page="home"] .lead-news-main { grid-column: 1 / 3; }
  body[data-page="home"] .lead-news-main .carousel-inner,
  body[data-page="home"] .lead-news-main .carousel-item { min-height: 420px; }
  body[data-page="home"] .home-insight-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767.98px) {
  body[data-page="home"] .local-lead-section { padding-top: 18px; }
  body[data-page="home"] .lead-news-grid { display: block; }
  body[data-page="home"] .lead-news-main { min-height: 365px; margin-bottom: 12px; border-radius: 15px; }
  body[data-page="home"] .lead-news-main .carousel-inner,
  body[data-page="home"] .lead-news-main .carousel-item { min-height: 365px; }
  body[data-page="home"] .lead-copy { padding: 24px 24px 47px; }
  body[data-page="home"] .lead-copy h1,
  body[data-page="home"] .lead-copy h2 { margin: 12px 0 15px; font-size: 1.5rem; line-height: 1.35; -webkit-line-clamp: 3; }
  body[data-page="home"] .read-story { padding: 9px 13px; }
  body[data-page="home"] .lead-news-side { min-height: 180px; padding: 20px; border-radius: 15px; }
  body[data-page="home"] .lead-news-side h2 { margin: 42px 0 8px; font-size: 1.12rem; line-height: 1.45; }
  body[data-page="home"] .side-card-bottom { display: none; }
  body[data-page="home"] .home-metrics { margin-top: 0; border-radius: 14px; grid-template-columns: 1fr 1fr; }
  body[data-page="home"] .home-metrics > div,
  body[data-page="home"] .home-metrics > a { min-height: 68px; padding: 13px 15px; }
  body[data-page="home"] .home-metrics > a { grid-column: 1 / -1; }
  body[data-page="home"] .home-latest-section,
  body[data-page="home"] .home-insight-section { padding: 48px 0; }
  body[data-page="home"] .home-latest-grid { grid-template-columns: 1fr; gap: 16px; }
  body[data-page="home"] .home-latest-grid .news-card { display: grid; grid-template-columns: 124px minmax(0, 1fr); }
  body[data-page="home"] .home-latest-grid .card-visual { height: 100%; min-height: 150px; }
  body[data-page="home"] .home-latest-grid .card-body { padding: 16px; }
  body[data-page="home"] .home-latest-grid .news-card h3 { min-height: 0; margin-bottom: 0; font-size: .98rem; }
  body[data-page="home"] .home-latest-grid .news-card p { display: none; }
  body[data-page="home"] .story-rank { right: 8px; bottom: 8px; width: 32px; height: 32px; }
  body[data-page="home"] .regional-list article { grid-template-columns: 28px 88px minmax(0, 1fr); padding: 13px; gap: 11px; }
  body[data-page="home"] .regional-thumb { width: 88px; height: 68px; }
  body[data-page="home"] .regional-list h3 { font-size: .9rem; }
}

@media (max-width: 479.98px) {
  body[data-page="home"] .home-utility-inner { gap: 8px; }
  body[data-page="home"] .utility-links { gap: 8px; }
  body[data-page="home"] .lead-news-main { min-height: 345px; }
  body[data-page="home"] .lead-news-main .carousel-inner,
  body[data-page="home"] .lead-news-main .carousel-item { min-height: 345px; }
  body[data-page="home"] .home-slider-control { top: 42%; }
  body[data-page="home"] .home-latest-grid .news-card { grid-template-columns: 112px minmax(0, 1fr); }
  body[data-page="home"] .home-latest-grid .card-visual { min-height: 138px; }
  body[data-page="home"] .card-category { font-size: .62rem; letter-spacing: .04em; }
  body[data-page="home"] .regional-rank { display: none; }
  body[data-page="home"] .regional-list article { grid-template-columns: 86px minmax(0, 1fr); }
  body[data-page="home"] .regional-thumb { width: 86px; height: 66px; }
}

.reading-progress { position: fixed; top: 0; left: 0; z-index: 1200; width: 0; height: 3px; background: var(--news-red); box-shadow: 0 1px 7px rgba(226,29,43,.45); }
.article-page { background: #fff; }
.article-wide { max-width: 1160px; }
.article-pro-header { padding: 0 0 30px; background: transparent; }
.article-breadcrumb { margin-bottom: 28px; font-size: .78rem; }
.article-breadcrumb a { color: var(--muted); }
.article-category-row { display: flex; align-items: center; gap: 14px; }
.article-category { padding: 6px 11px 4px; color: #fff; background: var(--news-red); border-radius: 3px; font-size: .69rem; font-weight: 800; }
.article-status { color: #78818d; font-size: .72rem; font-weight: 700; }
.article-status i { display: inline-block; width: 6px; height: 6px; margin-right: 5px; background: #21a268; border-radius: 50%; }
.article-pro-header h1 { max-width: 100%; margin: 16px 0 14px; font-size: clamp(2.15rem, 4.2vw, 3.8rem); font-weight: 700; line-height: 1.2; letter-spacing: -.03em; }
.article-pro-header .article-lead { max-width: 880px; margin: 0 0 25px; color: #5c6673; font-size: 1.14rem; line-height: 1.75; }
.article-byline { display: flex; align-items: center; gap: 12px; }
.author-avatar { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; color: #fff; background: var(--news-red); border-radius: 50%; font-weight: 800; }
.article-byline > div:nth-child(2) { display: flex; flex-direction: column; }
.article-byline strong { font-size: .82rem; }
.article-byline span { margin-top: 2px; color: #8a929e; font-size: .7rem; }
.article-stats { display: flex !important; margin-left: auto; flex-direction: row !important; gap: 18px; }
.article-cover { position: relative; margin: 0 0 30px; overflow: hidden; background: #111; border-radius: 14px; box-shadow: var(--shadow-lg); }
.article-cover img { width: 100%; max-height: 620px; object-fit: cover; }
.article-cover figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 25px 25px 13px; color: rgba(255,255,255,.7); background: linear-gradient(transparent, rgba(0,0,0,.75)); font-size: .7rem; }
.article-layout {
  display: grid;
  max-width: 1240px;
  padding-top: 48px;
  padding-bottom: 80px;
  gap: 30px;
  grid-template-columns: minmax(0, 9fr) minmax(260px, 3fr);
  align-items: start;
}
.article-column-9 { grid-column: 1; }
.article-column-3 { grid-column: 2; }
.article-main { min-width: 0; }
.article-toolbar { display: flex; margin-bottom: 30px; padding: 13px 16px; align-items: center; justify-content: space-between; gap: 16px; background: #f7f8fa; border: 1px solid var(--line); border-radius: 9px; }
.share-inline { display: flex; align-items: center; gap: 7px; }
.share-inline strong { margin-right: 5px; font-size: .75rem; }
.share-action { display: inline-flex; min-height: 35px; padding: 7px 10px; align-items: center; gap: 6px; color: #52606d; background: #fff; border: 1px solid var(--line); border-radius: 6px; font-size: .66rem; font-weight: 700; transition: .2s ease; }
.share-action svg { width: 15px; height: 15px; flex: 0 0 auto; fill: currentColor; stroke: currentColor; stroke-width: 1.8; }
.share-action.facebook { color: #1877f2; }
.share-action.twitter { color: #111; }
.share-action.twitter svg { fill: none; }
.share-action.whatsapp { color: #128c4b; }
.share-action.whatsapp svg { fill: none; }
.share-action.instagram { color: #c13584; }
.share-action.instagram svg { fill: none; }
.share-action.copy svg { fill: none; }
.share-action:hover { color: #fff; transform: translateY(-1px); }
.share-action.facebook:hover { background: #1877f2; border-color: #1877f2; }
.share-action.twitter:hover { background: #111; border-color: #111; }
.share-action.whatsapp:hover { background: #128c4b; border-color: #128c4b; }
.share-action.instagram:hover { background: linear-gradient(135deg, #feda75, #d62976 48%, #4f5bd5); border-color: transparent; }
.share-action.copy:hover { background: #59636f; border-color: #59636f; }
.like-button { display: flex; padding: 8px 11px; align-items: center; gap: 6px; color: #555f6c; background: #fff; border: 1px solid var(--line); border-radius: 6px; font-size: .7rem; font-weight: 700; }
.like-button strong { padding-left: 6px; border-left: 1px solid var(--line); }
.like-heart { color: var(--news-red); font-size: 1.1rem; line-height: 1; }
.like-button.liked { color: var(--news-red); background: #fff4f5; border-color: #f4b2b7; }
.article-content { color: #262b32; }
.article-content p { margin: 0 0 24px; font-size: 1.08rem; line-height: 2.05; }
.article-content h2 { margin: 43px 0 16px; font-size: 1.7rem; font-weight: 700; line-height: 1.42; }
.article-dropcap::first-letter { float: left; margin: 11px 10px 0 0; color: var(--news-red); font-size: 4.4rem; font-weight: 800; line-height: .7; }
.article-highlight { position: relative; margin: 34px 0; padding: 30px 30px 28px 35px; background: #111827; border-radius: 9px; color: #fff; }
.article-highlight::before { position: absolute; top: 0; bottom: 0; left: 0; width: 5px; background: var(--news-red); border-radius: 9px 0 0 9px; content: ""; }
.article-highlight span { color: #ff8e96; font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.article-highlight p { margin: 8px 0 0; color: #fff; font-size: 1.3rem; font-weight: 600; line-height: 1.7; }
.article-facts { margin: 35px 0; padding: 27px 30px; background: #f7f8fa; border: 1px solid var(--line); border-radius: 9px; }
.article-facts h3 { margin-bottom: 17px; font-size: 1.15rem; font-weight: 750; }
.article-facts ul { margin: 0; padding: 0; list-style: none; }
.article-facts li { position: relative; padding: 10px 0 10px 25px; color: #59636f; border-top: 1px solid var(--line); font-size: .88rem; line-height: 1.6; }
.article-facts li::before { position: absolute; top: 16px; left: 2px; width: 8px; height: 8px; background: var(--news-red); border-radius: 50%; content: ""; }
.article-inline-image { margin: 36px 0; overflow: hidden; background: #f3f4f6; border-radius: 11px; box-shadow: var(--shadow-sm); }
.article-inline-image img { width: 100%; max-height: 460px; object-fit: cover; }
.article-inline-image figcaption { padding: 11px 15px; color: #7c8490; font-size: .7rem; line-height: 1.5; }
.article-inline-image.compact-image img { max-height: 340px; }
.article-tags { display: flex; margin-top: 35px; align-items: center; flex-wrap: wrap; gap: 8px; }
.article-tags span { margin-right: 4px; color: #7a838f; font-size: .75rem; font-weight: 700; }
.article-tags a { padding: 7px 11px; color: #58616d; background: #f3f4f6; border-radius: 999px; font-size: .7rem; font-weight: 650; }
.reaction-box { display: flex; margin: 38px 0; padding: 28px; align-items: center; justify-content: space-between; gap: 25px; background: linear-gradient(120deg, #fff5f6, #fff); border: 1px solid #f7d9dc; border-radius: 12px; }
.reaction-box h2 { margin: 3px 0; font-size: 1.4rem; font-weight: 700; }
.reaction-box p { margin: 0; color: #7c8590; font-size: .78rem; }
.reaction-like { display: grid; min-width: 135px; padding: 13px; place-items: center; color: var(--news-red); background: #fff; border: 1px solid #f2b9be; border-radius: 9px; }
.reaction-like > span { font-size: 1.65rem; line-height: 1; }
.reaction-like strong { font-size: 1.1rem; }
.reaction-like small { color: #7b838e; font-size: .62rem; }
.reaction-like.liked { color: #fff; background: var(--news-red); }
.reaction-like.liked small { color: rgba(255,255,255,.75); }
.article-navigation { display: grid; margin: 38px 0; gap: 14px; grid-template-columns: 1fr 1fr; }
.article-navigation a { display: flex; min-height: 110px; padding: 20px; flex-direction: column; justify-content: center; background: #fff; border: 1px solid var(--line); border-radius: 9px; transition: .2s ease; }
.article-navigation a:last-child { text-align: right; }
.article-navigation a:hover { border-color: #efabb0; box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.article-navigation small { margin-bottom: 7px; color: var(--news-red); font-size: .67rem; font-weight: 750; }
.article-navigation strong { font-size: .88rem; line-height: 1.55; }
.author-box { display: flex; padding: 27px; align-items: center; gap: 20px; color: #fff; background: var(--navy); border-radius: 10px; }
.author-avatar.large { width: 68px; height: 68px; color: var(--news-red); background: #fff; font-size: 1.35rem; }
.author-box h2 { margin: 3px 0 5px; font-size: 1.25rem; font-weight: 700; }
.author-box p { margin: 0; color: rgba(255,255,255,.65); font-size: .8rem; line-height: 1.7; }
.comments-section { margin-top: 54px; }
.comments-heading { display: flex; padding-bottom: 14px; align-items: end; justify-content: space-between; border-bottom: 2px solid var(--ink); }
.comments-heading h2 { margin: 3px 0 0; font-size: 1.7rem; font-weight: 700; }
.comments-heading h2 small { display: inline-grid; width: 27px; height: 27px; margin-left: 5px; place-items: center; color: #fff; background: var(--news-red); border-radius: 50%; font-size: .7rem; vertical-align: middle; }
.comments-heading > a { color: var(--news-red); font-size: .72rem; font-weight: 750; }
.comment-item { display: grid; padding: 25px 0; gap: 15px; border-bottom: 1px solid var(--line); grid-template-columns: auto 1fr; }
.comment-avatar { display: grid; width: 42px; height: 42px; place-items: center; color: var(--news-red); background: #fff0f1; border-radius: 50%; font-weight: 800; }
.comment-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.comment-head strong { font-size: .82rem; }
.comment-head span { color: #9aa1aa; font-size: .66rem; }
.comment-item p { margin: 8px 0; color: #626b76; font-size: .83rem; line-height: 1.7; }
.comment-item button { padding: 0; color: var(--news-red); background: none; border: 0; font-size: .68rem; font-weight: 700; }
.new-comment { animation: comment-in .35s ease; }
@keyframes comment-in { from { opacity: 0; transform: translateY(12px); } }
.comment-form { margin-top: 30px; padding: 27px; background: #f7f8fa; border: 1px solid var(--line); border-radius: 10px; }
.comment-form h3 { margin-bottom: 20px; font-size: 1.25rem; font-weight: 700; }
.comment-form label { margin-bottom: 7px; font-size: .72rem; font-weight: 700; }
.article-sidebar { position: sticky; top: 115px; display: grid; gap: 20px; }
.sidebar-card { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: 0 9px 28px rgba(15,23,42,.055); }
.sidebar-title { display: flex; margin-bottom: 15px; align-items: center; gap: 9px; }
.sidebar-title span { padding: 4px 7px 3px; color: #fff; background: var(--news-red); border-radius: 3px; font-size: .6rem; font-weight: 800; }
.sidebar-title h2 { margin: 0; font-size: 1.1rem; font-weight: 750; }
.sidebar-live-list a { display: grid; padding: 15px 0; gap: 9px 11px; border-top: 1px solid var(--line); grid-template-columns: auto 58px 1fr; align-items: center; }
.sidebar-live-list time { color: var(--news-red); font-size: .65rem; font-weight: 800; }
.sidebar-live-list strong { font-size: .78rem; line-height: 1.55; }
.sidebar-story-thumb { display: block; width: 58px; height: 48px; border-radius: 5px; }
.thumb-parliament { background: linear-gradient(145deg, #162c4d, #5d8bb7); }
.thumb-policy { background: linear-gradient(145deg, #503076, #9a73c1); }
.thumb-jobs { background: linear-gradient(145deg, #92500f, #e5a03f); }
.sidebar-ranking { margin: 0; padding-left: 31px; }
.sidebar-ranking li { padding: 13px 0 13px 7px; border-top: 1px solid var(--line); }
.sidebar-ranking li::marker { color: #d1d5db; font-size: 1.25rem; font-weight: 900; }
.sidebar-ranking a { display: flex; flex-direction: column; font-size: .78rem; font-weight: 650; line-height: 1.55; }
.sidebar-ranking small { margin-top: 4px; color: #9aa1aa; font-size: .61rem; font-weight: 500; }
.sidebar-newsletter { color: #fff; background: linear-gradient(145deg, #b70e1b, #e62d39); border: 0; }
.sidebar-newsletter h2 { margin: 6px 0 8px; font-size: 1.35rem; font-weight: 700; }
.sidebar-newsletter p { color: rgba(255,255,255,.7); font-size: .75rem; line-height: 1.6; }
.sidebar-newsletter .form-control { min-height: 44px; border: 0; }
.sidebar-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.sidebar-tags a { padding: 7px 10px; color: #5e6671; background: #f3f4f6; border-radius: 999px; font-size: .67rem; font-weight: 650; }
.related-section { padding: 65px 0 80px; background: var(--soft); }
.related-post-grid { display: grid; gap: 22px; grid-template-columns: repeat(4, 1fr); }
.related-post-grid article { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-sm); transition: .2s ease; }
.related-post-grid article:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.related-visual { display: flex; height: 155px; padding: 17px; align-items: end; color: #fff; }
.related-visual span { font-size: 1.25rem; font-weight: 750; }
.visual-government { background: linear-gradient(145deg, #18355d, #3779b4); }
.visual-education { background: linear-gradient(145deg, #3c226d, #8a5cca); }
.visual-care { background: linear-gradient(145deg, #075e4d, #27a180); }
.visual-jobs { background: linear-gradient(145deg, #8d3a08, #de8b23); }
.related-copy { padding: 18px; }
.related-copy h3 { margin: 7px 0 0; font-size: .94rem; font-weight: 650; line-height: 1.55; }

@media (max-width: 1199.98px) {
  .article-layout { grid-template-columns: minmax(0, 9fr) minmax(250px, 3fr); gap: 24px; }
}

@media (max-width: 991.98px) {
  .article-layout { grid-template-columns: minmax(0, 9fr) minmax(235px, 3fr); gap: 20px; }
  .article-sidebar { top: 105px; }
  .sidebar-live-list a { grid-template-columns: auto 1fr; }
  .sidebar-story-thumb { display: none; }
  .related-post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
  .article-pro-header { padding: 0 0 26px; }
  .article-pro-header h1 { font-size: 2.25rem; line-height: 1.26; }
  .article-stats { display: none !important; }
  .article-cover { border-radius: 0; margin-inline: calc(var(--bs-gutter-x) * -.5); }
  .article-layout { display: block; padding-top: 28px; padding-bottom: 55px; }
  .article-toolbar { align-items: flex-start; flex-direction: column; }
  .share-inline { width: 100%; flex-wrap: wrap; }
  .like-button { width: 100%; justify-content: center; }
  .article-content p { font-size: 1rem; line-height: 1.95; }
  .reaction-box { align-items: flex-start; flex-direction: column; }
  .reaction-like { width: 100%; }
  .article-sidebar { position: static; display: grid; margin-top: 45px; grid-template-columns: 1fr; }
  .sidebar-live-list a { grid-template-columns: auto 58px 1fr; }
  .sidebar-story-thumb { display: block; }
  .article-navigation { grid-template-columns: 1fr; }
  .article-navigation a:last-child { text-align: left; }
  .related-post-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 479.98px) {
  .article-pro-header h1 { font-size: 1.95rem; }
  .article-byline { align-items: flex-start; }
  .article-cover figcaption { position: static; padding: 9px 12px; color: #7f8791; background: #f4f5f6; }
  .share-inline strong { width: 100%; }
  .share-action span { display: none; }
  .share-action { width: 42px; height: 38px; padding: 0; justify-content: center; }
  .share-action svg { width: 17px; height: 17px; }
  .article-highlight, .article-facts, .comment-form { padding: 23px; }
  .article-highlight p { font-size: 1.12rem; }
  .author-box { align-items: flex-start; }
  .author-avatar.large { width: 52px; height: 52px; }
  .related-post-grid { grid-template-columns: 1fr; }
}
