/* =====================================================
   preis-fuchs24.de – Style System
   Theme: Preisvergleich / Kosten-Nutzen / Bewertungen
   Fonts: Poppins (headings) + Roboto (body)
   Colors: Fox-Orange, Navy, Ice-Blue
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --orange: #e07b1f;
  --orange-dark: #b86317;
  --orange-light: #fff4e6;
  --navy: #1a2340;
  --navy-mid: #2e3f6e;
  --blue-accent: #2e7bc4;
  --ice: #f0f7ff;
  --ice-dark: #daeaf7;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-gray: #e2e8f0;
  --mid-gray: #64748b;
  --dark-gray: #334155;
  --black: #0f172a;

  --font-head: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

  --container: 1160px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--dark-gray);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.5rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.85rem); margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-top: 1.8rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1.2rem; }

/* ===== CONTAINER ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== PROGRESS BAR ===== */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  width: 0%; background: linear-gradient(90deg, var(--orange), #f5a623);
  z-index: 9999; transition: width 0.1s linear;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 66px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 42px; width: auto; }

.header-nav { list-style: none; display: flex; gap: 24px; padding: 0; }
.header-nav a {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--orange); text-decoration: none; }
.btn-nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 7px 16px !important;
  border-radius: var(--radius) !important;
}
.btn-nav-cta:hover { background: var(--orange-dark) !important; }

.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); margin: 5px 0;
  transition: all 0.3s;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 9px 0;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 500;
}
.trust-bar-inner {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.trust-bar-item { display: flex; align-items: center; gap: 6px; }
.trust-bar-item svg { opacity: 0.7; }

/* ===== HERO ===== */
.site-hero {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.15; display: block;
}
.site-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(26,35,64,0.92) 0%, rgba(26,35,64,0.78) 100%);
}
.site-hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(224,123,31,0.2);
  border: 1px solid rgba(224,123,31,0.5);
  color: #f5a623;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.site-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
}
.site-hero h1 span { color: #f5a623; }
.site-hero p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange-dark); text-decoration: none; color: var(--white); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 11px 24px;
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--white); color: var(--white); text-decoration: none; }

.hero-stats {
  display: flex; gap: 36px; margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: #f5a623;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ===== PRICE COMPARISON CARDS ===== */
.compare-section { background: var(--ice); padding: 60px 0; }
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.price-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.price-card-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 16px;
}
.price-card-badge {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}
.badge-orange { background: var(--orange-light); color: var(--orange-dark); }
.badge-blue { background: var(--ice-dark); color: var(--blue-accent); }
.badge-green { background: #e6f9f0; color: #1a7d4a; }
.price-tag {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
}
.price-tag span { font-size: 0.85rem; font-weight: 400; color: var(--mid-gray); }
.price-card h3 { font-size: 1rem; margin: 0 0 8px; }
.price-card p { font-size: 0.875rem; color: var(--mid-gray); margin: 0; }
.price-card-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
}

/* ===== ARTICLE GRID SECTION ===== */
.topic-band { background: var(--white); padding: 60px 0; }
.topic-band.bg-ice { background: var(--ice); }
.topic-band-header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px;
}
.topic-band-header h2 { margin: 0; }
.topic-band-header a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.article-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: box-shadow 0.2s, transform 0.2s;
  color: var(--dark-gray);
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
.card-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  background: var(--orange-light);
  padding: 2px 8px;
  border-radius: 4px;
}
.card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 10px;
}
.card-excerpt {
  font-size: 0.875rem;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 14px;
}
.card-meta {
  font-family: var(--font-head);
  font-size: 0.75rem;
  color: var(--mid-gray);
}
.card-arrow {
  display: inline-block;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 10px;
}
.article-card.card-featured {
  background: var(--navy);
  border-color: var(--navy);
}
.article-card.card-featured .card-title { color: var(--white); }
.article-card.card-featured .card-excerpt { color: rgba(255,255,255,0.65); }
.article-card.card-featured .card-label { background: rgba(224,123,31,0.25); }
.article-card.card-featured .card-meta { color: rgba(255,255,255,0.4); }

/* ===== SECTION LABEL ===== */
.section-label {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light-gray);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
  text-align: center;
  color: var(--white);
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 52px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  margin-top: 14px;
  line-height: 1.65;
}
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-logo img { height: 34px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-legal a:hover { color: var(--white); text-decoration: none; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--ice);
  border-bottom: 1px solid var(--light-gray);
  padding: 10px 0;
}
.breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--mid-gray);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--mid-gray); }
.breadcrumb a:hover { color: var(--orange); text-decoration: none; }
.breadcrumb-sep { color: var(--light-gray); }
.breadcrumb-current { color: var(--navy); font-weight: 600; }

/* ===== ARTICLE HERO ===== */
.article-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 52px 0 44px;
}
.article-category-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(224,123,31,0.25);
  color: #f5a623;
  border: 1px solid rgba(224,123,31,0.4);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.article-hero h1 {
  color: var(--white);
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 800px;
}
/* Lead text inside article hero (dark background) */
.article-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-top: 14px;
  max-width: 740px;
  margin-bottom: 0;
}

/* ===== META BAR ===== */
.meta-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--light-gray);
}
.meta-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 13px 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--mid-gray);
}
.meta-author-block { display: flex; align-items: center; gap: 10px; }
.avatar-md {
  width: 34px; height: 34px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.author-name { font-weight: 700; color: var(--navy); }
.author-role { font-size: 0.75rem; color: var(--mid-gray); }
.meta-sep { color: var(--light-gray); }
.meta-item { display: flex; align-items: center; gap: 5px; }
.meta-updated { margin-left: auto; color: var(--mid-gray); font-size: 0.75rem; }

/* ===== ARTICLE LAYOUT ===== */
.article-wrapper {
  max-width: var(--container);
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* ===== ARTICLE BODY ===== */
.article-body h2 { color: var(--navy); border-bottom: 2px solid var(--ice); padding-bottom: 8px; }
.article-body ul li { margin-bottom: 0.5rem; }
.article-body ol li { margin-bottom: 0.5rem; }
.article-body a { color: var(--orange); }
.article-body a:hover { color: var(--orange-dark); }
.article-body strong { font-weight: 700; color: var(--navy); }

/* Pull Quote */
.pull-quote {
  margin: 32px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--orange);
  background: var(--orange-light);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Price Box */
.price-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 28px 0;
}
.price-box-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5a623;
  margin-bottom: 12px;
}
.price-box p { color: rgba(255,255,255,0.8); margin-bottom: 0; }
.price-box ul {
  color: rgba(255,255,255,0.8);
  list-style: none;
  padding: 0; margin: 0;
}
.price-box ul li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem;
}
.price-box ul li:last-child { border-bottom: none; }
.price-box ul li strong { color: #f5a623; }
.price-box strong { color: #f5a623; }

/* Info Box */
.info-box {
  border: 1px solid var(--ice-dark);
  border-left: 4px solid var(--blue-accent);
  background: var(--ice);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.95rem;
}
.info-box p { margin-bottom: 0; color: var(--dark-gray); }

/* Warning Box */
.warning-box {
  border: 1px solid #fde68a;
  border-left: 4px solid #f59e0b;
  background: #fffbeb;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.warning-box-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b45309;
  margin-bottom: 6px;
}
.warning-box p { margin-bottom: 0; font-size: 0.95rem; color: var(--dark-gray); }

/* Verdict Box */
.verdict-box {
  background: var(--ice);
  border: 1px solid var(--ice-dark);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 26px;
  margin: 36px 0;
}
.verdict-header {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.verdict-box h3 { margin: 0 0 10px; color: var(--navy); }
.verdict-box p { margin-bottom: 0; font-size: 0.95rem; }

/* Sources Box */
.sources-box {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-top: 36px;
  font-size: 0.85rem;
}
.sources-box h3 { font-size: 0.9rem; margin: 0 0 10px; color: var(--navy); }
.sources-box ul { padding-left: 1.2rem; }
.sources-box li { margin-bottom: 4px; color: var(--mid-gray); }

/* ===== FAQ ===== */
.faq-section { margin-top: 48px; border-top: 1px solid var(--light-gray); padding-top: 36px; }
.faq-section h2 { border-bottom: none !important; padding-bottom: 0 !important; }
.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 18px;
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white);
  color: var(--navy);
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.2rem; color: var(--orange); font-weight: 400; flex-shrink: 0; }
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 0 18px 16px; font-size: 0.95rem; line-height: 1.7; color: var(--dark-gray); }

/* ===== AUTHOR BOX ===== */
.author-box {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--ice);
  border: 1px solid var(--ice-dark);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 40px;
}
.author-avatar {
  width: 50px; height: 50px; flex-shrink: 0;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.author-info h4 { margin: 0 0 2px; font-size: 0.95rem; color: var(--navy); }
.author-title { font-size: 0.8rem; color: var(--mid-gray); margin-bottom: 8px; }
.author-bio { font-size: 0.875rem; color: var(--mid-gray); margin-bottom: 0; line-height: 1.6; }

/* ===== RELATED ARTICLES ===== */
.related-section { margin-top: 48px; }
.related-title { font-size: 1.25rem; margin-bottom: 18px; border-bottom: none !important; padding-bottom: 0 !important; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-card {
  display: block;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: box-shadow 0.2s;
  color: var(--dark-gray);
  background: var(--white);
}
.related-card:hover { box-shadow: var(--shadow-sm); text-decoration: none; }
.related-card-cat {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 6px;
}
.related-card-title {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}
.related-card-img { display: none; }
.related-card-body { /* alias */ }
.related-card-content { /* alias */ }

/* ===== SIDEBAR ===== */
.article-sidebar { position: sticky; top: 80px; }

/* Generic sidebar box title (used in agent-generated articles) */
.sidebar-box-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 10px;
}

.tldr-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 22px;
}
.tldr-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5a623;
  margin-bottom: 8px;
}
.tldr-box h3 { color: var(--white); font-size: 0.95rem; margin: 0 0 10px; }
.tldr-box p { font-size: 0.875rem; color: rgba(255,255,255,0.72); margin-bottom: 0; line-height: 1.65; }
/* Title and list items inside dark navy tldr-box */
.tldr-box .sidebar-box-title { color: #f5a623; }
.tldr-box ul {
  list-style: none;
  padding: 0; margin: 0;
  color: rgba(255,255,255,0.82);
}
.tldr-box ul li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
  line-height: 1.5;
}
.tldr-box ul li:last-child { border-bottom: none; }

.sidebar-articles-box {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 18px;
}
.sidebar-articles-box h3 {
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  color: var(--mid-gray);
}
/* Links inside sidebar-articles-box (plain <ul><li><a> from agent articles) */
.sidebar-articles-box ul {
  list-style: none;
  padding: 0; margin: 0;
}
.sidebar-articles-box ul li {
  border-bottom: 1px solid var(--light-gray);
  padding: 8px 0;
}
.sidebar-articles-box ul li:last-child { border-bottom: none; }
.sidebar-articles-box ul li a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color 0.2s;
}
.sidebar-articles-box ul li a:hover { color: var(--orange); text-decoration: none; }
.sidebar-article-link {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--light-gray);
  color: var(--dark-gray);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s;
}
.sidebar-article-link:last-child { border-bottom: none; }
.sidebar-article-link:hover { color: var(--orange); text-decoration: none; }
.sidebar-article-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.sidebar-article-text { flex: 1; }

.sidebar-cta-box {
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
}
.sidebar-cta-box h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 8px; }
.sidebar-cta-box p { font-size: 0.85rem; color: rgba(255,255,255,0.88); margin-bottom: 14px; }
.sidebar-cta-box .sidebar-box-title { color: rgba(255,255,255,0.75); }
.sidebar-cta-box a.btn-primary { background: var(--navy); display: block; text-align: center; }
.sidebar-cta-box a.btn-primary:hover { background: var(--navy-mid); }
/* CTA button used in agent-generated sidebar */
.btn-sidebar-cta {
  display: block;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 11px 20px;
  border-radius: var(--radius);
  text-align: center;
  transition: background 0.2s;
}
.btn-sidebar-cta:hover { background: var(--navy-mid); color: var(--white); text-decoration: none; }

/* ===== UTILITY PAGES ===== */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 48px 0; }
.page-hero h1 { color: var(--white); font-size: 2rem; }
.page-content { max-width: 820px; margin: 0 auto; padding: 56px 24px 80px; }
.page-content h2 { border-bottom: 2px solid var(--ice); padding-bottom: 8px; }
.page-content h3 { font-size: 1.1rem; }
.page-content ul li, .page-content ol li { margin-bottom: 0.4rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .site-header { padding: 0 16px; }
  .header-nav { display: none; }
  .nav-toggle { display: block; }
  .header-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 66px; left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    gap: 12px;
    z-index: 800;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--light-gray);
  }
  .header-nav.open a { color: var(--navy); }
  .article-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .article-wrapper { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { gap: 16px; }
  .meta-updated { display: none; }
}
