/* ============================================
   OKBoomer.ai — "The Golden Hour" Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Core Palette */
  --cream: #FDF8F0;
  --warm-white: #FEFCF8;
  --white: #FFFFFF;
  --gold: #C8A04A;
  --gold-light: #E8D5A0;
  --gold-lighter: #F5ECD4;
  --gold-dark: #9A7830;
  --navy: #1B2A4A;
  --navy-light: #2D4166;
  --navy-lighter: #3D5580;

  /* Text */
  --text: #3A3632;
  --text-light: #6B6560;
  --text-lighter: #9A9590;
  --text-inverse: rgba(255,255,255,0.9);

  /* Accent Colors (Pillars) */
  --save-green: #4A7A42;
  --save-green-bg: #E8F5E3;
  --save-green-grad: linear-gradient(135deg, #E8F5E3, #C8E6C0);
  --create-orange: #BF6C00;
  --create-orange-bg: #FFF3E0;
  --create-orange-grad: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  --connect-blue: #2B6CB0;
  --connect-blue-bg: #E3F2FD;
  --connect-blue-grad: linear-gradient(135deg, #E3F2FD, #B8D8F8);
  --protect-rose: #AD1457;
  --protect-rose-bg: #FCE4EC;
  --protect-rose-grad: linear-gradient(135deg, #FCE4EC, #F8BBD0);
  --explore-purple: #7B1FA2;
  --explore-purple-bg: #F3E5F5;
  --explore-purple-grad: linear-gradient(135deg, #F3E5F5, #CE93D8);

  /* Utility */
  --sage: #7A8B6F;
  --sage-light: #E8EDE5;
  --coral: #D4836B;
  --coral-light: #F5E0D8;
  --border: #E8E2D8;
  --border-light: #F0EBE3;
  --shadow-sm: 0 1px 4px rgba(27, 42, 74, 0.06);
  --shadow: 0 4px 20px rgba(27, 42, 74, 0.08);
  --shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-xs: 8px;

  /* Layout */
  --max-width: 1200px;
  --side-padding: 40px;
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* === TYPOGRAPHY === */
.serif { font-family: 'Playfair Display', Georgia, serif; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--navy); line-height: 1.2; }
h1 { font-size: 2.8rem; font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

/* === TOP BAR === */
.top-bar {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.83rem;
  letter-spacing: 0.3px;
}
.top-bar a {
  color: var(--gold-light);
  font-weight: 500;
  transition: color 0.2s;
}
.top-bar a:hover { color: white; }

/* === HEADER === */
.header {
  background: var(--warm-white);
  border-bottom: 2px solid var(--gold);
  padding: 0 var(--side-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(27, 42, 74, 0.06);
}

.logo-link { display: flex; align-items: baseline; gap: 8px; text-decoration: none; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo-main .dot { color: var(--gold); }
.logo-tag {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* Desktop Nav */
.nav-desktop { display: flex; gap: 4px; align-items: center; }
.nav-desktop a {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-xs);
  transition: all 0.2s;
  letter-spacing: 0.2px;
}
.nav-desktop a:hover { background: var(--sage-light); color: var(--sage); }
.nav-desktop a.active { background: var(--navy); color: white; }

.nav-search-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  margin-left: 8px;
  transition: all 0.2s;
}
.nav-search-btn:hover { border-color: var(--gold); background: var(--gold-lighter); }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav Panel */
.nav-mobile {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--warm-white);
  z-index: 99;
  padding: 24px var(--side-padding);
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block;
  padding: 16px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: var(--radius-xs);
  transition: all 0.2s;
}
.nav-mobile a:hover { background: var(--sage-light); }
.nav-mobile a.active { background: var(--navy); color: white; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: white;
  padding: 80px var(--side-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(200, 160, 74, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(200, 160, 74, 0.2);
  border: 1px solid rgba(200, 160, 74, 0.4);
  color: var(--gold-light);
  padding: 6px 20px;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero h1 {
  color: white;
  margin-bottom: 20px;
}
.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}
.hero p {
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(200, 160, 74, 0.4);
}
.hero-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* === QUICK WINS STRIP === */
.quick-wins {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px var(--side-padding);
}
.quick-wins-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.quick-wins-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  white-space: nowrap;
}
.quick-wins-items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.quick-win-chip {
  background: white;
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.83rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.quick-win-chip:hover { border-color: var(--gold); background: rgba(200, 160, 74, 0.06); }
.qw-icon { font-size: 1rem; }

/* === SECTION HEADERS === */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.section-header h2 { font-size: 1.8rem; }
.section-header .see-all {
  color: var(--gold-dark);
  font-weight: 500;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.section-header .see-all:hover { color: var(--gold); }

/* === SECTION SPACING === */
.content-section { padding: 60px 0; }
.content-section.alt-bg { background: var(--warm-white); }

/* === FEATURED GRID === */
.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}
.featured-main {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.featured-main:hover { box-shadow: var(--shadow-lg); }
.featured-img {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.featured-img-icon { font-size: 4.5rem; opacity: 0.5; }
.featured-category {
  position: absolute;
  top: 16px;
  left: 16px;
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.featured-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.featured-body h3 {
  font-size: 1.55rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.featured-body p {
  color: var(--text-light);
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.featured-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-lighter);
}

/* Sidebar cards */
.featured-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sidebar-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex: 1;
}
.sidebar-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.sidebar-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.sidebar-card .card-label {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.sidebar-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.sidebar-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

/* === PILLAR CARD GRID === */
.pillar-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  cursor: pointer;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar-card-img {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.3rem;
}
.pillar-card-body { padding: 24px; }
.pillar-card-tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pillar-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pillar-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.5;
}
.pillar-card-footer {
  padding: 14px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-lighter);
}

/* Pillar color themes */
.save .pillar-card-img { background: var(--save-green-grad); }
.save .pillar-card-tag { background: var(--save-green-bg); color: var(--save-green); }
.create .pillar-card-img { background: var(--create-orange-grad); }
.create .pillar-card-tag { background: var(--create-orange-bg); color: var(--create-orange); }
.connect .pillar-card-img { background: var(--connect-blue-grad); }
.connect .pillar-card-tag { background: var(--connect-blue-bg); color: var(--connect-blue); }
.protect .pillar-card-img { background: var(--protect-rose-grad); }
.protect .pillar-card-tag { background: var(--protect-rose-bg); color: var(--protect-rose); }
.explore .pillar-card-img { background: var(--explore-purple-grad); }
.explore .pillar-card-tag { background: var(--explore-purple-bg); color: var(--explore-purple); }

/* === TESTIMONIAL STRIP === */
.testimonial-strip {
  background: var(--navy);
  color: white;
  padding: 48px var(--side-padding);
  text-align: center;
}
.testimonial-strip blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.4;
  color: rgba(255,255,255,0.95);
}
.testimonial-strip cite {
  font-style: normal;
  color: var(--gold-light);
  font-size: 0.88rem;
}

/* === SPONSORED CONTENT === */
.sponsored-section { padding: 48px 0; }
.sponsored-label {
  font-size: 0.61rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-lighter);
  font-weight: 600;
  margin-bottom: 20px;
}
.sponsored-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sponsored-card {
  background: white;
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.sponsored-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.sponsored-card h5 {
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 600;
}
.sponsored-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.4; }
.sponsored-card .sp-cta {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.78rem;
}

/* === INLINE SPONSORED (article pages) === */
.sponsored-inline {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 32px 0;
}
.sponsored-inline:hover { border-color: var(--gold); }
.sp-inline-badge {
  font-size: 0.56rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-lighter);
  font-weight: 700;
}
.sp-inline-icon { font-size: 2.2rem; flex-shrink: 0; }
.sp-inline-content { flex: 1; }
.sp-inline-content h5 { font-size: 0.94rem; color: var(--navy); margin-bottom: 2px; }
.sp-inline-content p { font-size: 0.78rem; color: var(--text-light); }
.sp-inline-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

/* === NEWSLETTER === */
.newsletter {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 60px var(--side-padding);
  text-align: center;
  color: var(--navy);
}
.newsletter h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--navy);
}
.newsletter p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 500px;
  margin: 0 auto 28px;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 12px;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  font-size: 0.94rem;
  font-family: 'Source Sans 3', sans-serif;
  outline: none;
}
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(27, 42, 74, 0.2); }
.newsletter-form button {
  background: var(--navy);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-form button:hover { background: var(--navy-light); }
.newsletter-trust {
  margin-top: 16px;
  font-size: 0.78rem;
  opacity: 0.7;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px var(--side-padding) 40px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.83rem; line-height: 1.5; }
.footer h4 {
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer li { margin-bottom: 8px; }
.footer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.83rem;
  transition: color 0.2s;
}
.footer a:hover { color: white; }
.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.78rem;
}

/* === ARTICLE PAGE === */
.article-hero {
  background: var(--warm-white);
  padding: 48px var(--side-padding);
  border-bottom: 1px solid var(--border);
}
.article-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.article-breadcrumb {
  font-size: 0.78rem;
  color: var(--text-lighter);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-breadcrumb a { color: var(--gold-dark); }
.article-breadcrumb a:hover { text-decoration: underline; }
.article-hero h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--navy);
}
.article-hero .article-excerpt {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 20px;
}
.article-hero .article-meta {
  font-size: 0.83rem;
  color: var(--text-lighter);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.article-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px var(--side-padding);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
}
.article-body {
  max-width: 720px;
}
.article-body h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.article-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-body p {
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}
.article-body .step-box {
  background: white;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  padding: 24px 28px;
  margin: 24px 0;
}
.article-body .step-box h4 {
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1rem;
}
.article-body .step-box p {
  margin-bottom: 0;
  font-size: 0.94rem;
  color: var(--text-light);
}
.article-body .callout-box {
  background: var(--save-green-bg);
  border-radius: var(--radius-sm);
  padding: 24px 28px;
  margin: 28px 0;
}
.article-body .callout-box.warning { background: var(--protect-rose-bg); }
.article-body .callout-box h4 { margin-bottom: 6px; }
.article-body .callout-box p { margin-bottom: 0; font-size: 0.94rem; }

/* Article sidebar */
.article-sidebar { position: sticky; top: 100px; }
.sidebar-widget {
  background: white;
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.sidebar-widget h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-widget .related-link {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text);
  transition: color 0.2s;
}
.sidebar-widget .related-link:last-child { border-bottom: none; }
.sidebar-widget .related-link:hover { color: var(--gold-dark); }
.sidebar-widget .related-meta {
  font-size: 0.72rem;
  color: var(--text-lighter);
  margin-top: 3px;
}

/* Sidebar ad widget */
.sidebar-ad {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.sidebar-ad .ad-label {
  font-size: 0.56rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-lighter);
  font-weight: 600;
  margin-bottom: 12px;
}
.sidebar-ad h5 {
  font-size: 0.94rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.sidebar-ad p { font-size: 0.78rem; color: var(--text-light); margin-bottom: 12px; }
.sidebar-ad .ad-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* === CATEGORY PAGE === */
.category-hero {
  padding: 56px var(--side-padding);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.category-hero .cat-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.category-hero h1 {
  margin-bottom: 12px;
}
.category-hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

.category-content { padding: 48px 0; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* === ABOUT PAGE === */
.about-hero {
  background: var(--navy);
  color: white;
  padding: 80px var(--side-padding);
  text-align: center;
}
.about-hero h1 { color: white; margin-bottom: 16px; }
.about-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}
.about-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px var(--side-padding);
}
.about-content h2 {
  margin-bottom: 16px;
  margin-top: 40px;
}
.about-content h2:first-child { margin-top: 0; }
.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: var(--text);
}
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.about-value {
  background: white;
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.about-value .av-icon { font-size: 2rem; margin-bottom: 12px; }
.about-value h4 { margin-bottom: 6px; }
.about-value p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0; }

/* === SEARCH OVERLAY === */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 42, 74, 0.85);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}
.search-overlay.open { display: flex; }
.search-box {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  width: 90%;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
}
.search-box input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 1.1rem;
  font-family: 'Source Sans 3', sans-serif;
  outline: none;
}
.search-box input:focus { border-color: var(--gold); }
.search-box .search-hint {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-lighter);
}
.search-close {
  position: absolute;
  top: 32px;
  right: 32px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .pillar-cards, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsored-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .article-content-wrapper { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --side-padding: 20px; }
  html { font-size: 16px; }

  .nav-desktop { display: none; }
  .nav-search-btn { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 48px var(--side-padding); }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }

  .quick-wins-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .quick-wins-items { flex-wrap: wrap; }

  .featured-grid { grid-template-columns: 1fr; }
  .featured-img { height: 200px; }

  .pillar-cards, .category-grid { grid-template-columns: 1fr; }
  .sponsored-grid { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .article-hero h1 { font-size: 1.8rem; }
  .article-content-wrapper { padding-top: 32px; gap: 32px; }

  .about-values { grid-template-columns: 1fr; }

  .results-banner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.6rem; }
  .results-banner { grid-template-columns: 1fr; }
}

/* === UTILITY === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
