*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font-head: 'Montserrat', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;

  --text: #222;
  --text-muted: #666;
  --primary-100: #a8c9b5;
  --primary-500: #1E4D35;
  --primary-700: #163828;
  --primary-800: #0F2920;
  --accent-400: #C08A20;
  --accent-500: #163828;
  --white: #fff;
  --gray-300: #ddd;
  --gray-600: #666;
  --border: #ddd;
  --background: #f7f7f7;
  --surface-100: #f0f5f2;
  --box-shadow-sm: 0 1px 3px 0 rgba(34, 40, 42, 0.1);
  --box-shadow-md: 0 4px 20px 0 rgba(33, 37, 41, 0.05);
  --box-shadow-lg: 0 4px 20px 0 rgba(33, 37, 41, 0.15);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── LOGO ─── */
.logo {
  max-width: 120px;
}

.logo a {
  display: flex;
}

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--primary-500);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .wrapper {
  display: flex;
  align-items: center;
}
.top-bar a {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.top-bar a:hover { color: #fff; }

/* ─── MIDDLE HEADER ─── */
.middle-header {
  background: var(--primary-500);
  padding: 16px 0;
  position: relative;
}
.middle-header .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.social-nav {
  display: flex;
  gap: 15px;
  align-items: center;
}
.social-nav a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  transition: color .18s;
}
.social-nav a:hover { color: #fff; }
.social-nav svg { width: 17px; height: 17px; fill: currentColor; }

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-placeholder {
  width: 200px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
}
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-ring {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.logo-ring::before {
  content: '';
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  position: absolute;
}
.logo-ring::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.55);
  position: absolute;
}
.logo-text-block { text-align: left; }
.logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  display: block;
}
.logo-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.01em;
  display: block;
  margin-top: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-actions a {
  font-family: var(--font-head);
  font-size: 14px;
  color: #fff;
}
.header-actions .donate-link {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.header-actions .sign-in {
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0.88;
  font-size: 14px;
}
.header-actions .sign-in:hover { opacity: 1; }
.header-actions svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.search-btn { opacity: 0.88; }
.search-btn:hover { opacity: 1; }
.search-btn svg { width: 18px; height: 18px; }

/* ─── BOTTOM NAV ─── */
.bottom-nav {
  background: var(--primary-500);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.bottom-nav .wrapper {
  display: flex;
  justify-content: center;
}
.bottom-nav a {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  padding: 13px 15px;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.bottom-nav a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.caret { font-size: 8px; opacity: 0.6; }
.nav-toggle { display: none; }

/* ─── MAIN ─── */
main { padding: 28px 0 0; }

/* ─── SECTION LABEL ─── */
.section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 11px;
  height: 11px;
  background: var(--primary-500);
  flex-shrink: 0;
  display: block;
}
.section-label h2 {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  line-height: 1;
}

/* ─── FEATURED STORY SECTION ─── */
.featured-section { margin-bottom: 36px; }

.featured-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.featured-left {
  border-right: 1px solid var(--border);
  padding-right: 32px;
}

/* Big featured overlay card */
.featured-card {
  position: relative;
  width: 100%;
  aspect-ratio: 2.8 / 1;
  min-height: 220px;
  overflow: hidden;
  margin-bottom: 0;
  display: block;
  cursor: pointer;
}
.featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.60) 50%, rgba(0,0,0,0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px 18px;
}
.cat-badge {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.featured-card h3,
.featured-card span.card-h3 {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 38px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 9px;
  display: block;
}
.featured-excerpt {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
  margin-bottom: 10px;
}
.keep-reading {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline-block;
}
.keep-reading:hover { color: #fff; }
.photo-credit {
  position: absolute;
  bottom: 7px;
  right: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* Article list items */
.article-list {
  border-top: 1px solid var(--border);
  margin-top: 1px;
}
.article-list-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.article-list-item:hover .art-title { color: #B8900A; text-decoration: none; }
.article-list-item .thumb {
  width: 110px;
  height: 73px;
  overflow: hidden;
  flex-shrink: 0;
}
.article-list-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.art-title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 5px;
}
.art-dek {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}
/* no-thumb variant */
.article-list-item.no-thumb {
  grid-template-columns: 1fr;
}

/* Right sidebar */
.featured-sidebar { }
.sidebar-big-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 9px;
  display: block;
}
.sidebar-big-title:hover { color: #B8900A; text-decoration: none; }
.sidebar-keep-reading {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  display: block;
  margin-bottom: 20px;
}
.sidebar-keep-reading:hover { color: #444; }
.sidebar-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 0;
}
.sidebar-list { list-style: none; padding-left: 0; }
.sidebar-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-list li a {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
  display: block;
}
.sidebar-list li a:hover { color: #B8900A; text-decoration: none; }

/* ─── DIVIDER ─── */
.hr-section {
  border: none;
  margin: 30px 0;
  display: flex;
  justify-content: center;
}
.hr-section::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary-500);
}

/* ─── ARTICLE PROMO BANNERS ─── */
.promo-banner {
  margin-bottom: 36px;
  overflow: hidden;
}
.promo-banner-inner {
  width: 100%;
}
.promo-banner-card {
  display: block;
  text-decoration: none;
  background-color: var(--primary-500);
}
.promo-banner-content {
  display: flex; align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: 28px 24px;
  gap: 40px;
}
.promo-banner-text {
  flex: 1;
  display: block;
}
.promo-banner-cat {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7); margin-bottom: 8px; display: block;
}
.promo-banner-title {
  font-family: var(--font-head); font-size: 24px; font-weight: 400;
  color: #fff; line-height: 1.2; display: block;
}
.promo-banner-excerpt {
  font-family: var(--font-body); font-style: italic; font-size: 14px;
  color: rgba(255,255,255,0.82); line-height: 1.5; margin-top: 8px; display: block;
}
.promo-banner-link {
  flex-shrink: 0;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; border: 1px solid rgba(255,255,255,0.6);
  padding: 10px 22px; white-space: nowrap; text-decoration: none;
  transition: background .18s;
}
.promo-banner-link:hover { background: rgba(255,255,255,0.15); }

.support-banner {
  margin: 36px 0;
  overflow: hidden;
}
.support-banner-inner {
  width: 100%;
}
.support-banner-card {
  display: block;
  text-decoration: none;
  background-color: #0F2920;
}
.support-banner-content {
  display: flex; align-items: center;
  max-width: 1200px; margin: 0 auto;
  padding: 28px 24px;
  gap: 40px;
}
.support-banner-text {
  flex: 1;
  display: block;
}
.support-banner-cat {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6); margin-bottom: 8px; display: block;
}
.support-banner-title {
  font-family: var(--font-head); font-size: 24px; font-weight: 400;
  color: #fff; line-height: 1.2; display: block;
}
.support-banner-excerpt {
  font-family: var(--font-body); font-style: italic; font-size: 14px;
  color: rgba(255,255,255,0.82); line-height: 1.5; margin-top: 8px; display: block;
}
.support-banner-link {
  flex-shrink: 0;
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; border: 1px solid rgba(255,255,255,0.6);
  padding: 10px 22px; white-space: nowrap; text-decoration: none;
  transition: background .18s;
}
.support-banner-link:hover { background: rgba(255,255,255,0.15); }

/* ─── THREE-COLUMN SECTIONS ─── */
.three-col-section { margin-bottom: 36px; }
.three-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.topic-col {
  padding: 0 22px;
  border-right: 1px solid var(--border);
}
.topic-col:first-child { padding-left: 0; }
.topic-col:last-child { padding-right: 0; border-right: none; }

/* Mini featured card */
.mini-card {
  position: relative;
  width: 100%;
  height: 155px;
  overflow: hidden;
  margin-bottom: 14px;
  cursor: pointer;
  display: block;
}
.mini-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mini-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 58, 40, 0.30) 0%,
    rgba(26, 58, 40, 0.88) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.mini-card-overlay h3,
.mini-card-overlay span.card-h3 {
  font-family: var(--font-head);
  font-size: 16.5px;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  display: block;
}
.mini-card-overlay h3:hover,
.mini-card-overlay span.card-h3:hover { color: #B8900A; text-decoration: none; }

.topic-articles { list-style: none; padding-left: 0; }
.topic-articles li {
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.topic-articles li a {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.35;
  display: block;
}
.topic-articles li a:hover { color: #B8900A; text-decoration: none; }
.topic-articles li .dek {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 12.5px;
  color: #777;
  margin-top: 2px;
  line-height: 1.4;
}

/* ─── FOUR-CARD ROW (Explore By Topic) ─── */
.four-col-section { margin-bottom: 36px; }
.four-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.acc-card {
  position: relative;
  height: 339px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  background-color: #1A3A28;
}
.acc-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.acc-card:hover img { transform: scale(1.04); }
.acc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.58) 50%, rgba(0,0,0,0.15) 100%);
  z-index: 1;
  transition: opacity .25s;
}
.acc-card:hover::after { opacity: 0.85; }
.acc-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  width: 100%;
}
.acc-cat {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
  display: block;
}
.acc-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
  display: block;
}
.acc-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
  display: block;
}

/* ─── TWO-COL SECTION ─── */
.two-col-section { margin-bottom: 36px; }
.two-col-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}
.two-col-featured {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.two-col-featured img {
  width: 100%; height: 210px;
  object-fit: cover; display: block;
}
.two-col-featured-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.58);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px 22px 18px;
}
.two-col-featured-overlay h3,
.two-col-featured-overlay span.card-h3 {
  font-family: var(--font-head); font-weight: 400;
  font-size: 22px; color: #fff; line-height: 1.25; margin-bottom: 8px;
  display: block;
}
.two-col-featured-overlay p,
.two-col-featured-overlay span.card-p {
  font-family: var(--font-body); font-style: italic;
  font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.4; margin-bottom: 10px;
  display: block;
}
.two-col-featured-overlay .keep-reading {
  font-family: var(--font-head); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9); text-decoration: underline;
}
.two-col-links { display: flex; flex-direction: column; }
.two-col-links a {
  display: block; font-family: var(--font-head); font-size: 15px;
  color: var(--text); padding: 11px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.35;
}
.two-col-links a:first-child { border-top: 1px solid var(--border); }
.two-col-links a:hover { color: var(--accent-400); }
.two-col-links-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px;
}
.two-col-links-2col a { border-bottom: 1px solid var(--border); padding: 10px 0; }
.two-col-links-2col a:first-child,
.two-col-links-2col a:nth-child(2) { border-top: 1px solid var(--border); }

/* ─── STATE NEWS SECTION ─── */
.pub-health-section { margin-bottom: 36px; }
.pub-health-grid {
  display: grid;
  grid-template-columns: 220px minmax(0,1fr) minmax(0,1fr) 230px;
  gap: 24px;
  align-items: start;
}
.pub-health-promo {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex; flex-direction: column; justify-content: flex-end;
  text-decoration: none;
  background-color: #1A3A28;
}
.pub-health-promo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(30%);
}
.pub-health-promo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,41,32,0.78);
  z-index: 1;
}
.pub-health-promo-content {
  position: relative; z-index: 2;
  padding: 24px 20px;
}
.pub-health-promo h3 {
  font-family: var(--font-head); font-weight: 400;
  font-size: 40px; color: #fff; line-height: 1.05;
  margin-bottom: 12px; text-transform: uppercase;
}
.pub-health-promo .promo-sub {
  font-family: var(--font-body); font-style: italic;
  font-size: 16px; color: rgba(255,255,255,0.9);
  margin-bottom: 14px; line-height: 1.4; display: block;
}
.pub-health-promo .promo-body {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.82); line-height: 1.55; margin-bottom: 16px;
}
.pub-health-promo .keep-reading {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.9); text-decoration: underline;
}
.pub-health-article {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
}
.pub-health-article img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block;
  margin-bottom: 10px;
}
.pub-health-article h3,
.pub-health-article span.card-h3 {
  font-family: var(--font-head); font-size: 16px; font-weight: 400;
  color: var(--text); line-height: 1.3; margin-bottom: 6px;
  display: block;
}
.pub-health-article .excerpt {
  font-family: var(--font-body); font-style: italic; font-size: 14px;
  color: var(--text-muted); line-height: 1.45; margin-bottom: 5px; display: block;
}
.pub-health-list { display: flex; flex-direction: column; }
.pub-health-list a {
  padding: 12px 0; border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 4px;
  text-decoration: none; color: inherit;
}
.pub-health-list a:first-child { border-top: 1px solid var(--border); }
.pub-health-list a:hover .list-title { color: var(--accent-400); }
.pub-health-list .list-title {
  font-family: var(--font-head); font-size: 14px; color: var(--text); line-height: 1.3;
}
.pub-health-list .list-excerpt {
  font-family: var(--font-body); font-style: italic; font-size: 13px;
  color: var(--text-muted); line-height: 1.4;
}

/* ─── FOOTER ─── */
footer {
  background: var(--primary-500);
  padding: 24px 0;
  margin-top: 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  margin-bottom: 20px;
}
.footer-logo-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.16em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.footer-logo-tag {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.footer-social a {
  color: rgba(255,255,255,0.55);
  transition: color .18s;
  display: flex;
}
.footer-social a:hover { color: rgba(255,255,255,0.9); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.footer-nav-col h4 {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.footer-nav-col ul { list-style: none; }
.footer-nav-col ul li { margin-bottom: 7px; }
.footer-nav-col ul li a {
  font-family: var(--font-head);
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  transition: color .15s;
}
.footer-nav-col ul li a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.footer-bottom .footer-logo-name {
  margin-bottom: 0;
}
.footer-bottom p,
.footer-bottom .footer-copyright {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.38);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: rgba(255,255,255,0.38);
  text-decoration: underline;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-logo-img {
  display: block;
  max-width: 120px;
  height: auto;
}
.site-disclaimer {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  width: 100%;
}

/* ─── LIFESTYLE / WEATHER / TRAFFIC ─── */
.three-feature-section { margin-bottom: 36px; }
.three-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 40px;
  align-items: start;
}
.feature-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.feature-card img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; margin-bottom: 18px;
}
.feature-card .feat-cat {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-bottom: 8px; display: block;
}
.feature-card h3,
.feature-card span.card-h3 {
  font-family: var(--font-head); font-size: 36px; font-weight: 400;
  color: var(--primary-500); line-height: 1.15; margin-bottom: 10px;
  display: block; min-height: 125px;
  transition: color 0.15s;
}
.feature-card:hover span.card-h3,
.feature-card:hover h3 { color: #B8900A; }
.feature-card .feat-sub {
  font-family: var(--font-body); font-style: italic; font-size: 18px;
  color: var(--text-muted); line-height: 1.4; margin-bottom: 14px; display: block;
}
.feature-card .feat-body,
.feature-card span.card-p {
  font-family: var(--font-body); font-size: 15px;
  color: var(--text); line-height: 1.65;
  display: block;
}
/* ─── NEWS & MORE SECTION ─── */
.news-more-section { margin-bottom: 36px; }
.news-more-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 32px;
}
.news-more-col { display: flex; flex-direction: column; }
.nm-article {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 5px;
  text-decoration: none; color: inherit;
}
.nm-article:hover .nm-title { color: #B8900A; }
.nm-cat {
  font-family: var(--font-head); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted);
}
.nm-title {
  font-family: var(--font-head); font-size: 20px; font-weight: 400;
  color: var(--text); line-height: 1.25;
}
.nm-excerpt {
  font-family: var(--font-body); font-style: italic; font-size: 14px;
  color: var(--text-muted); line-height: 1.45;
}

/* ─── FROM THE CURRENT ─── */
.from-current-section { margin-bottom: 36px; }
.from-current-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 4px;
  align-items: start;
}
.fc-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex; align-items: flex-end;
  text-decoration: none;
  background-color: #1A3A28;
}
.fc-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.fc-card:hover img { transform: scale(1.04); }
.fc-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 45%, rgba(0,0,0,0.18) 75%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.fc-card-content {
  position: relative; z-index: 2;
  padding: 18px 18px 20px;
}
.fc-card h3,
.fc-card span.card-h3 {
  font-family: var(--font-head); font-size: 18px; font-weight: 400;
  color: #fff; line-height: 1.25; margin-bottom: 7px;
  display: block;
}
.fc-card .fc-sub {
  font-family: var(--font-body); font-style: italic; font-size: 13px;
  color: rgba(255,255,255,0.85); line-height: 1.4; margin-bottom: 10px; display: block;
}

/* ─── EDITOR'S CHOICE ─── */
.editors-choice-section { margin-bottom: 36px; }
.editors-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 32px;
  align-items: start;
}
.ec-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.ec-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; margin-bottom: 14px; }
.ec-card h3 {
  font-family: var(--font-head); font-size: 22px; font-weight: 400;
  color: var(--text); line-height: 1.25; margin-bottom: 8px;
}
.ec-card h3:hover { color: #B8900A; }
.ec-card .ec-sub {
  font-family: var(--font-body); font-style: italic; font-size: 15px;
  color: var(--text); line-height: 1.4; margin-bottom: 10px; display: block;
}
.ec-card .ec-body {
  font-family: var(--font-body); font-size: 14px;
  color: var(--text); line-height: 1.6; margin-bottom: 10px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  /* Prevent horizontal page scroll */
  html, body { overflow-x: hidden; }

  .site-logo { position: static; transform: none; }
  .middle-header .wrapper { flex-wrap: wrap; justify-content: space-between; gap: 10px; }
  .logo-name { font-size: 18px; }
  .logo-tagline { display: none; }
  .logo-ring { width: 36px; height: 36px; }

  /* Nav: hamburger menu on mobile */
  .bottom-nav { display: none; overflow-x: unset; }
  .bottom-nav.is-open { display: block; }
  .bottom-nav.is-open .wrapper { flex-direction: column; justify-content: flex-start; padding: 0; }
  .bottom-nav.is-open a { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; }

  /* Hamburger button */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: transform .25s, opacity .25s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Featured card: drop aspect-ratio to prevent forced min-width calculation */
  .featured-card { aspect-ratio: unset; min-height: 300px; }

  .featured-layout { grid-template-columns: 1fr; gap: 20px; }
  .featured-left { border-right: none; padding-right: 0; }
  .featured-sidebar { border-top: none; padding-top: 0; }
  .sidebar-top-rule { display: none; }

  .three-col-grid { grid-template-columns: 1fr; }
  .topic-col { border-right: none; padding: 0; border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 20px; }
  .topic-col:last-child { border-bottom: none; }

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

  /* Promo banners: stack text and button vertically */
  .promo-banner-content,
  .support-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }
  .promo-banner-link,
  .support-banner-link { align-self: flex-start; }

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

  .two-col-grid { grid-template-columns: 1fr; }
  .two-col-links-2col { grid-template-columns: 1fr; }
  .pub-health-grid { grid-template-columns: 1fr; }
  .pub-health-promo { min-height: 220px; }
  .news-more-grid { grid-template-columns: 1fr 1fr; }
  .three-feature-grid { grid-template-columns: 1fr; }
  .editors-choice-grid { grid-template-columns: 1fr 1fr; }
  .from-current-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════
         LAYOUT RESET
═══════════════════════════════════ */
.home .container.main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.container.layout {
  max-width: 100%;
  padding: 0;
}

.container.layout .row.layout {
  margin: 0;
}

.container.layout .row.layout > .cols {
  overflow-x: hidden;
}

.home .container.layout .row.layout > .cols {
  padding: 0;
}

.pages .main-wrapper .container.main {
  padding: 24px 16px;
}

/* ═══════════════════════════════════
         FONTS RESET
═══════════════════════════════════ */
.main-paragraph h1,
.main-paragraph h2 {
  font-weight: 700;
  color: var(--text);
}

.main-paragraph h1,
.main-paragraph h2,
.main-paragraph h3,
.main-paragraph p,
.main-paragraph strong {
  color: var(--text);
}

.main-paragraph h1 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.main-paragraph h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 40px 0 18px;
}

.main-paragraph h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 24px 0 10px;
}

.main-paragraph p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.main-paragraph strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .main-paragraph h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .main-paragraph h2 {
    font-size: 25px;
    margin: 32px 0 16px;
  }

  .main-paragraph h3 {
    font-size: 20px;
    margin: 22px 0 8px;
  }

  .main-paragraph p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* ═══════════════════════════════════
         TABLE RESET
═══════════════════════════════════ */
table { margin: 32px 0; }

table th, table td {
  border-color: var(--border) !important;
  padding: 8px 16px !important;
}

table td {
  color: var(--text) !important;
}

table th {
  background: var(--primary-500) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}

table tbody tr:nth-child(even) td {
  background: var(--surface-100) !important;
}

@media (max-width: 992px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    border: 0 !important;
  }
}

/* ═══════════════════════════════════
         CONTACT US FORM
═══════════════════════════════════ */
#contact-form {
  margin: 45px auto 0;
  max-width: 500px;
}

#contact-form input,
#contact-form textarea {
  flex: 1;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  outline: 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text);
  min-width: 100%;
}

#contact-form input:active,
#contact-form input:focus,
#contact-form textarea:active,
#contact-form textarea:focus {
  border: 2px solid var(--primary-500);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: var(--gray-600);
}

#contact-form button {
  background: var(--primary-500);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  width: 100%;
}

#contact-form button:hover {
  background: var(--accent-500);
}

/* ═══════════════════════════════════
         WIDGETS
═══════════════════════════════════ */

/* IMAGE STYLE RESET */
.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--gray-300) !important;
}

/* SUBLIST */
.item-sublist a {
  width: 100%;
  height: 100%;
}

.item.item-bubbles {
  margin-bottom: 32px;
}

.item-bubbles .row {
  margin: 0;
}

.bubbles-chip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 16px 48px 16px 24px;
  position: relative;
  transition: padding 0.2s ease-in-out;
}

.bubbles-chip:hover {
  color: var(--primary-800);
  background: var(--surface-100);
  border-color: var(--primary-100);
  padding-left: 20px;
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--accent-500);
  color: var(--white);
}

.bubbles-link {
  display: block;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.bubbles-link .bubbles-outer {
  height: 100%;
  padding: 5px;
  max-width: 100%;
}

.sibling.link-button .bubbles-link .bubbles-outer,
.sibling.link-button .bubbles-chip {
  height: auto;
}

.col-gap:has(> .item-bubbles)::before {
  display: none !important;
}

.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%23C08A20'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}

.bubbles-chip:hover::after {
  right: 10px;
}

/* SUBLIST CARDS */
.item-sublist:has(.sublist.card) .row > div {
  padding: 5px !important;
}

.sublist.card {
  border: none;
  border-radius: 6px;
  box-shadow: var(--box-shadow-md);
  transition: 0.2s ease-in;
}

.sublist.card:hover {
  box-shadow: var(--box-shadow-lg);
  color: var(--primary-500);
  transform: translateY(-4px);
}

.sublist.card h5 {
  margin-bottom: 0;
  font-weight: 500;
}

.sublist.card .card-body {
  padding: 16px;
}

@media (max-width: 767.98px) {
  .row div:has(> .sublist.card) {
    padding: 0 !important;
  }

  .row:has(> div .sublist.card) {
    margin: 0;
    gap: 10px;
  }

  .sublist.card {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sublist.card .card-body {
    flex: 1;
    padding: 1rem;
  }

  .sublist.card .card-body * {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .sublist.card .card-body h5 {
    font-size: 16px;
  }
}
