/* ==========================================================================
   FOUNDERS ROOM GHOST THEME
   All selectors prefixed with body for maximum specificity over Ghost defaults
   ========================================================================== */

:root {
  --bg: #060806; --bg-card: #111411; --accent: #7BC143;
  --accent-dim: rgba(123,193,67,0.15);
  --text: #eaeae6; --text-muted: #9a9a95; --text-dim: #5a5a56;
  --border: rgba(255,255,255,0.07); --border-accent: rgba(123,193,67,0.2);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --mono: 'JetBrains Mono', monospace;
  --container: 1320px;
}

/* RESET — override Ghost defaults */
*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--bg) !important; color: var(--text) !important; font-family: var(--sans) !important; font-weight: 300 !important; line-height: 1.7 !important; overflow-x: hidden; }
body ::selection { background: var(--accent); color: var(--bg); }
body img { display: block; max-width: 100%; }
body a { color: inherit; text-decoration: none; }

/* Hide Ghost default head/foot if present */
body .gh-head, body .gh-foot, body .gh-navigation, body .site-header { display: none !important; }

/* Grain overlay */
/* grain overlay removed for performance */

/* GLOBAL FONT OVERRIDES — highest specificity */
body h1, body h2, body h3, body h4, body h5, body h6 { font-family: var(--serif) !important; color: var(--text) !important; }
body p, body span, body li, body div, body button, body input { font-family: var(--sans) !important; }
body em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .container { max-width: var(--container); margin: 0 auto; }

/* ==================== NAV ==================== */
body nav { position: fixed !important; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 48px; background: rgba(6,8,6,0.92) !important; border-bottom: 1px solid var(--border) !important; }
body .nav-inner { max-width: var(--container); margin: 0 auto; display: grid !important; grid-template-columns: 1fr auto 1fr; align-items: center; }
body .nav-logo { display: flex; align-items: center; justify-self: start; }
body .nav-links { display: flex !important; gap: 36px; list-style: none !important; justify-self: center; }
body .nav-links a { font-size: 12px !important; font-weight: 600 !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; color: var(--text-muted) !important; transition: color 0.3s !important; position: relative; }
body .nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.3s !important; }
body .nav-links a:hover { color: var(--text) !important; }
body .nav-links a:hover::after { width: 100%; }
body .nav-links a.active { color: var(--accent) !important; }
body .nav-links a.active::after { width: 100%; }
body .nav-cta { font-size: 11px !important; font-weight: 700 !important; letter-spacing: 0.14em; text-transform: uppercase; padding: 10px 28px; border: 1px solid var(--accent) !important; color: var(--accent) !important; background: transparent !important; font-family: var(--sans) !important; cursor: pointer; transition: all 0.3s !important; }
body .nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

/* ==================== HERO ==================== */
body .hero { position: relative; min-height: 100vh; display: grid !important; grid-template-columns: 1fr 1fr; overflow: hidden; }
body .hero-text { display: flex; flex-direction: column; justify-content: center; padding: 140px 64px 80px; position: relative; z-index: 3; max-width: 660px; }
body .hero-badge { display: inline-flex !important; align-items: center; gap: 10px; font-family: var(--mono) !important; font-size: 11px !important; letter-spacing: 0.2em !important; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 32px; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
body .hero-badge::before { content: ''; width: 40px; height: 1px; background: var(--accent); }
body .hero h1 { font-family: var(--serif) !important; font-size: clamp(42px,5.5vw,78px) !important; font-weight: 900 !important; line-height: 1.05 !important; letter-spacing: -0.03em; margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s 0.4s forwards; }
body .hero-sub { font-size: 17px !important; color: var(--text-muted) !important; line-height: 1.8; max-width: 440px; margin-bottom: 48px; opacity: 0; animation: fadeUp 0.8s 0.6s forwards; }
body .hero-listen-label { font-family: var(--mono) !important; font-size: 11px !important; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim) !important; margin-bottom: 16px; opacity: 0; animation: fadeUp 0.8s 0.7s forwards; }
body .btn-primary { display: inline-flex !important; align-items: center; gap: 10px; padding: 16px 36px; background: var(--accent) !important; color: #fff !important; font-weight: 700 !important; font-size: 12px !important; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--sans) !important; border: none; cursor: pointer; transition: all 0.3s !important; }
body .btn-primary:hover { transform: translateY(-2px) !important; box-shadow: 0 8px 32px rgba(123,193,67,0.35) !important; }
body .btn-ghost { display: inline-flex !important; align-items: center; gap: 8px; padding: 12px 0; border: none !important; color: var(--text-muted) !important; font-weight: 600 !important; font-size: 12px !important; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--sans) !important; cursor: pointer; transition: all 0.3s !important; background: transparent !important; }
body .btn-ghost svg { opacity: 0.5; transition: opacity 0.3s !important; }
body .btn-ghost:hover svg { opacity: 1 !important; }
body .btn-ghost:hover { color: var(--accent) !important; }
body .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.8s forwards; }
body .hero-btn { padding: 16px 36px; font-size: 12px !important; font-weight: 700 !important; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--sans) !important; cursor: pointer; transition: all 0.3s !important; border: 1px solid var(--accent); display: inline-block; }
body .hero-btn.primary { background: var(--accent) !important; color: #fff !important; }
body .hero-btn.primary:hover { background: transparent !important; color: var(--accent) !important; }
body .hero-btn.secondary { background: transparent; color: var(--text-muted); border-color: var(--border); }
body .hero-btn.secondary:hover { border-color: var(--accent) !important; color: var(--accent) !important; }
body .hero-visual { position: relative; overflow: hidden; }
body .hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: 0; animation: fadeIn 1.2s 0.3s forwards; }
body .hero-img-overlay { position: absolute !important; inset: 0; z-index: 2; background: linear-gradient(to left, var(--bg) 0%, transparent 30%), linear-gradient(to top, var(--bg) 0%, transparent 20%) !important; }

/* ==================== STATS BAR ==================== */
body .stats-bar { display: grid !important; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
body .stat { padding: 40px; text-align: center; border-right: 1px solid var(--border); }
body .stat:last-child { border-right: none; }
body .stat .num { font-family: var(--serif) !important; font-size: 36px !important; font-weight: 700 !important; color: var(--text) !important; line-height: 1; margin-bottom: 6px; }
body .stat .label { font-family: var(--mono) !important; font-size: 10px !important; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent) !important; }

/* ==================== SECTION LABEL ==================== */
body .section-label { padding: 100px 48px 48px; display: flex !important; justify-content: space-between; align-items: flex-end; gap: 40px; max-width: var(--container); margin: 0 auto; }
body .section-label h2 { font-family: var(--serif) !important; font-size: clamp(32px,4vw,52px) !important; font-weight: 700 !important; letter-spacing: -0.02em; line-height: 1.1 !important; }
body .section-label p { font-size: 14px !important; color: var(--text-muted) !important; max-width: 340px; text-align: right; line-height: 1.7; }

/* ==================== FEATURED ==================== */
body .featured { padding: 0 48px 48px; max-width: var(--container); margin: 0 auto; }
body .featured-card { display: grid !important; grid-template-columns: 1.1fr 1fr; background: var(--bg-card) !important; border: 1px solid var(--border) !important; overflow: hidden; transition: border-color 0.4s !important; }
body .featured-card:hover { border-color: var(--border-accent) !important; }
body .featured-cover { position: relative; overflow: hidden; }
body .featured-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s !important; }
body .featured-card:hover .featured-cover img { transform: scale(1.03) !important; }
body .featured-body { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
body .featured-ep { font-family: var(--mono) !important; font-size: 11px !important; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 20px; }
body .featured-body h3 { font-family: var(--serif) !important; font-size: 30px !important; font-weight: 700 !important; line-height: 1.2 !important; letter-spacing: -0.02em; margin-bottom: 12px; }
body .featured-body p { font-size: 15px !important; color: var(--text-muted) !important; line-height: 1.8; margin-bottom: 36px; }
body .listen-link { display: inline-flex !important; align-items: center; gap: 12px; font-weight: 700 !important; font-size: 12px !important; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent) !important; transition: gap 0.3s !important; }
body .listen-link:hover { gap: 18px; }

/* ==================== EPISODE GRID ==================== */
body .episodes-grid { display: grid !important; grid-template-columns: repeat(3,1fr); gap: 20px; padding: 0 48px 40px; max-width: var(--container); margin: 0 auto; }
body .episodes-grid.full-bottom { padding-bottom: 120px; }
body .ep-card { background: var(--bg-card) !important; border: 1px solid var(--border) !important; overflow: hidden; transition: all 0.4s !important; cursor: pointer; display: block !important; }
body .ep-card:hover { border-color: var(--border-accent) !important; transform: translateY(-4px) !important; }
body .ep-card-img { position: relative; overflow: hidden; aspect-ratio: 16/10; }
body .ep-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s !important; }
body .ep-card:hover .ep-card-img img { transform: scale(1.05) !important; }
body .ep-card-img .ep-number { position: absolute !important; top: 16px; left: 16px; background: rgba(6,8,6,0.75) !important; backdrop-filter: blur(8px); padding: 6px 14px; font-family: var(--mono) !important; font-size: 10px !important; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent) !important; }
body .ep-card-body { padding: 28px; }
body .ep-card-body h4 { font-family: var(--serif) !important; font-size: 19px !important; font-weight: 700 !important; line-height: 1.3 !important; margin-bottom: 8px; }
body .ep-card-body .ep-guest { font-size: 13px !important; color: var(--accent) !important; margin-bottom: 12px; }
body .ep-card-body p { font-size: 13px !important; color: var(--text-muted) !important; line-height: 1.7; }
body .ep-card-body .ep-date { margin-top: 20px; font-size: 11px !important; color: var(--text-dim) !important; letter-spacing: 0.1em; text-transform: uppercase; }

/* ==================== VIEW ALL ==================== */
body .view-all-wrap { max-width: var(--container); margin: 0 auto; padding: 0 48px 80px; text-align: center; }
body .view-all-link { display: inline-flex !important; align-items: center; gap: 12px; font-weight: 700 !important; font-size: 13px !important; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent) !important; transition: all 0.3s !important; padding: 16px 36px; border: 1px solid var(--border-accent) !important; }
body .view-all-link:hover { gap: 18px; background: var(--accent-dim) !important; }

/* ==================== GUESTS GALLERY ==================== */
body .guests-gallery { padding: 0 48px 40px; display: grid !important; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: var(--container); margin: 0 auto; }
body .guests-gallery.full-bottom { padding-bottom: 120px; }
body .guest-card { position: relative; transform: translateZ(0); overflow: hidden; aspect-ratio: 3/4; cursor: pointer; border: none !important; outline: none !important; box-shadow: none !important; transition: all 0.4s !important; display: block !important; background: var(--bg) !important; }
body .guest-card:hover { transform: translateY(-4px) !important; }
/* Nuclear guest card overrides */
body .guest-card * { border: none !important; outline: none !important; box-shadow: none !important; }
body .guest-card a, body .guest-card img, body .guest-card figure { margin: 0 !important; padding: 0 !important; border: none !important; }
body a.guest-card { border: none !important; outline: none !important; box-shadow: none !important; text-decoration: none !important; }
body a.guest-card:hover { border: none !important; outline: none !important; }
body a.guest-card::after, body a.guest-card::before { display: none !important; }

body .guest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
body .guest-card:hover img { /* no scale - prevents Chrome overflow:hidden anti-aliasing artifact */ }
body .guest-card-overlay { position: absolute !important; inset: 0; z-index: 2; background: linear-gradient(to top, var(--bg) 0%, var(--bg) 5%, rgba(6,8,6,0.95) 18%, rgba(6,8,6,0.4) 45%, transparent 72%) !important; display: flex !important; flex-direction: column; justify-content: flex-end; padding: 28px; }
body .guest-card-overlay h5 { font-family: var(--serif) !important; font-size: 18px !important; font-weight: 700 !important; margin-bottom: 4px; }
body .guest-card-overlay span { font-size: 12px !important; color: var(--accent) !important; line-height: 1.5; }
body .guest-card-overlay .bio-preview { font-size: 11px !important; color: var(--text-muted) !important; line-height: 1.6; margin-top: 10px; opacity: 0; max-height: 0; transition: all 0.4s !important; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
body .guest-card:hover .guest-card-overlay .bio-preview { opacity: 1 !important; max-height: 80px; }

/* ==================== ABOUT HOST ==================== */
body .about-host { display: grid !important; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); min-height: 600px; max-width: var(--container); margin: 0 auto; }
body .about-host-img { position: relative; overflow: hidden; }
body .about-host-img img { width: 100%; height: 100%; object-fit: cover; }
body .about-host-img .img-fade { position: absolute !important; inset: 0; z-index: 2; background: linear-gradient(to right, transparent 50%, var(--bg) 100%), linear-gradient(to top, var(--bg) 0%, transparent 20%) !important; }
body .about-host-text { display: flex; flex-direction: column; justify-content: center; padding: 80px 64px; }
body .about-host-text .label { font-family: var(--mono) !important; font-size: 10px !important; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 20px; }
body .about-host-text h2 { font-family: var(--serif) !important; font-size: 42px !important; font-weight: 700 !important; line-height: 1.1 !important; letter-spacing: -0.02em; margin-bottom: 24px; }
body .about-host-text p { font-size: 15px !important; color: var(--text-muted) !important; line-height: 1.9; margin-bottom: 20px; }
body .host-links { display: flex; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
body .host-links a { font-size: 13px !important; font-weight: 500 !important; color: var(--text-muted) !important; transition: color 0.3s !important; display: inline-flex; align-items: center; gap: 6px; }
body .host-links a svg { opacity: 0.5; transition: opacity 0.3s !important; }
body .host-links a:hover svg { opacity: 1 !important; }
body .host-links a:hover { color: var(--accent) !important; }

/* ==================== SHOW INFO ==================== */
body .show-info { max-width: var(--container); margin: 0 auto; display: grid !important; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--border); }
body .show-info-item { padding: 48px; border-right: 1px solid var(--border); }
body .show-info-item:last-child { border-right: none; }
body .show-info-item .num { font-family: var(--serif) !important; font-size: 42px !important; font-weight: 700 !important; color: var(--text) !important; line-height: 1; margin-bottom: 8px; }
body .show-info-item .label { font-family: var(--mono) !important; font-size: 10px !important; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 16px; }
body .show-info-item p { font-size: 14px !important; color: var(--text-muted) !important; line-height: 1.7; }

/* ==================== CTA ==================== */
body .cta { position: relative; padding: 120px 48px; text-align: center; overflow: hidden; max-width: var(--container); margin: 0 auto; }
body .cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(123,193,67,0.06) 0%, transparent 70%) !important; }
body .cta-inner { position: relative; z-index: 2; }
body .cta h2 { font-family: var(--serif) !important; font-size: clamp(36px,5vw,60px) !important; font-weight: 900 !important; letter-spacing: -0.03em; line-height: 1.1 !important; margin-bottom: 20px; }
body .cta p { font-size: 16px !important; color: var(--text-muted) !important; margin-bottom: 48px; max-width: 460px; margin-left: auto; margin-right: auto; }
body .cta-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto 44px; }
body .cta-form input { flex: 1; padding: 16px 24px; background: var(--bg-card) !important; border: 1px solid var(--border) !important; border-right: none !important; color: var(--text) !important; font-family: var(--sans) !important; font-size: 14px !important; outline: none; transition: border-color 0.3s !important; }
body .cta-form input::placeholder { color: var(--text-dim) !important; }
body .cta-form input:focus { border-color: var(--accent) !important; }
body .cta-form button { padding: 16px 32px; background: var(--accent) !important; color: #fff !important; font-family: var(--sans) !important; font-weight: 700 !important; font-size: 12px !important; letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid var(--accent) !important; cursor: pointer; transition: all 0.3s !important; }
body .cta-form button:hover { background: transparent !important; color: var(--accent) !important; }
body .platforms { display: flex; justify-content: center; gap: 32px; }
body .platforms a { font-size: 12px !important; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim) !important; border-bottom: 1px solid transparent; padding-bottom: 3px; transition: all 0.3s !important; }
body .platforms a:hover { color: var(--accent) !important; border-color: var(--accent) !important; }

/* ==================== FOOTER ==================== */
body footer { padding: 40px 48px; border-top: 1px solid var(--border) !important; background: var(--bg) !important; }
body .footer-inner { max-width: var(--container); margin: 0 auto; display: grid !important; grid-template-columns: 1fr auto 1fr; align-items: center; }
body .footer-logo { display: flex; align-items: center; justify-self: start; }
body .footer-links { display: flex; gap: 28px; justify-self: center; }
body .footer-links a { font-size: 12px !important; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim) !important; transition: color 0.3s !important; }
body .footer-links a:hover { color: var(--text) !important; }
body .footer-copy { font-size: 12px !important; color: var(--text-dim) !important; justify-self: end; }

/* ==================== PAGE HEADER ==================== */
body .page-header { padding: 140px 48px 60px; max-width: var(--container); margin: 0 auto; }
body .page-header .label { font-family: var(--mono) !important; font-size: 11px !important; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 10px; }
body .page-header .label::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
body .page-header h1 { font-family: var(--serif) !important; font-size: clamp(36px,5vw,60px) !important; font-weight: 900 !important; line-height: 1.1 !important; letter-spacing: -0.03em; }
body .page-header p { font-size: 16px !important; color: var(--text-muted) !important; margin-top: 16px; max-width: 520px; }

/* ==================== POST PAGE ==================== */
body .ep-hero { padding: 120px 48px 0; max-width: var(--container); margin: 0 auto; }
body .ep-hero-header { margin-bottom: 48px; max-width: 720px; }
/* Episode hero header styles */
body .ep-hero-header h1 { font-family: var(--serif) !important; font-size: clamp(32px,4vw,56px) !important; font-weight: 900 !important; line-height: 1.1 !important; letter-spacing: -0.02em; margin-bottom: 20px; opacity: 0; animation: fadeUp 0.8s 0.3s forwards; }
body .ep-hero-header h1 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .ep-badge { display: inline-flex !important; align-items: center; gap: 10px; font-family: var(--mono) !important; font-size: 11px !important; letter-spacing: 0.2em !important; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s 0.2s forwards; }
body .ep-badge::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
body .ep-date { font-size: 13px !important; color: var(--text-dim) !important; }

body .ep-meta-row { display: flex !important; align-items: center; gap: 24px; opacity: 0; animation: fadeUp 0.8s 0.4s forwards; }
body .ep-meta-divider { width: 1px; height: 32px; background: var(--border); }
body .ep-video-slot { opacity: 0; animation: fadeUp 0.8s 0.5s forwards; }
body .ep-video-wrap, body .ep-video-slot .kg-embed-card { position: relative; width: 100%; }
body .ep-video-slot .kg-embed-card { margin: 0 !important; }
body .ep-video-slot iframe { width: 100% !important; aspect-ratio: 16/9; border: 1px solid var(--border) !important; height: auto !important; }
body .ep-content { max-width: var(--container); margin: 0 auto; padding: 0 48px; }
body .ep-content .post-content { padding: 0 !important; max-width: none !important; }
body .ep-badge { display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono) !important; font-size: 11px !important; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 28px; }
body .ep-badge::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
body .ep-hero-content h1 { font-family: var(--serif) !important; font-size: clamp(32px,4vw,52px) !important; font-weight: 900 !important; line-height: 1.1 !important; margin-bottom: 20px; }
body .ep-guest-info { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
body .ep-guest-info img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); }
body .ep-guest-info .info h3 { font-size: 16px !important; font-weight: 600 !important; margin-bottom: 2px; }
body .ep-guest-info .info span { font-size: 13px !important; color: var(--accent) !important; }
body .ep-date { font-size: 13px !important; color: var(--text-dim) !important; margin-bottom: 32px; }
body .ep-summary { font-size: 16px !important; color: var(--text-muted) !important; line-height: 1.9; margin-bottom: 40px; }

/* Post content */
body .post-content { padding: 100px 48px; max-width: var(--container); margin: 0 auto; }
body .post-content h2, body .post-content h3 { font-family: var(--serif) !important; font-weight: 700 !important; letter-spacing: -0.02em; margin-bottom: 16px; margin-top: 48px; }
body .post-content h2 { font-size: 28px !important; }
body .post-content h3 { font-size: 22px !important; color: var(--accent) !important; }
body .post-content p { font-size: 16px !important; color: var(--text-muted) !important; line-height: 2 !important; margin-bottom: 24px; }
body .post-content a { color: var(--accent) !important; }
body .post-content ul, body .post-content ol { padding-left: 24px; margin-bottom: 24px; }
body .post-content li { font-size: 15px !important; color: var(--text-muted) !important; line-height: 1.8; margin-bottom: 8px; }
body .post-content img { border: 1px solid var(--border); margin: 32px 0; }
body .post-content hr { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* About blocks */
body .about-blocks { padding: 0 48px 60px; display: grid !important; grid-template-columns: 1fr 1fr; gap: 24px; max-width: var(--container); margin: 0 auto; }
body .about-block { display: flex !important; gap: 24px; padding: 40px; background: var(--bg-card) !important; border: 1px solid var(--border) !important; transition: border-color 0.3s !important; align-items: flex-start; }
body .about-block:hover { border-color: var(--border-accent) !important; }
body .about-block img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
body .about-block .label { font-family: var(--mono) !important; font-size: 10px !important; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 8px; }
body .about-block h4 { font-size: 18px !important; font-weight: 600 !important; margin-bottom: 4px; }
body .about-block .role { font-size: 13px !important; color: var(--text-muted) !important; margin-bottom: 12px; }
body .about-block p { font-size: 14px !important; color: var(--text-dim) !important; line-height: 1.7; }

/* ==================== PROFILE HERO ==================== */
body .profile-hero { display: grid !important; grid-template-columns: 1fr 1fr; overflow: hidden; max-width: var(--container); margin: 0 auto; padding-top: 100px; gap: 48px; align-items: center; }
body .profile-hero-img { position: relative; overflow: hidden; }
body .profile-hero-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 20%; }
body .profile-hero-img .fade { position: absolute !important; inset: 0; z-index: 2; background: linear-gradient(to right, var(--bg) 0%, transparent 20%, transparent 60%, var(--bg) 100%), linear-gradient(to top, var(--bg) 0%, transparent 20%) !important; }
body .profile-hero-text { display: flex; flex-direction: column; justify-content: center; padding: 40px 0 80px; }
body .profile-label { font-family: var(--mono) !important; font-size: 11px !important; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 28px; display: inline-flex; align-items: center; gap: 10px; }
body .profile-label::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
body .profile-hero-text h1 { font-family: var(--serif) !important; font-size: clamp(42px,5vw,64px) !important; font-weight: 900 !important; line-height: 1.05 !important; letter-spacing: -0.03em; margin-bottom: 12px; }
body .profile-tagline { font-size: 17px !important; color: var(--accent) !important; margin-bottom: 32px; font-weight: 400 !important; }
body .profile-highlights { display: flex; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
body .highlight .num { font-family: var(--serif) !important; font-size: 28px !important; font-weight: 700 !important; color: var(--text) !important; line-height: 1; }
body .highlight .label { font-size: 11px !important; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim) !important; margin-top: 4px; }
body .profile-hero-text .bio-intro { font-size: 16px !important; color: var(--text-muted) !important; line-height: 1.9; max-width: 560px; }
body .connect-links { display: flex; gap: 20px; margin-top: 32px; flex-wrap: wrap; }
body .connect-links a { font-size: 13px !important; font-weight: 500 !important; color: var(--text-muted) !important; transition: color 0.3s !important; display: inline-flex; align-items: center; gap: 6px; }
body .connect-links a svg { opacity: 0.5; transition: opacity 0.3s !important; }
body .connect-links a:hover svg { opacity: 1 !important; }
body .connect-links a:hover { color: var(--accent) !important; }

/* Bio section */
body .bio-section { padding: 80px 48px 100px; max-width: 800px; margin: 0 auto; }
body .bio-section h2 { font-family: var(--serif) !important; font-size: 28px !important; font-weight: 700 !important; margin-bottom: 32px; letter-spacing: -0.02em; color: var(--text) !important; }
body .bio-section p { font-size: 16px !important; color: var(--text-muted) !important; line-height: 2 !important; margin-bottom: 24px; }
body .bio-section p a { color: var(--accent) !important; }
body .bio-section ul, body .bio-section ol { font-size: 16px !important; color: var(--text-muted) !important; line-height: 2 !important; margin-bottom: 24px; padding-left: 24px; }
body .bio-section li { margin-bottom: 8px; }
body .bio-section li a { color: var(--accent) !important; }
body .episodes-section { padding: 0 48px 100px; max-width: var(--container); margin: 0 auto; }
body .ep-section-header { margin-bottom: 40px; }
body .episodes-section .episodes-grid { padding: 0 !important; max-width: none !important; margin: 0 !important; }
body .ep-section-header h2 { font-family: var(--serif) !important; font-size: 32px !important; font-weight: 700 !important; }
body .ep-section-header p { font-size: 14px !important; color: var(--text-dim) !important; margin-top: 8px; }

/* ==================== ABOUT PAGE ==================== */
body .about-hero { padding: 140px 48px 80px; max-width: var(--container); margin: 0 auto; display: grid !important; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
body .about-hero-text .label { font-family: var(--mono) !important; font-size: 11px !important; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 10px; }
body .about-hero-text .label::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
body .about-hero-text h1 { font-family: var(--serif) !important; font-size: clamp(36px,5vw,56px) !important; font-weight: 900 !important; line-height: 1.1 !important; margin-bottom: 24px; }
body .about-hero-text p { font-size: 17px !important; color: var(--text-muted) !important; line-height: 1.9; margin-bottom: 20px; }
body .about-hero-visual img { width: 100%; border: 1px solid var(--border); aspect-ratio: 1/1; object-fit: cover; }
body .mission { padding: 0 48px 100px; max-width: var(--container); margin: 0 auto; }
body .mission-grid { display: grid !important; grid-template-columns: repeat(3,1fr); gap: 24px; }
body .mission-card { padding: 40px; background: var(--bg-card) !important; border: 1px solid var(--border) !important; transition: border-color 0.3s !important; }
body .mission-card:hover { border-color: var(--border-accent) !important; }
body .mission-card .icon { font-family: var(--mono) !important; font-size: 11px !important; color: var(--accent) !important; letter-spacing: 0.15em; margin-bottom: 16px; text-transform: uppercase; }
body .mission-card h3 { font-family: var(--serif) !important; font-size: 20px !important; font-weight: 700 !important; margin-bottom: 12px; }
body .mission-card p { font-size: 14px !important; color: var(--text-muted) !important; line-height: 1.8; }
body .about-host-section { padding: 100px 48px; max-width: var(--container); margin: 0 auto; display: grid !important; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; border-top: 1px solid var(--border); }
body .about-host-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 20%; border: 1px solid var(--border); }
body .about-host-content .label { font-family: var(--mono) !important; font-size: 11px !important; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px; }
body .about-host-content .label::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
body .about-host-content h2 { font-family: var(--serif) !important; font-size: clamp(28px,4vw,42px) !important; font-weight: 900 !important; line-height: 1.1 !important; margin-bottom: 24px; }
body .about-host-content p { font-size: 16px !important; color: var(--text-muted) !important; line-height: 1.9; margin-bottom: 20px; }
body .about-stats { max-width: var(--container); margin: 0 auto; padding: 0 48px 100px; display: grid !important; grid-template-columns: repeat(3,1fr); gap: 24px; }
body .about-stat-item { padding: 40px; border: 1px solid var(--border) !important; text-align: center; transition: border-color 0.3s !important; }
body .about-stat-item:hover { border-color: var(--border-accent) !important; }
body .about-stat-item .num { font-family: var(--serif) !important; font-size: 42px !important; font-weight: 700 !important; color: var(--text) !important; line-height: 1; margin-bottom: 8px; }
body .about-stat-item .label { font-family: var(--mono) !important; font-size: 11px !important; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 12px; }
body .about-stat-item p { font-size: 13px !important; color: var(--text-dim) !important; line-height: 1.7; }

/* ==================== CONTACT PAGE ==================== */
body .contact-page { padding: 140px 48px 100px; max-width: var(--container); margin: 0 auto; display: grid !important; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; min-height: 70vh; }
body .contact-left .label { font-family: var(--mono) !important; font-size: 11px !important; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 20px; display: inline-flex; align-items: center; gap: 10px; }
body .contact-left .label::before { content: ''; width: 32px; height: 1px; background: var(--accent); }
body .contact-left h1 { font-family: var(--serif) !important; font-size: clamp(36px,5vw,56px) !important; font-weight: 900 !important; line-height: 1.1 !important; margin-bottom: 24px; }
body .contact-left p { font-size: 16px !important; color: var(--text-muted) !important; line-height: 1.9; margin-bottom: 20px; max-width: 480px; }
body .email-block { margin-top: 40px; padding: 32px; background: var(--bg-card) !important; border: 1px solid var(--border) !important; }
body .email-block .email-label { font-family: var(--mono) !important; font-size: 10px !important; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim) !important; margin-bottom: 10px; }
body .email-block a { font-size: 20px !important; font-weight: 600 !important; color: var(--accent) !important; }
body .contact-right h3 { font-family: var(--serif) !important; font-size: 22px !important; font-weight: 700 !important; margin-bottom: 24px; }
body .social-grid { display: grid !important; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 48px; }
body .social-link { display: flex !important; align-items: center; gap: 12px; padding: 20px 24px; background: var(--bg-card) !important; border: 1px solid var(--border) !important; transition: all 0.3s !important; font-size: 14px !important; font-weight: 500 !important; color: var(--text-muted) !important; }
body .social-link:hover { border-color: var(--accent) !important; color: var(--accent) !important; transform: translateY(-2px) !important; }
body .social-link svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.6; transition: opacity 0.3s !important; }
body .social-link:hover svg { opacity: 1 !important; }
body .inquiries { border-top: 1px solid var(--border); padding-top: 40px; }
body .inquiry-item { padding: 20px 0; border-bottom: 1px solid var(--border); }
body .inquiry-item:first-of-type { border-top: 1px solid var(--border); }
body .inquiry-item .inquiry-type { font-family: var(--mono) !important; font-size: 10px !important; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim) !important; margin-bottom: 6px; }
body .inquiry-item p { font-size: 14px !important; color: var(--text-muted) !important; }
body .inquiry-item a { color: var(--accent) !important; }

/* ==================== GHOST KOENIG CARDS ==================== */
body .kg-width-wide { position: relative; width: 85vw; min-width: 100%; margin: 32px calc(50% - 42.5vw); }
body .kg-width-full { position: relative; width: 100vw; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
body .kg-image-card { margin: 32px 0; }
body .kg-image-card figcaption { font-size: 13px !important; color: var(--text-dim) !important; text-align: center; margin-top: 12px; }
body .kg-bookmark-container { display: flex; border: 1px solid var(--border) !important; background: var(--bg-card) !important; }
body .kg-bookmark-title { font-family: var(--serif) !important; font-size: 17px !important; font-weight: 700 !important; color: var(--text) !important; }
body .kg-bookmark-description { font-size: 14px !important; color: var(--text-muted) !important; }
body .kg-embed-card { margin: 32px 0; }
body .kg-toggle-card { margin: 32px 0; background: var(--bg-card) !important; border: 1px solid var(--border) !important; padding: 24px; }
body .kg-callout-card { margin: 32px 0; padding: 24px; display: flex; gap: 16px; border: 1px solid var(--border) !important; background: var(--bg-card) !important; }
body .kg-btn-accent { background: var(--accent) !important; color: #fff !important; }
body .kg-gallery-row { display: flex; gap: 4px; }



/* Enhanced post content for episode pages */
body .post-content h3 { font-family: var(--serif) !important; font-size: 24px !important; font-weight: 700 !important; color: var(--text) !important; margin-top: 64px; margin-bottom: 20px; letter-spacing: -0.02em; }
body .post-content h3:first-child { margin-top: 0; }
body .post-content ul { list-style: none !important; padding-left: 0 !important; }
body .post-content ul li { position: relative; padding-left: 20px; font-size: 15px !important; color: var(--text-muted) !important; line-height: 1.8; margin-bottom: 10px; }
body .post-content ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
body .post-content ol { counter-reset: item; list-style: none !important; padding-left: 0 !important; }
body .post-content ol li { counter-increment: item; position: relative; padding-left: 32px; font-size: 15px !important; color: var(--text-muted) !important; line-height: 1.8; margin-bottom: 10px; }
body .post-content ol li::before { content: counter(item, decimal-leading-zero); position: absolute; left: 0; font-family: var(--mono) !important; font-size: 12px !important; color: var(--accent) !important; top: 2px; }
body .post-content strong { color: var(--text) !important; font-weight: 600 !important; }
body .post-content blockquote { border-left: 3px solid var(--accent); padding: 16px 24px; margin: 32px 0; background: var(--bg-card); }
body .post-content blockquote p { color: var(--text) !important; font-style: italic; }
body .post-content figure { margin: 32px 0; }
body .post-content figcaption { font-size: 13px !important; color: var(--text-dim) !important; text-align: center; margin-top: 12px; }

/* Ghost bookmark cards → styled as about-block profile cards */
body .post-content .kg-bookmark-card { margin: 16px 0; }
body .post-content .kg-bookmark-container {
  display: flex !important; flex-direction: row-reverse !important;
  background: var(--bg-card) !important; border: 1px solid var(--border) !important;
  overflow: hidden; transition: border-color 0.3s !important;
  text-decoration: none !important; padding: 32px 40px !important;
  gap: 24px; align-items: center;
}
body .post-content .kg-bookmark-container:hover { border-color: var(--border-accent) !important; }

/* Content (right side) */
body .post-content .kg-bookmark-content {
  padding: 0 !important; flex: 1; display: flex;
  flex-direction: column; justify-content: center;
}
body .post-content .kg-bookmark-title {
  font-family: var(--serif) !important; font-size: 18px !important;
  font-weight: 700 !important; color: var(--text) !important;
  margin-bottom: 8px; line-height: 1.3 !important;
}
body .post-content .kg-bookmark-description {
  font-size: 14px !important; color: var(--text-dim) !important;
  line-height: 1.7 !important; display: -webkit-box;
  -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* Metadata row → styled as role/label */
body .post-content .kg-bookmark-metadata {
  display: flex !important; align-items: center; gap: 8px;
  margin-top: 0 !important; margin-bottom: 8px; order: -1;
}
body .post-content .kg-bookmark-icon { display: none !important; }
body .post-content .kg-bookmark-author {
  font-family: var(--mono) !important; font-size: 10px !important;
  letter-spacing: 0.2em !important; text-transform: uppercase !important;
  color: var(--accent) !important;
}
body .post-content .kg-bookmark-publisher {
  font-family: var(--mono) !important; font-size: 10px !important;
  letter-spacing: 0.15em !important; text-transform: uppercase !important;
  color: var(--text-dim) !important; display: none !important;
}

/* Thumbnail (left side) → circular profile photo */
body .post-content .kg-bookmark-thumbnail {
  width: 80px !important; min-width: 80px !important;
  height: 80px !important; flex-shrink: 0;
  border-radius: 50% !important; overflow: hidden !important;
  border: 2px solid var(--border) !important;
}
body .post-content .kg-bookmark-thumbnail img {
  width: 100% !important; height: 100% !important;
  object-fit: cover !important; border-radius: 50% !important;
}

/* Two bookmark cards side by side after the <hr> separator */
@media (min-width: 769px) {
  body .post-content hr + h3 + figure.kg-bookmark-card {
    display: inline-block; width: calc(50% - 10px); vertical-align: top;
  }
  body .post-content hr + h3 + figure.kg-bookmark-card + h3 + figure.kg-bookmark-card {
    display: inline-block; width: calc(50% - 10px); vertical-align: top; margin-left: 16px;
  }
}

/* Ghost button cards in content (Listen links) */
body .post-content .kg-button-card { text-align: left !important; margin: 8px 0; }
body .post-content .kg-btn { font-family: var(--sans) !important; }


/* LISTEN BAR */
body .ep-listen-bar { display: flex !important; align-items: center; gap: 32px; padding: 24px 0; border-bottom: 1px solid var(--border); }
body .listen-label { font-family: var(--mono) !important; font-size: 10px !important; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim) !important; flex-shrink: 0; }
body .listen-options { display: flex !important; gap: 24px; }
body .listen-option { display: inline-flex !important; align-items: center; gap: 8px; font-size: 13px !important; font-weight: 500 !important; color: var(--text-muted) !important; transition: color 0.3s !important; cursor: pointer; }
body .listen-option svg { opacity: 0.5; transition: opacity 0.3s !important; }
body .listen-option:hover { color: var(--accent) !important; }
body .listen-option:hover svg { opacity: 1 !important; }
/* SUMMARY */
body .ep-summary-section { padding: 48px 0 0; max-width: 720px; }
body .ep-summary-section h3 { font-family: var(--serif) !important; font-size: 32px !important; font-weight: 700 !important; margin-bottom: 16px; letter-spacing: -0.02em; }
body .ep-summary-section p { font-size: 16px !important; color: var(--text-muted) !important; line-height: 2 !important; }

/* Specific em overrides per section */
body .hero h1 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .section-label h2 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .cta h2 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .about-host-text h2 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .featured-body h3 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .page-header h1 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .profile-hero-text h1 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .ep-hero-content h1 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .ep-section-header h2 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .bio-section h2 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .about-hero-text h1 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .about-host-content h2 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .contact-left h1 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .contact-right h3 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }


/* Guest page content wrapper */
body .guest-content { max-width: var(--container); margin: 0 auto; padding: 0 48px; }
body .guest-content .bio-section { padding: 80px 0 60px; max-width: 800px; }
body .guest-content .bio-section h2 { font-family: var(--serif) !important; font-size: 28px !important; font-weight: 700 !important; margin-bottom: 32px; letter-spacing: -0.02em; }
body .guest-content .bio-section h2 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }
body .guest-content .bio-section p { font-size: 16px !important; color: var(--text-muted) !important; line-height: 2 !important; margin-bottom: 24px; }
body .guest-content .bio-section p a { color: var(--accent) !important; }

/* Episode feature card on guest pages */
body .episode-feature { display: grid !important; grid-template-columns: 1fr 1.2fr; background: var(--bg-card) !important; border: 1px solid var(--border) !important; overflow: hidden; transition: border-color 0.4s !important; cursor: pointer; text-decoration: none !important; margin: 16px 0; }
body .episode-feature:hover { border-color: var(--border-accent) !important; }
body .episode-feature-img { position: relative; overflow: hidden; }
body .episode-feature-img img { width: 100% !important; height: 100% !important; object-fit: cover !important; transition: transform 0.6s !important; }
body .episode-feature:hover .episode-feature-img img { transform: scale(1.03) !important; }
body .episode-feature-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
body .ef-badge { font-family: var(--mono) !important; font-size: 11px !important; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent) !important; margin-bottom: 16px; }
body .episode-feature-body h3 { font-family: var(--serif) !important; font-size: 26px !important; font-weight: 700 !important; line-height: 1.2 !important; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--text) !important; }
body .episode-feature-body p { font-size: 15px !important; color: var(--text-muted) !important; line-height: 1.8 !important; margin-bottom: 28px; }
body .ep-listen { display: inline-flex !important; align-items: center; gap: 12px; font-weight: 700 !important; font-size: 12px !important; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent) !important; transition: gap 0.3s !important; }
body .ep-listen:hover { gap: 18px; }
body .ep-listen svg { transition: transform 0.3s !important; }

/* Episodes section header on guest pages */
body .guest-episodes-section { padding: 40px 0 80px; }
body .guest-episodes-header { margin-bottom: 32px; }
body .guest-episodes-header h2 { font-family: var(--serif) !important; font-size: 32px !important; font-weight: 700 !important; letter-spacing: -0.02em; }
body .guest-episodes-header h2 em { font-style: italic !important; color: var(--accent) !important; font-weight: 400 !important; }


/* ==================== NAV RIGHT ==================== */
body .nav-right { display: flex; align-items: center; gap: 16px; justify-self: end; }
body .nav-search { background: none !important; border: none !important; color: var(--text-muted) !important; cursor: pointer; padding: 8px; transition: color 0.3s !important; display: flex; align-items: center; }
body .nav-search:hover { color: var(--accent) !important; }


/* ==================== HAMBURGER + MOBILE MENU ==================== */
body .nav-hamburger { display: none; background: none !important; border: none !important; cursor: pointer; padding: 8px; width: 36px; height: 36px; position: relative; flex-shrink: 0; }
body .nav-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--text-muted); position: absolute; left: 8px; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); }
body .nav-hamburger span:nth-child(1) { top: 10px; }
body .nav-hamburger span:nth-child(2) { top: 17px; }
body .nav-hamburger span:nth-child(3) { top: 24px; }
body .nav-hamburger.active span:nth-child(1) { top: 17px; transform: rotate(45deg); background: var(--accent); }
body .nav-hamburger.active span:nth-child(2) { opacity: 0; }
body .nav-hamburger.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); background: var(--accent); }

body .mobile-menu { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99; background: rgba(6,8,6,0.97); backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px); opacity: 0; visibility: hidden; transition: opacity 0.35s, visibility 0.35s; display: flex; align-items: center; justify-content: center; }
body .mobile-menu.active { opacity: 1; visibility: visible; }
body .mobile-menu-inner { text-align: center; }
body .mobile-nav-links { list-style: none !important; padding: 0 !important; margin: 0 0 48px 0; }
body .mobile-nav-links li { margin-bottom: 8px; }
body .mobile-nav-links a { font-family: var(--serif) !important; font-size: 32px !important; font-weight: 700 !important; color: var(--text-muted) !important; transition: color 0.3s !important; letter-spacing: -0.02em; display: inline-block; padding: 8px 0; }
body .mobile-nav-links a:hover, body .mobile-nav-links a.active { color: var(--accent) !important; }
body .mobile-cta { font-size: 13px !important; font-weight: 700 !important; letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 40px; border: 1px solid var(--accent) !important; color: var(--accent) !important; background: transparent !important; font-family: var(--sans) !important; cursor: pointer; transition: all 0.3s !important; }
body .mobile-cta:hover { background: var(--accent) !important; color: #fff !important; }

/* ==================== SEARCH OVERLAY ==================== */
body .search-overlay { position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s; display: flex; align-items: flex-start; justify-content: center; padding-top: 12vh; }
body .search-overlay.active { opacity: 1; visibility: visible; }
body .search-container { width: 100%; max-width: 640px; margin: 0 24px; }
body .search-header { position: relative; }
body .search-input-wrap { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 16px 20px; transition: border-color 0.3s, background 0.3s; }
body .search-input-wrap:focus-within { border-color: var(--accent); background: rgba(255,255,255,0.08); }
body .search-icon { flex-shrink: 0; color: var(--text-dim); }
body .search-input { flex: 1; background: none !important; border: none !important; outline: none !important; font-size: 18px !important; font-family: var(--sans) !important; color: var(--text) !important; caret-color: var(--accent); }
body .search-input::placeholder { color: var(--text-dim) !important; }
body .search-kbd { font-family: var(--mono) !important; font-size: 10px !important; color: var(--text-dim) !important; border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; padding: 3px 8px; flex-shrink: 0; }

/* Search results */
body .search-results { margin-top: 12px; max-height: 60vh; overflow-y: auto; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent; }
body .search-results::-webkit-scrollbar { width: 4px; }
body .search-results::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 4px; }
body .search-empty { text-align: center; padding: 48px 20px; }
body .search-hint { font-size: 15px !important; color: var(--text-dim) !important; margin-bottom: 24px; }
body .search-shortcuts { display: flex; gap: 24px; justify-content: center; }
body .search-shortcuts span { font-size: 12px !important; color: var(--text-dim) !important; display: flex; align-items: center; gap: 6px; }
body .search-shortcuts kbd { font-family: var(--mono) !important; font-size: 10px !important; border: 1px solid rgba(255,255,255,0.15); border-radius: 3px; padding: 2px 6px; color: var(--text-muted) !important; }

/* Result groups */
body .search-group { margin-bottom: 8px; }
body .search-group-label { font-family: var(--mono) !important; font-size: 10px !important; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent) !important; padding: 12px 16px 8px; }
body .search-result { display: flex; align-items: center; gap: 16px; padding: 12px 16px; border-radius: 8px; cursor: pointer; transition: background 0.15s; text-decoration: none !important; }
body .search-result:hover, body .search-result.active { background: rgba(123,193,67,0.08); }
body .search-result-thumb { width: 48px; height: 48px; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: var(--bg-card); }
body .search-result-thumb.round { border-radius: 50%; }
body .search-result-info { flex: 1; min-width: 0; }
body .search-result-title { font-size: 15px !important; font-weight: 600 !important; color: var(--text) !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body .search-result-title mark { background: none; color: var(--accent) !important; font-weight: 700; }
body .search-result-meta { font-size: 12px !important; color: var(--text-dim) !important; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body .search-result-arrow { flex-shrink: 0; color: var(--text-dim); opacity: 0; transition: opacity 0.2s; }
body .search-result:hover .search-result-arrow, body .search-result.active .search-result-arrow { opacity: 1; }
body .search-no-results { text-align: center; padding: 40px 20px; }
body .search-no-results p { font-size: 15px !important; color: var(--text-dim) !important; }
body .search-loading { text-align: center; padding: 40px 20px; color: var(--text-dim) !important; font-size: 14px; }

/* ==================== RESPONSIVE ==================== */
@media(max-width:1100px){ body .guests-gallery { grid-template-columns: repeat(3,1fr) !important; } }
@media(max-width:960px){
  body .chapters-takeaways-grid { grid-template-columns: 1fr !important; gap: 60px !important; }
  body .hero { grid-template-columns: 1fr !important; min-height: auto; }
  body .hero-visual { height: 55vh; }
  body .hero-text { padding: 0 32px 60px; margin-top: -80px; position: relative; z-index: 3; }
  body .hero-img-overlay { background: linear-gradient(to top, var(--bg) 0%, var(--bg) 5%, rgba(6,8,6,0.85) 25%, rgba(6,8,6,0.4) 50%, transparent 70%) !important; }
  body .featured-card { grid-template-columns: 1fr !important; }
  body .episodes-grid { grid-template-columns: repeat(2,1fr) !important; }
  body .guests-gallery { grid-template-columns: repeat(2,1fr) !important; }
  body .about-host { grid-template-columns: 1fr !important; }
  body .about-host-img { height: 400px; }
  body .about-host-img .img-fade { background: linear-gradient(to top, var(--bg) 0%, transparent 30%) !important; }
  body .show-info { grid-template-columns: 1fr !important; }
  body .show-info-item { border-right: none; border-bottom: 1px solid var(--border); }
  body .stats-bar { grid-template-columns: 1fr !important; }
  body .stat { border-right: none; border-bottom: 1px solid var(--border); }
  body .stat:last-child { border-bottom: none; }
  body .ep-hero { padding: 100px 24px 0; }
  body .ep-content { padding: 0 24px !important; }
  body .ep-meta-row { flex-wrap: wrap !important; gap: 16px !important; }
  body .ep-hero-cover { max-width: 480px; }
  body .about-blocks { grid-template-columns: 1fr !important; padding: 0 24px 80px; }
  body .profile-hero { grid-template-columns: 1fr !important; padding: 80px 0 0; overflow: visible; }
  body .profile-hero-img { max-width: none; }
  body .profile-hero-img img { aspect-ratio: 4/5; }
  body .profile-hero-img .fade { background: linear-gradient(to top, var(--bg) 0%, var(--bg) 5%, rgba(6,8,6,0.85) 25%, rgba(6,8,6,0.4) 50%, transparent 70%), linear-gradient(to right, var(--bg) 0%, transparent 15%, transparent 85%, var(--bg) 100%) !important; }
  body .profile-hero-text { padding: 0 32px 60px; margin-top: -140px; position: relative; z-index: 3; }
  body .about-hero { grid-template-columns: 1fr !important; gap: 40px; padding: 120px 32px 60px; }
  body .about-hero-visual { order: -1; max-width: 400px; }
  body .mission-grid { grid-template-columns: 1fr !important; }
  body .about-host-section { grid-template-columns: 1fr !important; gap: 40px; padding: 80px 32px; }
  body .about-host-photo { max-width: 320px; }
  body .about-stats { grid-template-columns: 1fr !important; }
  body .contact-page { grid-template-columns: 1fr !important; gap: 60px; padding: 120px 32px 80px; }
}
@media(max-width:640px){
  body .ep-content { padding: 0 20px !important; }
  body .ep-listen-bar { flex-direction: column !important; align-items: flex-start !important; gap: 16px !important; }
  body nav { padding: 14px 20px; }
  body .nav-links { display: none !important; }
  body .nav-cta { display: none !important; }
  body .nav-hamburger { display: block !important; }
  body .nav-inner { grid-template-columns: auto 1fr !important; }
  body .nav-right { justify-self: end !important; }
  body .section-label { padding: 64px 20px 32px; flex-direction: column !important; align-items: flex-start; }
  body .section-label p { text-align: left !important; }
  body .featured { padding: 0 20px 32px; }
  body .featured-body { padding: 28px; }
  body .episodes-grid { grid-template-columns: 1fr !important; padding: 0 20px 24px; gap: 16px; }
  body .episodes-grid.full-bottom { padding-bottom: 80px; }
  body .guests-gallery { grid-template-columns: repeat(2,1fr) !important; padding: 0 20px 24px; gap: 12px; }
  body .guests-gallery.full-bottom { padding-bottom: 80px; }
  body .view-all-wrap { padding: 0 20px 80px; }
  body .about-host-text { padding: 48px 20px; }
  body .page-header { padding: 100px 20px 40px; }
  body .profile-hero { padding: 70px 0 0; }
  body .profile-hero-text { padding: 0 20px 40px; margin-top: -120px; }
  body .bio-section { padding: 40px 20px 60px; }
  body .guest-content { padding: 0 20px !important; }
  body .episode-feature { grid-template-columns: 1fr !important; }
  body .episode-feature-body { padding: 28px !important; }
  body .episodes-section { padding: 0 20px 60px; }
  body .post-content { padding: 60px 20px; }
  body .about-blocks { padding: 0 20px 60px; }
  body .about-block { flex-direction: column !important; align-items: center; text-align: center; }
  body .about-hero { padding: 100px 20px 40px; }
  body .mission { padding: 0 20px 60px; }
  body .about-host-section { padding: 60px 20px; }
  body .about-stats { padding: 0 20px 60px; }
  body .contact-page { padding: 100px 20px 60px; gap: 48px; }
  body .social-grid { grid-template-columns: 1fr !important; }
  body .cta { padding: 80px 20px; }
  body .cta-form { flex-direction: column; }
  body .cta-form input { border-right: 1px solid var(--border) !important; }
  body .platforms { flex-wrap: wrap; gap: 16px; }
  body footer { padding: 28px 20px; }
  body .footer-inner { display: flex !important; flex-direction: column !important; gap: 20px; text-align: center; }
  body .footer-links { flex-wrap: wrap; justify-content: center; }
  body .footer-logo { justify-self: center !important; }
  body .footer-copy { justify-self: center !important; }
}

/* Ghost portal z-index fix */
.gh-portal-triggerbtn-iframe { z-index: 998 !important; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
