
/* ── SECTION 1: RESET + VARIABLES ── */

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

:root {
  --primary:        #1a5c3a;
  --primary-dark:   #0d3320;
  --primary-dim:    rgba(26, 92, 58, 0.10);
  --primary-border: rgba(26, 92, 58, 0.30);
  --primary-glow:   rgba(26, 92, 58, 0.15);
  --bg:             #faf7f2;
  --bg2:            #f5f1eb;
  --bg3:            #f0ebe3;
  --border:         #ede9e2;
  --border2:        #e5e0d8;
  --text:           #1c1c1c;
  --muted:          #666;
  --faint:          #888;
  --ink:            #0d1f14;
  --ink2:           #1a3a2a;
  --white:          #ffffff;
  --surface:        #ffffff;
  --radius:         16px;
  --radius-sm:      14px;
  --radius-xs:      10px;
  /* widget aliases */
  --orange:         var(--primary);
  --orange-dim:     var(--primary-dim);
  --orange-mid:     var(--primary-border);
  --box-shadow-2:   0 4px 20px 0 rgba(15, 15, 15, 0.06);
  --box-shadow-3:   0 4px 20px 0 rgba(15, 15, 15, 0.14);
  /* accent */
  --accent:         #d97706;
  --accent-dark:    #b45309;
}

html, body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', sans-serif;
}
html { -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
body.all-pages { display: flex; flex-direction: column; min-height: 100vh; }
body.all-pages .container.main { margin-top: 32px; }


/* ── SECTION 2: TYPOGRAPHY ── */

h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}
h2, h3 {
  font-family: Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
}
h4, h5, h6 {
  font-family: 'Segoe UI', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}
p { font-family: 'Segoe UI', sans-serif; }


/* ── SECTION 3: NAVIGATION ── */

nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  gap: 16px;
}

.nav-inner > a {
  flex-shrink: 0;
  margin-right: auto;
  display: flex;
  align-items: center;
}
.logo {
  height: 24px;
  display: block;
}
.footer-logo { height: 24px; display: block; }

/* Nav links styled as scrollable pill row to match design */
.nav-links {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 0 0 auto;
}
.nav-links::-webkit-scrollbar { display: none; }
.nav-links a {
  font-family: 'Segoe UI', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #555;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border2);
  white-space: nowrap;
  transition: all 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.nav-cta {
  background: var(--accent);
  color: var(--white);
  font-family: 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 100px;
  flex-shrink: 0;
  transition: background 0.15s;
  display: inline-block;
}
.nav-cta:hover { background: var(--accent-dark); color: var(--white); }

.nav-more {
  position: relative;
  flex-shrink: 0;
}
.nav-more-btn {
  font-family: 'Segoe UI', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #555;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border2);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  transition: all 0.15s;
}
.nav-more:hover .nav-more-btn,
.nav-more:focus-within .nav-more-btn {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--box-shadow-3);
  padding: 6px;
  min-width: 180px;
  z-index: 200;
  flex-direction: column;
  gap: 2px;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  height: 4px;
}
.nav-more:hover .nav-dropdown,
.nav-more:focus-within .nav-dropdown { display: flex; }
.nav-dropdown a {
  font-family: 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 9px 14px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
}
.nav-dropdown a:hover { background: var(--primary-dim); color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--ink);
  flex-direction: column;
  z-index: 99;
  padding: 16px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 16px;
  border-radius: var(--radius-xs);
  transition: background 0.15s;
}
.mobile-menu a:hover { background: rgba(255, 255, 255, 0.08); }
.m-cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 100px !important;
  text-align: center;
  margin-top: 8px;
}


/* ── SECTION 4: LAYOUT CONTENT ── */

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #0d3320 0%, #1a5c3a 55%, #2d8a58 100%);
  padding: 72px 24px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #6ee7b7;
  margin-bottom: 24px;
}
.hero-kicker::before,
.hero-kicker::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: #6ee7b7;
  opacity: 0.6;
}
.hero h1 {
  font-size: 58px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.hero h1 strong {
  font-weight: 700;
  font-style: italic;
  color: #a7f3d0;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* Hero search bar */
.hero-search-wrap { max-width: 620px; margin: 0 auto 44px; }
.hero-search-box {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 100px;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.12);
  gap: 10px;
}
.hero-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: transparent;
  padding: 8px 0;
}
.hero-search-input::placeholder { color: #aaa; font-weight: 400; }
.hero-search-btn {
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a5c3a, #2d8a58);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.hero-search-btn:hover { opacity: 0.88; }
.hero-search-hints {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.hero-search-hint {
  font-family: 'Segoe UI', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  padding: 4px 13px;
  text-decoration: none;
  transition: all 0.15s;
  display: inline-block;
}
.hero-search-hint:hover { background: rgba(255, 255, 255, 0.16); color: var(--white); }

/* Hero spotlight strip (sits flush at bottom of hero) */
.hero-spotlight {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: none;
  overflow: hidden;
}
.spot-card {
  padding: 28px 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: background 0.15s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.spot-card:last-child { border-right: none; }
.spot-card:hover { background: rgba(255, 255, 255, 0.10); }
.spot-tag {
  font-family: 'Segoe UI', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6ee7b7;
}
.spot-title { font-size: 17px; font-weight: 700; color: var(--white); line-height: 1.35; }
.spot-desc {
  font-family: 'Segoe UI', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  flex: 1;
}
.spot-cta {
  font-family: 'Segoe UI', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #a7f3d0;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

/* ── TOPIC TICKER ── */
.ticker {
  background: var(--accent);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker-scroll 35s linear infinite;
}
.ticker-item {
  font-family: 'Segoe UI', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.15s;
}
.ticker-item:hover { color: rgba(255, 255, 255, 0.75); }
.ticker-dot { width: 4px; height: 4px; background: rgba(255, 255, 255, 0.5); border-radius: 50%; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SHARED SECTION STRUCTURE ── */
.section { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-hd {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 24px;
  padding-top: 56px;
}
.section-hd-left {}
.section-eyebrow {
  font-family: 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.section-hd h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.section-hd a {
  font-family: 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #2d8a58;
  text-decoration: none;
  margin-left: auto;
  padding-bottom: 2px;
  border-bottom: 1.5px solid #a7f3d0;
}
.section-hd a:hover { color: var(--primary); }
.pb-56 { padding-bottom: 56px; }

/* ── EDITORIAL LEAD (asymmetric 2-col) ── */
.editorial-lead {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2px;
  background: var(--border2);
  border-radius: var(--radius);
  overflow: hidden;
}
.ed-main {
  background: var(--surface);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: opacity 0.15s;
  position: relative;
}
.ed-main:hover { opacity: 0.92; }
.ed-main-visual {
  height: 220px;
  background: linear-gradient(135deg, #0d3320, #1a5c3a, #2d8a58);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}
.ed-main-body { padding: 24px 28px 28px; flex: 1; display: block; }
.ed-tag {
  display: block;
  font-family: 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.ed-main-h3 {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 10px;
}
.ed-main-p {
  display: block;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}
.ed-side { display: flex; flex-direction: column; gap: 2px; }
.ed-side-card {
  background: var(--surface);
  padding: 22px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  transition: background 0.15s;
  position: relative;
}
.ed-side-card:hover { background: var(--bg); }
.ed-side-card .ed-tag { margin-bottom: 4px; }
.ed-side-h4 { display: block; font-size: 16px; font-weight: 700; color: var(--text); line-height: 1.3; }
.ed-side-p { display: block; font-size: 12.5px; color: var(--faint); line-height: 1.5; }

/* ── CARD ROW (4-up numbered) ── */
.card-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cr-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 22px 20px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.15s;
  position: relative;
}
.cr-card:hover {
  border-color: #2d8a58;
  box-shadow: 0 6px 24px rgba(29, 92, 58, 0.10);
  transform: translateY(-2px);
}
.cr-num {
  display: block;
  font-family: 'Segoe UI', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 4px;
}
.cr-tag {
  display: block;
  font-family: 'Segoe UI', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}
.cr-h4 { display: block; font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.3; }
.cr-arrow {
  display: block;
  font-family: 'Segoe UI', sans-serif;
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
  color: #2d8a58;
}

/* ── MAGAZINE GRID (3-col) ── */
.mag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.mag-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: all 0.15s;
  position: relative;
}
.mag-card:hover {
  box-shadow: 0 8px 32px rgba(29, 92, 58, 0.10);
  transform: translateY(-2px);
}
.mag-card-visual {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.mcv-1 { background: linear-gradient(135deg, #1a5c3a, #2d8a58); }
.mcv-2 { background: linear-gradient(135deg, #1e3a6e, #2563eb); }
.mcv-3 { background: linear-gradient(135deg, #92400e, #d97706); }
.mcv-4 { background: linear-gradient(135deg, #4c1d95, #7c3aed); }
.mcv-5 { background: linear-gradient(135deg, #065f46, #059669); }
.mcv-6 { background: linear-gradient(135deg, #7f1d1d, #dc2626); }

.hero-search-icon { font-size: 18px; flex-shrink: 0; }
.mag-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mag-tag {
  display: block;
  font-family: 'Segoe UI', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}
.mag-h4 { display: block; font-size: 15.5px; font-weight: 700; color: var(--text); line-height: 1.3; }
.mag-p { display: block; font-size: 13px; color: var(--faint); line-height: 1.5; flex: 1; }
.mag-card-footer {
  display: block;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #2d8a58;
}

/* ── FULL-WIDTH FEATURE BAND ── */
.band {
  background: linear-gradient(135deg, #0d3320, #1a5c3a);
  margin-top: 56px;
}
.band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 48px;
  align-items: center;
}
.band-left h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}
.band-left p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 24px;
}
.band-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Segoe UI', sans-serif;
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-xs);
  text-decoration: none;
  transition: background 0.15s;
}
.band-btn:hover { background: var(--accent-dark); color: var(--white); }
.band-links { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.band-link {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 16px 18px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background 0.15s;
  position: relative;
}
.band-link:hover { background: rgba(255, 255, 255, 0.13); }
.band-link-tag {
  font-family: 'Segoe UI', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6ee7b7;
}
.band-link-title { font-size: 14px; font-weight: 700; color: var(--white); line-height: 1.3; }

/* ── CATEGORY MOSAIC ── */
.cat-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cat-tile {
  border-radius: var(--radius);
  padding: 28px 20px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
  min-height: 140px;
}
.cat-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12); }
.cat-tile-icon { font-size: 32px; line-height: 1; }
.cat-tile-name { font-size: 16px; font-weight: 700; color: var(--white); line-height: 1.2; }
.cat-tile-count { font-size: 12px; color: rgba(255, 255, 255, 0.7); font-weight: 500; }

.ct-nutrition  { background: linear-gradient(135deg, #1a5c3a, #2d8a58); }
.ct-fitness    { background: linear-gradient(135deg, #1e3a6e, #2563eb); }
.ct-mental     { background: linear-gradient(135deg, #4c1d95, #7c3aed); }
.ct-wellness   { background: linear-gradient(135deg, #065f46, #059669); }
.ct-conditions { background: linear-gradient(135deg, #7f1d1d, #dc2626); }
.ct-prevention { background: linear-gradient(135deg, #92400e, #d97706); }
.ct-senior     { background: linear-gradient(135deg, #1e3a5f, #0369a1); }
.ct-mens       { background: linear-gradient(135deg, #1a3a2a, #166534); }
.ct-womens     { background: linear-gradient(135deg, #831843, #db2777); }
.ct-kids       { background: linear-gradient(135deg, #064e3b, #0d9488); }
.ct-alt        { background: linear-gradient(135deg, #3b1f07, #92400e); }
.ct-first      { background: linear-gradient(135deg, #450a0a, #b91c1c); }

/* ── 3-COL LIST SECTION ── */
.list-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.list-col-hd {
  font-family: 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg3);
}
.list-items { display: flex; flex-direction: column; }
.list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--bg2);
  text-decoration: none;
  position: relative;
}
.list-item:last-child { border-bottom: none; }
.list-item:hover .list-item-title { color: var(--primary); }
.list-item-num {
  font-family: 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  width: 18px;
  flex-shrink: 0;
  padding-top: 2px;
}
.list-item-title {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  transition: color 0.15s;
}

/* ── TRUST STRIP ── */
.trust-strip { background: var(--primary); padding: 28px 24px; margin-top: 56px; }
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.trust-text { font-family: 'Segoe UI', sans-serif; }
.trust-title { font-size: 14px; font-weight: 700; color: var(--white); }
.trust-sub { font-size: 12px; color: rgba(255, 255, 255, 0.55); }


/* ── SECTION 5: FOOTER ── */

footer {
  background: var(--ink);
  padding: 52px 24px 32px;
  color: rgba(255, 255, 255, 0.55);
}
.f-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.f-links a { font-size: 12.5px; color: rgba(255, 255, 255, 0.25); font-weight: 600; transition: color 0.2s; }
.f-links a:hover { color: rgba(255, 255, 255, 0.6); }
.f-copy { font-size: 12px; color: rgba(255, 255, 255, 0.25); font-weight: 500; }
.f-disclaimer { max-width: 600px; font-size: 11px; color: rgba(255, 255, 255, 0.14); line-height: 1.6; margin-top: 4px; }

/* Reference footer layout */
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand-name { font-size: 22px; font-weight: 700; color: #6ee7b7; margin-bottom: 10px; }
.footer-brand-name span { color: var(--accent); }
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255, 255, 255, 0.4); }
.footer-col h4 {
  font-family: 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.15s;
}
.footer-col a:hover { color: #6ee7b7; }
.footer-divider { height: 1px; background: rgba(255, 255, 255, 0.07); margin-bottom: 20px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.35);
  padding-top: 0;
  border-top: none;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12.5px; color: rgba(255, 255, 255, 0.35); text-decoration: none; }
.footer-links a:hover { color: #6ee7b7; }
.footer-disclaimer {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 800px;
}


/* ── SECTION 6: CONTACT FORM ── */

.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
}
.contact-form-wrap label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  margin-top: 16px;
}
.contact-form-wrap label:first-of-type { margin-top: 0; }
.contact-form-wrap input,
.contact-form-wrap textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 10px 14px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}
.contact-form-wrap textarea { resize: vertical; min-height: 120px; }
.contact-form-wrap button[type="submit"] {
  width: 100%;
  margin-top: 20px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xs);
  padding: 13px 24px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.contact-form-wrap button[type="submit"]:hover { background: var(--primary-dark); }

/* .contact form (CMS post-contact form) */
.contact {
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
}
.contact p {
  margin: 0 0 14px;
}
.contact p:last-child { margin-bottom: 0; }
.contact input,
.contact textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  padding: 11px 14px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.contact input::placeholder,
.contact textarea::placeholder { color: var(--faint); font-weight: 400; }
.contact input:focus,
.contact textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}
.contact textarea { resize: vertical; min-height: 120px; }
.contact button[type="submit"] {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xs);
  padding: 13px 24px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.contact button[type="submit"]:hover { background: var(--primary-dark); }


/* ── SECTION 7: WIDGETS ── */

/* Sublist widget */
.item-sublist a { width: 100%; height: auto; }
.item-sublist:has(.sublist.card) .row > div { padding: 5px !important; }

.sublist.card {
  border: none !important;
  box-shadow: var(--box-shadow-2);
  transition: box-shadow 0.2s, transform 0.2s, color 0.2s;
  text-decoration: none;
  color: var(--text);
  height: auto;
}
.sublist.card:hover {
  box-shadow: var(--box-shadow-3);
  transform: translateY(-4px);
  color: var(--primary-dark);
}
.sublist.card .card-body { padding: 16px; }
.sublist.card h5 { font-weight: 600; margin-bottom: 0; }

@media (max-width: 767.98px) {
  .sublist.card { display: flex; flex-direction: row; align-items: center; }
  .sublist.card .card-img-top { width: 120px; height: 100%; object-fit: cover; flex-shrink: 0; }
  .row:has(> div .sublist.card) { margin: 0; gap: 10px; }
  .row div:has(> .sublist.card) { padding: 0 !important; }
}

/* Bubbles widget */
.item-bubbles {}
.bubbles-chip { display: flex; flex-direction: column; gap: 0; }
.bubbles-link { display: block; text-decoration: none; color: var(--text); }
/* CRITICAL: height:auto prevents expansion to full viewport */
.bubbles-link .bubbles-outer { height: auto; padding: 3px 0; }
.bubbles-outer {
  height: auto;
  padding: 3px 0;
  display: flex;
  align-items: center;
}
.bubbles-chip-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.15s;
  background: var(--surface);
}
.bubbles-chip-text::after {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8h10M9 4l4 4-4 4' stroke='%231a5c3a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.bubbles-link:hover .bubbles-chip-text {
  background: var(--primary-dim);
  border-color: var(--primary-border);
  padding-left: 20px;
}
.sibling.link-button {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: auto !important;
  min-height: 0 !important;
}
repeat {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
}
.col-gap:has(> .item-bubbles)::before { display: none !important; }


/* ── SECTION 8: LAYOUT RESET — hero full-width YES ── */

body.home-page .container.main { width: 100%; max-width: 100% !important; padding: 0; }
.container.layout { max-width: 100%; padding: 0 !important; }
.container.layout .row.layout { margin: 0 !important; }
body.home-page .container.layout .row.layout > .cols { padding: 0 !important; }
body.home-page .container.layout .col-gap { padding: 0 !important; }

/* always include */
body.all-pages .content .container.main { padding: 24px 16px; }
.dir-content {
  max-width: 1140px !important;
  margin: 0 auto !important;
  padding: 52px 48px;
  background: var(--bg);
}
.container.main { max-width: 1600px !important; }


/* ── SECTION 9: RESPONSIVE ── */

/* Tablet ≤1199px */
@media (max-width: 1199.98px) {
  .nav-inner { padding: 0 24px; }
  .hero { padding: 56px 16px 0; }
  .hero h1 { font-size: 46px; }
  .band-inner { gap: 32px; padding: 40px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dir-content { padding: 40px 24px; }
}

/* Mobile ≤767px */
@media (max-width: 767.98px) {
  nav { height: 60px; }
  .nav-inner { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-more { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { top: 60px; }

  .hero { padding: 48px 16px 0; }
  .hero h1 { font-size: 32px; letter-spacing: -0.5px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hero-search-box {
    flex-direction: column;
    border-radius: var(--radius);
    padding: 12px 16px;
    gap: 8px;
  }
  .hero-search-input { width: 100%; padding: 8px 0; }
  .hero-search-btn {
    width: 100%;
    margin: 0;
    border-radius: var(--radius-xs);
    justify-content: center;
  }
  .hero-search-hints { gap: 6px; }
  .hero-spotlight { grid-template-columns: 1fr; }
  .spot-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .spot-card:last-child { border-bottom: none; }

  .section { padding: 0 16px; }
  .section-hd { flex-wrap: wrap; padding-top: 40px; }

  .editorial-lead { grid-template-columns: 1fr; }
  .card-row { grid-template-columns: repeat(2, 1fr); }
  .mag-grid { grid-template-columns: repeat(2, 1fr); }
  .band-inner { grid-template-columns: 1fr; padding: 32px 16px; }
  .band-links { grid-template-columns: 1fr; }
  .cat-mosaic { grid-template-columns: repeat(2, 1fr); }
  .list-cols { grid-template-columns: 1fr; }
  .trust-strip { padding: 24px 16px; }
  .trust-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    justify-items: start;
  }
  .trust-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .trust-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }
  .trust-title { font-size: 13px; }
  .trust-sub { font-size: 11px; }

  footer { padding: 36px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { text-align: center; }
  .footer-brand p { max-width: 300px; margin: 0 auto; }
  .footer-col { text-align: center; }
  .footer-col a { margin-bottom: 10px; }
  .footer-divider { margin: 4px 0 20px; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }
  .footer-links a { font-size: 11.5px; }
  .footer-disclaimer { text-align: center; }

  .contact-form-wrap { padding: 24px 16px; }
}

/* Small mobile ≤374px */
@media (max-width: 374px) {
  .hero h1 { font-size: 26px; }
  .card-row, .mag-grid, .cat-mosaic { grid-template-columns: 1fr; }
  .cat-tile-icon { font-size: 24px; }
  .cat-tile-name { font-size: 14px; }
}
