/* ===== VANGUARD LOADOUT GHOST THEME =====
   Forked from vanguard-theme. Palette: gunmetal/charcoal + brass/oxblood.
   Architecture plan §6.4. */

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

:root {
  /* Gunmetal / charcoal base */
  --bg-primary: #14181D;
  --bg-secondary: #1A1F26;
  --bg-card: #20262E;
  --bg-card-border: #2C353D;

  /* Brass primary accent (replaces gold) */
  --brass: #B5985A;
  --brass-hover: #C8AC6A;
  --brass-soft: rgba(181,152,90,0.15);

  /* Oxblood secondary accent (use sparingly for warnings, "drop" markers, etc.) */
  --oxblood: #722F37;
  --oxblood-hover: #8B3A44;

  /* Aliases — keep --gold names working so existing rules below cascade.
     New HTML should prefer .brass over .gold. */
  --gold: var(--brass);
  --gold-hover: var(--brass-hover);

  --white: #FFFFFF;
  --text-primary: #E2E8F0;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --dark-blue: #2C353D;
  --med-blue: #4A6E8C;
  --nav-secondary-height: 36px;
  --nav-primary-height: 64px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background-color: var(--bg-primary); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ===== SECONDARY NAV ===== */
.nav-secondary { position: fixed; top: 0; left: 0; right: 0; z-index: 1001; height: var(--nav-secondary-height); background: #0E1116; border-bottom: 1px solid rgba(44,53,61,0.5); transition: transform 0.3s ease; }
.nav-secondary.hidden { transform: translateY(-100%); }
.nav-secondary-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; height: 100%; display: flex; justify-content: flex-end; align-items: center; }
.nav-secondary-links { display: flex; gap: 1.75rem; }
.nav-secondary-links a { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.nav-secondary-links a:hover { color: var(--brass); }

/* ===== PRIMARY NAV ===== */
.nav { position: fixed; top: var(--nav-secondary-height); left: 0; right: 0; z-index: 1000; height: var(--nav-primary-height); padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; background: rgba(20,24,29,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(44,53,61,0.5); transition: top 0.3s ease; }
.nav.scrolled { top: 0; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; text-decoration: none; flex-shrink: 0; }
.nav-logo .gold, .nav-logo .brass, .footer-brand .gold, .footer-brand .brass { color: var(--brass); }
.nav-logo .white, .footer-brand .white { color: var(--white); font-weight: 400; }
.nav-primary-links { display: none; align-items: center; gap: 2rem; }
.nav-primary-links a { font-size: 0.88rem; font-weight: 500; color: var(--text-secondary); text-decoration: none; transition: color 0.3s; position: relative; padding: 0.25rem 0; }
.nav-primary-links a:hover { color: var(--white); }
.nav-primary-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--brass); transition: width 0.3s; }
.nav-primary-links a:hover::after { width: 100%; }
.nav-primary-links .nav-cta { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bg-primary); background: var(--brass); border-radius: 4px; padding: 0.6rem 1.25rem; transition: background 0.3s, transform 0.3s; }
.nav-primary-links .nav-cta:hover { background: var(--brass-hover); color: var(--bg-primary); transform: translateY(-1px); }
.nav-primary-links .nav-cta::after { display: none; }
@media (min-width: 960px) { .nav-primary-links { display: flex; } .nav-hamburger { display: none; } }
.nav-hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }

/* ===== MOBILE MENU ===== */
.nav-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(20,24,29,0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); z-index: 9999; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; }
.nav-menu.active { display: flex; }
.nav-close { position: absolute; top: 1.25rem; right: 2rem; font-size: 2rem; color: var(--text-primary); cursor: pointer; background: none; border: none; padding: 8px; }
.nav-menu-section { display: flex; flex-direction: column; align-items: center; gap: 1.25rem; padding: 1.5rem 0; }
.nav-menu-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.25rem; }
.nav-menu-section a { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text-primary); text-decoration: none; transition: color 0.3s; }
.nav-menu-section a:hover { color: var(--brass); }
.nav-menu-divider { width: 60px; height: 1px; background: var(--bg-card-border); margin: 0.5rem 0; }
.nav-menu-cta { display: inline-block; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bg-primary); background: var(--brass); border-radius: 4px; padding: 1rem 2.5rem; text-decoration: none; margin-top: 1rem; transition: background 0.3s; }
.nav-menu-cta:hover { background: var(--brass-hover); }

/* ===== LAYOUT ===== */
section { padding: 6rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 780px; margin: 0 auto; }
.section-label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); text-align: center; margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem,5vw,3.2rem); font-weight: 700; color: var(--white); text-align: center; margin-bottom: 1.25rem; line-height: 1.2; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); text-align: center; max-width: 640px; margin: 0 auto 3rem; line-height: 1.7; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding-top: calc(var(--nav-secondary-height) + var(--nav-primary-height) + 4rem); padding-bottom: 6rem; padding-left: 2rem; padding-right: 2rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(ellipse at 50% 30%, rgba(181,152,90,0.06) 0%, transparent 60%); pointer-events: none; }
.hero-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-secondary); background: rgba(44,53,61,0.5); border: 1px solid rgba(44,53,61,0.6); border-radius: 100px; padding: 0.6rem 1.5rem; margin-bottom: 2rem; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,7vw,4.5rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-secondary); max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-buttons { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.hero-divider { width: 60px; height: 3px; background: var(--brass); margin: 3rem auto 0; border-radius: 2px; }

/* ===== BUTTONS ===== */
.btn-primary { display: inline-block; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--bg-primary); background: var(--brass); border: 2px solid var(--brass); border-radius: 4px; padding: 1rem 2.5rem; cursor: pointer; text-decoration: none; transition: all 0.3s; }
.btn-primary:hover { background: var(--brass-hover); border-color: var(--brass-hover); transform: translateY(-1px); }
.btn-outline { display: inline-block; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-primary); background: transparent; border: 2px solid rgba(226,232,240,0.3); border-radius: 4px; padding: 1rem 2.5rem; cursor: pointer; text-decoration: none; transition: all 0.3s; }
.btn-outline:hover { border-color: var(--brass); color: var(--brass); }

/* ===== HOME — CATEGORY TILES ===== */
.cat-tiles { background: var(--bg-secondary); }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; max-width: 1100px; margin: 0 auto; }
.cat-tile { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: 10px; padding: 1.5rem 1.25rem; text-decoration: none; transition: all 0.25s; display: block; }
.cat-tile:hover { border-color: var(--brass); transform: translateY(-2px); }
.cat-tile h3 { font-size: 1.05rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.cat-tile p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* ===== HOME — LATEST REVIEWS / FEATURED LOADOUT ===== */
.featured-loadout { background: var(--bg-primary); border-top: 1px solid var(--bg-card-border); border-bottom: 1px solid var(--bg-card-border); }
.featured-loadout .featured-eyebrow { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brass); text-align: center; margin-bottom: 0.5rem; }
.featured-loadout h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--white); text-align: center; margin-bottom: 1rem; }
.featured-loadout p.lead { font-size: 1.05rem; color: var(--text-secondary); text-align: center; max-width: 620px; margin: 0 auto 2rem; line-height: 1.7; }
.featured-loadout-cta { text-align: center; }

/* ===== BLOG / POSTS ===== */
.posts-section { background: var(--bg-secondary); }
.post-hero { padding-top: calc(var(--nav-secondary-height) + var(--nav-primary-height) + 4rem); padding-bottom: 3rem; padding-left: 2rem; padding-right: 2rem; text-align: center; background: var(--bg-secondary); }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 2rem; }
.post-card { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: 12px; overflow: hidden; text-decoration: none; transition: transform 0.3s, border-color 0.3s; display: block; }
.post-card:hover { transform: translateY(-4px); border-color: var(--brass); }
.post-card-image { height: 200px; background-size: cover; background-position: center; background-color: var(--bg-secondary); }
.post-card-image-default { background: linear-gradient(135deg, #1A1F26 0%, #2C353D 100%); }
.post-card-content { padding: 1.5rem; }
.post-card-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); margin-bottom: 0.5rem; }
.post-card-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; line-height: 1.4; }
.post-card-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 0.75rem; }
.post-card-date { font-size: 0.8rem; color: var(--text-muted); }

/* ===== SINGLE POST / PAGE ===== */
.post-meta { font-size: 0.9rem; color: var(--text-muted); margin-top: 1rem; }
.post-meta-sep { margin: 0 0.5rem; }
.post-feature-image { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.post-feature-image img { width: 100%; border-radius: 12px; margin-top: -2rem; }
.post-feature-image figcaption { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-top: 0.75rem; }
.post-content-section { padding: 3rem 2rem 6rem; }
.post-content { font-size: 1.05rem; color: var(--text-primary); line-height: 1.8; }
.post-content h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); margin: 2.5rem 0 1rem; }
.post-content h3 { font-size: 1.3rem; font-weight: 600; color: var(--white); margin: 2rem 0 0.75rem; }
.post-content p { margin-bottom: 1.25rem; }
.post-content a { color: var(--brass); text-decoration: underline; }
.post-content a:hover { color: var(--brass-hover); }
.post-content ul, .post-content ol { margin: 1rem 0 1.25rem 1.5rem; }
.post-content li { margin-bottom: 0.5rem; }
.post-content blockquote { border-left: 3px solid var(--brass); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--bg-card); border-radius: 0 8px 8px 0; font-style: italic; color: var(--text-secondary); }
.post-content img { max-width: 100%; border-radius: 8px; margin: 1.5rem 0; }
.post-content code { background: var(--bg-card); padding: 0.2rem 0.4rem; border-radius: 4px; font-size: 0.9em; }
.post-content pre { background: var(--bg-card); padding: 1.5rem; border-radius: 8px; overflow-x: auto; margin: 1.5rem 0; }
.post-content pre code { background: none; padding: 0; }
.post-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.post-content th, .post-content td { padding: 0.75rem 1rem; border: 1px solid var(--bg-card-border); text-align: left; }
.post-content th { background: var(--bg-card); color: var(--white); font-weight: 600; }

/* Affiliate disclosure inline aside (above content on every review) */
.post-affiliate-disclosure { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-left: 3px solid var(--brass); border-radius: 0 8px 8px 0; padding: 0.85rem 1.25rem; margin-bottom: 2rem; }
.post-affiliate-disclosure p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; margin: 0; }
.post-affiliate-disclosure strong { color: var(--text-secondary); font-weight: 600; }
.post-affiliate-disclosure a { color: var(--brass); text-decoration: none; border-bottom: 1px solid rgba(181,152,90,0.4); }
.post-affiliate-disclosure a:hover { color: var(--brass-hover); border-bottom-color: var(--brass-hover); }

/* Post footer */
.post-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--bg-card-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.post-tag { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: 4px; padding: 0.3rem 0.75rem; text-decoration: none; transition: all 0.2s; }
.post-tag:hover { border-color: var(--brass); color: var(--brass); }
.post-back { font-size: 0.88rem; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.post-back:hover { color: var(--brass); }

/* ===== REVIEW / GUIDE TEMPLATE COMPONENTS (architecture plan §6.3) ===== */
.verdict-box { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-left: 4px solid var(--brass); border-radius: 0 10px 10px 0; padding: 1.5rem 1.75rem; margin: 1.5rem 0 2rem; display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: center; }
.verdict-box .verdict-score { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; color: var(--brass); line-height: 1; }
.verdict-box .verdict-label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.verdict-box .verdict-cta { display: inline-block; background: var(--brass); color: var(--bg-primary); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.65rem 1.4rem; border-radius: 4px; text-decoration: none; transition: background 0.2s; }
.verdict-box .verdict-cta:hover { background: var(--brass-hover); }

.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0; }
.proscons-col { background: var(--bg-card); border: 1px solid var(--bg-card-border); border-radius: 8px; padding: 1.25rem 1.5rem; }
.proscons-col h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
.proscons-col.pros h4 { color: #5DB075; }
.proscons-col.cons h4 { color: #C26B70; }
.proscons-col ul { list-style: none; margin: 0; padding: 0; }
.proscons-col li { padding-left: 1.4rem; position: relative; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; margin-bottom: 0.5rem; }
.proscons-col.pros li::before { content: '+'; position: absolute; left: 0; color: #5DB075; font-weight: 700; }
.proscons-col.cons li::before { content: '\2212'; position: absolute; left: 0; color: #C26B70; font-weight: 700; }
@media (max-width: 600px) { .proscons { grid-template-columns: 1fr; } }

.spec-table { width: 100%; border-collapse: collapse; background: var(--bg-card); border-radius: 8px; overflow: hidden; margin: 1.5rem 0; }
.spec-table tr { border-bottom: 1px solid var(--bg-card-border); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table th { background: rgba(44,53,61,0.5); color: var(--text-secondary); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.75rem 1rem; text-align: left; font-weight: 600; width: 36%; }
.spec-table td { padding: 0.75rem 1rem; color: var(--text-primary); font-size: 0.95rem; }

/* Drop marker — used in roundups/Loadout when dropping a former pick */
.drop-marker { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--oxblood-hover); border: 1px solid var(--oxblood); background: rgba(114,47,55,0.18); border-radius: 3px; padding: 0.18rem 0.5rem; }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; }
.pagination a { color: var(--brass); text-decoration: none; padding: 0.5rem 1rem; border: 1px solid var(--bg-card-border); border-radius: 6px; transition: all 0.3s; }
.pagination a:hover { border-color: var(--brass); background: var(--bg-card); }

/* ===== FOOTER ===== */
.footer { padding: 4rem 2rem 3rem; background: var(--bg-primary); border-top: 1px solid rgba(44,53,61,0.5); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; }
.footer-tagline { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; max-width: 320px; margin-bottom: 1rem; }
.footer-sister { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; max-width: 320px; }
.footer-sister a { color: var(--brass); text-decoration: none; border-bottom: 1px solid rgba(181,152,90,0.4); }
.footer-sister a:hover { color: var(--brass-hover); border-bottom-color: var(--brass-hover); }
.footer-col-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brass); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 0.88rem; color: var(--text-secondary); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }
.footer-divider { border: none; border-top: 1px solid rgba(44,53,61,0.5); margin-bottom: 1.5rem; }
.footer-copy { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.footer-disclaimer { font-size: 0.78rem; color: var(--text-muted); line-height: 1.7; }
.footer-disclaimer strong { color: var(--text-secondary); font-weight: 600; }
.footer-disclaimer a { color: var(--brass); }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) { .hero-buttons { flex-direction: row; justify-content: center; } }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } .nav-secondary-links { gap: 1.25rem; } .nav-secondary-links a { font-size: 0.68rem; } .verdict-box { grid-template-columns: 1fr; text-align: center; } }
@media (max-width: 480px) { section { padding: 4rem 1.25rem; } .nav { padding: 0 1.25rem; } .nav-secondary-inner { padding: 0 1.25rem; } }

/* ===== KOENIG EDITOR CARD WIDTHS (required by Ghost) ===== */
.kg-width-wide { position: relative; width: 85vw; max-width: 1100px; margin-left: calc(50% - 42.5vw); margin-right: calc(50% - 42.5vw); }
.kg-width-full { position: relative; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.kg-image { max-width: 100%; }
.kg-image-card { margin: 1.5rem 0; }
.kg-image-card img { width: 100%; border-radius: 8px; }
.kg-gallery-card { margin: 1.5rem 0; }
.kg-gallery-container { display: flex; flex-direction: column; gap: 0.5rem; }
.kg-gallery-row { display: flex; gap: 0.5rem; }
.kg-gallery-image { flex: 1; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.kg-bookmark-card { margin: 1.5rem 0; }
.kg-bookmark-container { display: flex; border: 1px solid var(--bg-card-border); border-radius: 8px; overflow: hidden; text-decoration: none; background: var(--bg-card); transition: border-color 0.2s; }
.kg-bookmark-container:hover { border-color: var(--brass); }
.kg-bookmark-content { padding: 1.25rem; flex: 1; }
.kg-bookmark-title { color: var(--white); font-weight: 600; margin-bottom: 0.4rem; }
.kg-bookmark-description { font-size: 0.88rem; color: var(--text-secondary); }
.kg-bookmark-metadata { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; font-size: 0.8rem; color: var(--text-muted); }
.kg-bookmark-thumbnail { width: 140px; flex-shrink: 0; }
.kg-bookmark-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.kg-video-card { margin: 1.5rem 0; }
.kg-video-card video { width: 100%; border-radius: 8px; }
.kg-callout-card { display: flex; gap: 1rem; padding: 1.25rem; background: var(--bg-card); border-left: 3px solid var(--brass); border-radius: 0 8px 8px 0; margin: 1.5rem 0; }
.kg-callout-emoji { font-size: 1.5rem; flex-shrink: 0; }
.kg-callout-text { color: var(--text-primary); line-height: 1.6; }
.kg-toggle-card { border: 1px solid var(--bg-card-border); border-radius: 8px; padding: 1rem 1.25rem; margin: 1.5rem 0; }
.kg-toggle-heading { display: flex; justify-content: space-between; cursor: pointer; color: var(--white); font-weight: 600; }
.kg-toggle-content { margin-top: 0.75rem; color: var(--text-secondary); }
.kg-divider { border: none; border-top: 1px solid var(--bg-card-border); margin: 2rem 0; }

/* ===== HERO DISCLAIMER ===== */
.hero-disclaimer { max-width: 680px; margin: 1.5rem auto 0; padding: 1rem 1.25rem; font-size: 0.78rem; line-height: 1.6; color: rgba(255,255,255,0.55); border: 1px solid rgba(181,152,90,0.25); border-radius: 6px; text-align: center; font-style: italic; }
