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

:root {
  --pink: #ff026f;
  --pink-dark: #d4005c;
  --pink-glow: rgba(255,2,111,0.15);
  --blue: #118df0;
  --blue-dark: #0d72c4;
  --blue-glow: rgba(17,141,240,0.12);
  --dark: #0a0a1a;
  --gray-900: #1a1a2e;
  --gray-800: #2d2d44;
  --gray-600: #6b6b80;
  --gray-400: #9999aa;
  --gray-200: #e0e0ea;
  --gray-100: #f4f4f8;
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-pink: 0 8px 32px rgba(255,2,111,0.2);
  --shadow-blue: 0 8px 32px rgba(17,141,240,0.2);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--gray-900); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== HEADER / NAV ===== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.92); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid rgba(0,0,0,0.06); transition: all 0.3s; }
.site-header.scrolled { box-shadow: 0 1px 20px rgba(0,0,0,0.08); }
.nav-container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo a { display: flex; align-items: center; }
.nav-logo svg, .logo-svg { height: 38px; width: auto; }
.nav-logo-img { max-height: 44px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-menu li { position: relative; }
.nav-link { font-size: 0.9rem; font-weight: 700; color: var(--gray-600); transition: color 0.2s; letter-spacing: -0.01em; }
.nav-link:hover, .nav-link.active { color: var(--pink); }

/* Dropdown */
.nav-item-more { position: relative; }
.dropdown-trigger { font-size: 0.9rem; font-weight: 700; color: var(--gray-600); transition: color 0.2s; letter-spacing: -0.01em; background: none; border: none; cursor: pointer; font-family: var(--font); display: flex; align-items: center; gap: 4px; }
.dropdown-trigger:hover { color: var(--pink); }
.dropdown-icon { transition: transform 0.2s; }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%); background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 8px 0; min-width: 180px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: all 0.2s; pointer-events: none; list-style: none; z-index: 100; }
.dropdown-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; background: transparent; }
.nav-item-more:hover .dropdown-menu, .dropdown-menu.active { opacity: 1; visibility: visible; pointer-events: auto; }
.nav-item-more:hover .dropdown-icon, .nav-item-more .dropdown-icon.open { transform: rotate(180deg); }
.dropdown-link { display: block; padding: 10px 20px; font-size: 0.85rem; font-weight: 600; color: var(--gray-600); transition: all 0.2s; }
.dropdown-link:hover { color: var(--pink); background: var(--gray-100); }

/* Mobile Toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--dark); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* ===== MAIN ===== */
main { padding-top: 72px; }

/* ===== HERO ===== */
.hero-section { background: var(--dark); color: white; padding: 100px 0 120px; position: relative; overflow: hidden; }
.hero-section::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%); border-radius: 50%; }
.hero-section::after { content: ''; position: absolute; bottom: -200px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, var(--blue-glow) 0%, transparent 70%); border-radius: 50%; }
.hero-container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; text-align: center; }
.hero-title { font-size: 4rem; font-weight: 900; line-height: 1.05; margin-bottom: 24px; letter-spacing: -0.04em; }
.hero-gradient { background: linear-gradient(135deg, var(--pink), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.2rem; opacity: 0.65; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; font-weight: 400; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-button { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; border-radius: 50px; font-weight: 800; font-size: 0.9rem; cursor: pointer; border: none; transition: all 0.25s; letter-spacing: 0.01em; font-family: var(--font); }
.cta-primary { background: var(--pink); color: white; }
.cta-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: var(--shadow-pink); }
.cta-secondary { background: rgba(255,255,255,0.08); color: white; border: 1px solid rgba(255,255,255,0.2); }
.cta-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }

/* ===== STATS BAR ===== */
.stats-bar { padding: 0; }
.stats-container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: repeat(4, 1fr); background: var(--white); border-radius: 20px; box-shadow: var(--shadow-lg); margin-top: -60px; position: relative; z-index: 2; overflow: hidden; }
.stat-item { padding: 36px 28px; text-align: center; position: relative; }
.stat-item::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--gray-200); }
.stat-item:last-child::after { display: none; }
.stat-number { font-size: 2.8rem; font-weight: 900; letter-spacing: -0.03em; background: linear-gradient(135deg, var(--pink), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.8rem; color: var(--gray-400); margin-top: 4px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

/* ===== SECTIONS ===== */
section { padding: 80px 0; }
.section-container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section-title { font-size: 2.4rem; font-weight: 900; color: var(--dark); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 40px; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.section-header .section-title { margin-bottom: 0; }
.section-link { font-size: 0.9rem; font-weight: 800; color: var(--blue); transition: all 0.2s; }
.section-link:hover { color: var(--pink); }

/* ===== FEATURED EPISODE ===== */
.featured-episode-section { padding-top: 120px; }
.featured-episode { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; background: var(--dark); border-radius: 24px; padding: 48px; color: white; overflow: hidden; position: relative; }
.featured-episode::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%); }
.featured-episode-image { position: relative; border-radius: 16px; overflow: hidden; }
.featured-episode-image img { width: 100%; height: auto; border-radius: 16px; }
.featured-episode-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.3s; }
.featured-episode-image:hover .featured-episode-play { opacity: 1; }
.featured-episode-content { position: relative; z-index: 1; }
.featured-episode-badge { display: inline-block; font-size: 0.75rem; font-weight: 800; color: var(--pink); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.featured-episode-title { font-size: 1.8rem; font-weight: 900; margin-bottom: 12px; letter-spacing: -0.02em; }
.featured-episode-date { font-size: 0.85rem; opacity: 0.5; margin-bottom: 16px; }
.featured-episode-description { font-size: 0.95rem; opacity: 0.65; line-height: 1.7; margin-bottom: 20px; }
.featured-episode-host { font-size: 0.9rem; opacity: 0.5; margin-bottom: 20px; }
.featured-episode-link { display: inline-flex; align-items: center; gap: 6px; color: var(--pink); font-weight: 800; font-size: 0.9rem; transition: gap 0.2s; }
.featured-episode-link:hover { gap: 10px; }

/* ===== EPISODES GRID ===== */
.episodes-grid { display: flex; flex-direction: column; gap: 12px; }
.episode-item { display: flex; align-items: center; gap: 20px; padding: 20px 24px; background: white; border: 1px solid var(--gray-200); border-radius: var(--radius); transition: all 0.3s; }
.episode-item:hover { border-color: var(--pink); box-shadow: 0 4px 20px rgba(255,2,111,0.08); transform: translateX(4px); }
.episode-number { width: 52px; height: 52px; flex-shrink: 0; }
.episode-badge { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: linear-gradient(135deg, var(--pink-glow), var(--blue-glow)); color: var(--pink); border-radius: 14px; font-weight: 900; font-size: 0.85rem; }
.episode-info { flex: 1; }
.episode-title { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.episode-title a { color: inherit; transition: color 0.2s; }
.episode-title a:hover { color: var(--pink); }
.episode-meta { display: flex; gap: 16px; font-size: 0.82rem; color: var(--gray-400); font-weight: 600; margin-bottom: 8px; }
.episode-description { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 8px; }
.episode-tags { display: flex; gap: 8px; margin-bottom: 8px; }
.episode-tag { padding: 4px 12px; background: var(--gray-100); border-radius: 50px; font-size: 0.75rem; font-weight: 700; color: var(--gray-600); }
.episode-listen { display: inline-flex; align-items: center; gap: 8px; color: var(--pink); font-weight: 800; font-size: 0.85rem; transition: gap 0.2s; }
.episode-listen:hover { gap: 12px; }
.episode-play-icon { flex-shrink: 0; }

/* ===== NEWS / POST CARDS ===== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-card-image { height: 210px; overflow: hidden; }
.post-card-image img { width: 100%; height: 100%; object-fit: cover; }
.post-card-image-placeholder { display: flex; align-items: center; justify-content: center; background: var(--gray-100); }
.post-card-content { padding: 24px; }
.post-card-tags { margin-bottom: 10px; }
.post-card-tag { font-size: 0.75rem; font-weight: 800; color: var(--pink); text-transform: uppercase; letter-spacing: 0.05em; }
.post-card-title { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; line-height: 1.35; }
.post-card-title a { color: inherit; transition: color 0.2s; }
.post-card-title a:hover { color: var(--pink); }
.post-card-excerpt { font-size: 0.9rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 14px; }
.post-card-meta { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 14px; font-weight: 600; }
.post-card-link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.85rem; font-weight: 800; color: var(--pink); transition: gap 0.2s; }
.post-card-link:hover { gap: 8px; }

/* ===== QUICK HITS ===== */
.quick-hits-section { background: var(--gray-100); }
.quick-hits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.quick-hit-card { background: white; border-radius: var(--radius); padding: 28px; border: 1px solid var(--gray-200); transition: all 0.3s; }
.quick-hit-card:hover { box-shadow: var(--shadow); border-color: transparent; }
.quick-hit-title { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.quick-hit-excerpt { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 12px; }
.quick-hit-link { font-size: 0.85rem; font-weight: 800; color: var(--pink); }

/* ===== EVENTS PREVIEW (Homepage) ===== */
.events-preview-section { }
.events-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.event-card-preview { background: white; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.3s; }
.event-card-preview:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.event-card-preview.past-event { opacity: 0.5; display: none; }
.event-card-preview-image { height: 180px; overflow: hidden; }
.event-card-preview-image img { width: 100%; height: 100%; object-fit: cover; }
.event-card-preview-content { padding: 20px; }
.event-card-preview-title { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.event-card-preview-title a { color: inherit; }
.event-card-preview-title a:hover { color: var(--pink); }
.event-preview-date { display: block; font-size: 0.82rem; color: var(--pink); font-weight: 700; margin-bottom: 6px; }
.event-preview-location { display: block; font-size: 0.8rem; color: var(--gray-400); font-weight: 600; margin-bottom: 12px; }
.event-card-link { font-size: 0.85rem; font-weight: 800; color: var(--pink); }

/* ===== NEWSLETTER ===== */
.newsletter-section { background: var(--dark); position: relative; overflow: hidden; padding: 100px 0; }
.newsletter-section::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle, rgba(255,2,111,0.08) 0%, transparent 60%); }
.newsletter-container { max-width: 600px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; text-align: center; color: white; }
.newsletter-title { font-size: 2.8rem; font-weight: 900; margin-bottom: 16px; letter-spacing: -0.03em; }
.newsletter-subtitle { opacity: 0.5; margin-bottom: 36px; font-size: 1.05rem; line-height: 1.7; }
.newsletter-form { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.newsletter-input-group { display: flex; gap: 12px; width: 100%; max-width: 520px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 60px; padding: 6px; backdrop-filter: blur(8px); }
.newsletter-input { flex: 1; padding: 16px 24px; border-radius: 60px; border: none; font-size: 0.95rem; font-family: var(--font); font-weight: 500; background: transparent; color: white; outline: none; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-button { border-radius: 60px; padding: 16px 36px; font-size: 0.85rem; font-weight: 800; background: var(--pink); color: white; border: none; cursor: pointer; transition: all 0.2s; font-family: var(--font); }
.newsletter-button:hover { background: var(--pink-dark); }
.newsletter-message { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.newsletter-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-top: 16px; font-weight: 600; }

/* ===== PARTNERS ===== */
.partners-section { background: var(--gray-100); }
.partners-grid { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.partner-logo { background: white; border: 1px solid var(--gray-200); border-radius: 12px; padding: 24px 32px; font-size: 0.85rem; font-weight: 600; color: var(--gray-400); min-width: 140px; text-align: center; }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: white; padding: 72px 0 36px; }
.footer-content { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo svg, .footer-logo .logo-svg { height: 32px; width: auto; }
.footer-logo-img { max-height: 40px; width: auto; }
.footer-tagline { font-size: 0.9rem; opacity: 0.4; line-height: 1.7; max-width: 280px; }
.footer-title { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; opacity: 0.35; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.9rem; opacity: 0.55; transition: all 0.2s; font-weight: 500; }
.footer-links a:hover { opacity: 1; color: var(--pink); }
.footer-social { list-style: none; display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social li a { display: inline-flex; padding: 8px 16px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; font-size: 0.85rem; opacity: 0.55; transition: all 0.2s; }
.footer-social li a:hover { background: var(--pink); border-color: var(--pink); opacity: 1; }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 28px; display: flex; justify-content: space-between; font-size: 0.82rem; opacity: 0.3; font-weight: 500; }
.footer-copyright { }
.footer-credit a { color: var(--pink); opacity: 1; }

/* ===== POST ARTICLE ===== */
.post-article { }
.post-header { padding-bottom: 40px; }
.post-container { max-width: 800px; margin: 0 auto; padding: 0 28px; }
.post-tags-top { margin-bottom: 16px; display: flex; gap: 8px; }
.post-tag-link { font-size: 0.75rem; font-weight: 800; color: var(--pink); text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 12px; background: var(--pink-glow); border-radius: 50px; }
.post-title { font-size: 2.8rem; font-weight: 900; color: var(--dark); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 16px; }
.post-meta-line { display: flex; gap: 16px; font-size: 0.85rem; color: var(--gray-400); font-weight: 600; margin-bottom: 20px; }
.post-excerpt { font-size: 1.15rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }
.post-feature-image { margin: 32px auto; max-width: 1000px; }
.post-feature-image img { width: 100%; border-radius: var(--radius); }
.post-content-wrapper { padding: 40px 0 60px; }
.post-body { font-size: 1.05rem; line-height: 1.8; color: var(--gray-800); }
.post-body h2 { font-size: 1.8rem; font-weight: 800; margin: 40px 0 16px; color: var(--dark); }
.post-body h3 { font-size: 1.4rem; font-weight: 800; margin: 32px 0 12px; color: var(--dark); }
.post-body p { margin-bottom: 20px; }
.post-body img { border-radius: var(--radius-sm); margin: 24px 0; }
.post-body a { color: var(--pink); font-weight: 600; text-decoration: underline; }
.post-body blockquote { border-left: 4px solid var(--pink); padding-left: 24px; margin: 24px 0; font-style: italic; color: var(--gray-600); }
.post-body ul, .post-body ol { margin: 16px 0; padding-left: 28px; }
.post-body li { margin-bottom: 8px; }

/* Author Bio */
.post-author-bio { display: flex; gap: 20px; align-items: center; padding: 32px; background: var(--gray-100); border-radius: var(--radius); margin-top: 48px; }
.author-bio-image { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-bio-name { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.author-bio-text { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* Post Navigation */
.post-navigation { padding: 40px 0; border-top: 1px solid var(--gray-200); }
.post-navigation .post-container { display: flex; justify-content: space-between; gap: 20px; }
.post-nav-prev, .post-nav-next { display: flex; flex-direction: column; gap: 4px; max-width: 45%; }
.post-nav-next { text-align: right; margin-left: auto; }
.nav-label { font-size: 0.78rem; font-weight: 700; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; }
.nav-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); transition: color 0.2s; }
.nav-title:hover { color: var(--pink); }

/* Related Posts */
.related-posts-section { padding: 60px 0; background: var(--gray-100); }
.related-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== PAGE ARTICLE ===== */
.page-article { }
.page-header .page-container { max-width: 800px; margin: 0 auto; padding: 0 28px; }
.page-title { font-size: 2.8rem; font-weight: 900; color: var(--dark); letter-spacing: -0.03em; margin-bottom: 24px; padding-top: 40px; }
.page-feature-image { max-width: 1000px; margin: 0 auto; }
.page-feature-image img { width: 100%; border-radius: var(--radius); }
.page-content-wrapper { padding: 40px 0 80px; }
.page-container { max-width: 800px; margin: 0 auto; padding: 0 28px; }
.page-body { font-size: 1.05rem; line-height: 1.8; color: var(--gray-800); }
.page-body h2 { font-size: 1.8rem; font-weight: 800; margin: 40px 0 16px; color: var(--dark); }
.page-body p { margin-bottom: 20px; }

/* ===== TAG / AUTHOR ARCHIVE ===== */
.tag-archive-header, .author-archive-header { background: var(--dark); color: white; padding: 64px 0 56px; text-align: center; }
.tag-title, .author-name { font-size: 3rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; }
.tag-description, .author-bio { font-size: 1.05rem; opacity: 0.5; max-width: 550px; margin: 0 auto 12px; }
.tag-count, .author-post-count { font-size: 0.85rem; opacity: 0.35; font-weight: 600; }
.author-profile-image { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 20px; object-fit: cover; }
.author-social-links { display: flex; gap: 12px; justify-content: center; margin: 16px 0; }
.author-social-link { opacity: 0.5; transition: opacity 0.2s; }
.author-social-link:hover { opacity: 1; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 48px 0; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 16px; padding: 20px 0 60px; }
.pagination-prev, .pagination-next { font-weight: 700; color: var(--pink); font-size: 0.9rem; }
.pagination-info { font-size: 0.85rem; color: var(--gray-400); font-weight: 600; }

/* ===== CUSTOM PAGE TEMPLATES ===== */
.custom-page-header { background: var(--dark); color: white; padding: 64px 0 56px; text-align: center; }
.custom-page-header .page-title { color: white; padding-top: 0; }
.page-subtitle { font-size: 1.1rem; opacity: 0.5; max-width: 550px; margin: 0 auto; }

/* Filter Bars */
.podcast-filters-section, .events-filters-section, .jobs-filters-section { padding: 24px 0; }
.filters-bar { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-button { padding: 10px 22px; border-radius: 50px; font-size: 0.8rem; font-weight: 800; border: 2px solid var(--gray-200); background: white; color: var(--gray-600); cursor: pointer; transition: all 0.2s; font-family: var(--font); }
.filter-button.filter-active, .filter-button:hover { background: var(--pink); color: white; border-color: var(--pink); }

/* Episodes List */
.episodes-list { display: flex; flex-direction: column; gap: 12px; padding: 20px 0 60px; }

/* Guests Grid */
.guests-search-section { padding: 24px 0 0; }
.guests-search-input { width: 100%; padding: 14px 24px; border: 2px solid var(--gray-200); border-radius: 50px; font-size: 0.95rem; font-family: var(--font); transition: border-color 0.2s; }
.guests-search-input:focus { outline: none; border-color: var(--pink); }
.guests-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 32px 0 60px; }
.guest-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--gray-200); transition: all 0.3s; }
.guest-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.guest-card-image { width: 100%; height: 200px; object-fit: cover; }
.guest-card-image-placeholder { height: 200px; display: flex; align-items: center; justify-content: center; background: var(--gray-100); }
.guest-card-content { padding: 20px; text-align: center; }
.guest-card-name { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.guest-card-role { font-size: 0.85rem; color: var(--gray-600); margin-bottom: 12px; }
.guest-card-tags { display: flex; gap: 6px; justify-content: center; margin-bottom: 12px; }
.guest-card-tag { padding: 3px 10px; background: var(--gray-100); border-radius: 50px; font-size: 0.7rem; font-weight: 700; color: var(--gray-600); }
.guest-card-link { font-size: 0.85rem; font-weight: 800; color: var(--pink); }

/* Events Section */
.events-section { padding: 20px 0 60px; }
.events-filter-bar { display: flex; gap: 8px; margin-bottom: 32px; }
.events-filter-btn { padding: 10px 24px; border: 2px solid var(--gray-200); border-radius: 50px; font-size: 0.85rem; font-weight: 700; font-family: var(--font); background: white; color: var(--gray-600); cursor: pointer; transition: all 0.2s; }
.events-filter-btn:hover { border-color: var(--pink); color: var(--pink); }
.events-filter-btn.active { background: var(--pink); border-color: var(--pink); color: white; }
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-card { display: flex; background: white; border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.event-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-2px); }
.event-card.past-event { opacity: 0.6; }
.event-card.past-event:hover { opacity: 1; }
.event-card-image { width: 200px; min-height: 160px; flex-shrink: 0; overflow: hidden; }
.event-card-image img { width: 100%; height: 100%; object-fit: cover; }
.event-card-body { display: flex; align-items: center; gap: 20px; padding: 24px; flex: 1; }
.event-date-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--pink); color: white; padding: 14px 12px; border-radius: 12px; min-width: 72px; flex-shrink: 0; }
.event-date-month { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.event-date-day { font-size: 1.8rem; font-weight: 900; line-height: 1.1; }
.event-date-year { font-size: 0.68rem; font-weight: 600; opacity: 0.85; }
.past-event .event-date-badge { background: var(--gray-400); }
.event-card-info { flex: 1; }
.event-card-title { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.event-card-title a { color: inherit; }
.event-card-title a:hover { color: var(--pink); }
.event-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 8px; }
.event-date-display { font-size: 0.85rem; color: var(--gray-500); font-weight: 600; }
.event-location { font-size: 0.85rem; color: var(--gray-400); font-weight: 600; }
.event-location::before { content: '📍 '; }
.event-status-badge span { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; }
.event-status-upcoming { background: #e6f9ee; color: #0a8a3e; }
.event-status-today { background: #fff3e0; color: #e65100; }
.event-status-past { background: var(--gray-100); color: var(--gray-400); }
.event-card-action { flex-shrink: 0; }
.event-link-btn { font-size: 0.85rem; font-weight: 800; color: var(--pink); white-space: nowrap; }
.events-empty { text-align: center; color: var(--gray-400); font-size: 1rem; padding: 40px 0; }

/* Jobs Board */
.jobs-search-input { flex: 1; min-width: 200px; padding: 12px 20px; border: 2px solid var(--gray-200); border-radius: 50px; font-size: 0.9rem; font-family: var(--font); }
.jobs-search-input:focus { outline: none; border-color: var(--pink); }
.jobs-filter-select { padding: 12px 20px; border: 2px solid var(--gray-200); border-radius: 50px; font-size: 0.9rem; font-family: var(--font); background: white; cursor: pointer; }
.jobs-list { display: flex; flex-direction: column; gap: 12px; padding: 20px 0 60px; }
.job-listing { display: flex; align-items: center; gap: 20px; padding: 24px; background: white; border: 1px solid var(--gray-200); border-radius: 16px; transition: all 0.3s; }
.job-listing:hover { border-color: var(--pink); box-shadow: 0 4px 20px rgba(255,2,111,0.08); }
.job-listing-content { flex: 1; }
.job-title { font-weight: 800; color: var(--dark); font-size: 1.05rem; margin-bottom: 6px; }
.job-excerpt { font-size: 0.9rem; color: var(--gray-600); line-height: 1.5; margin-bottom: 8px; }
.job-tags { display: flex; gap: 6px; margin-bottom: 8px; }
.job-tag { padding: 3px 10px; background: var(--blue-glow); border-radius: 50px; font-size: 0.7rem; font-weight: 700; color: var(--blue); }
.job-meta { font-size: 0.82rem; color: var(--gray-400); font-weight: 600; }
.job-view-link { color: var(--pink); font-weight: 800; font-size: 0.9rem; white-space: nowrap; }

/* About Page */
.about-hero-section { background: var(--dark); color: white; padding: 64px 0 56px; text-align: center; }
.about-title { font-size: 3rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; }
.about-subtitle { font-size: 1.1rem; opacity: 0.5; max-width: 600px; margin: 0 auto; }
.about-content-section { padding: 60px 0; }
.about-content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.about-content-main h2 { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin: 32px 0 16px; }
.about-content-main h2:first-child { margin-top: 0; }
.about-content-main p { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.about-list { padding-left: 24px; margin-bottom: 24px; }
.about-list li { color: var(--gray-600); margin-bottom: 8px; line-height: 1.6; }
.about-sidebar { }
.about-card { background: var(--gray-100); border-radius: var(--radius); padding: 28px; }
.about-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.stats-list { display: flex; flex-direction: column; gap: 16px; }
.stat-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--gray-200); }
.stat-row:last-child { border-bottom: none; }
.stat-value { font-weight: 800; color: var(--pink); }

/* Team Section */
.team-section { padding: 60px 0; background: var(--gray-100); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: white; border-radius: 20px; padding: 32px; text-align: center; border: 1px solid var(--gray-200); transition: all 0.3s; }
.team-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.team-card-image { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px; object-fit: cover; }
.team-card-image-placeholder { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px; overflow: hidden; }
.team-card-name { font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.team-card-bio { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* Contact Section */
.contact-section { padding: 60px 0; }
.contact-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { }
.form-label { display: block; font-size: 0.82rem; font-weight: 800; color: var(--gray-800); margin-bottom: 8px; }
.form-input, .form-textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.95rem; font-family: var(--font); transition: border-color 0.2s; background: white; }
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--pink); }
.form-textarea { height: 140px; resize: vertical; }
.form-button { padding: 14px 28px; background: var(--pink); color: white; border: none; border-radius: 50px; font-weight: 800; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; font-family: var(--font); }
.form-button:hover { background: var(--pink-dark); }
.contact-info h3 { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.contact-info p { color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail strong { display: block; font-size: 0.85rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.contact-social { display: flex; gap: 12px; }
.contact-social a { color: var(--blue); font-weight: 700; }

/* Start Here */
.start-here-hero { background: var(--dark); color: white; padding: 64px 0 56px; text-align: center; }
.start-here-title { font-size: 3rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 12px; }
.start-here-subtitle { font-size: 1.1rem; opacity: 0.5; max-width: 600px; margin: 0 auto; }
.start-here-content { padding: 60px 0; }
.start-here-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }
.start-here-main h2 { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin: 32px 0 16px; }
.start-here-main h2:first-child { margin-top: 0; }
.start-here-main p { color: var(--gray-600); line-height: 1.8; margin-bottom: 20px; }
.start-here-steps { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.step-card { background: var(--gray-100); border-radius: var(--radius); padding: 28px; display: flex; gap: 20px; }
.step-number { width: 44px; height: 44px; background: var(--pink); color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }
.step-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.step-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 8px; }
.step-link { font-size: 0.85rem; font-weight: 800; color: var(--pink); }
.featured-content-list { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.featured-content-item h3 { font-size: 1.1rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.featured-list { list-style: none; }
.featured-list li { padding: 8px 0; border-bottom: 1px solid var(--gray-200); display: flex; justify-content: space-between; gap: 12px; }
.featured-list li a { font-weight: 600; color: var(--gray-800); transition: color 0.2s; }
.featured-list li a:hover { color: var(--pink); }
.featured-date { font-size: 0.82rem; color: var(--gray-400); font-weight: 600; white-space: nowrap; }
.faq-section { margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { padding: 16px 0; font-weight: 700; color: var(--dark); cursor: pointer; font-size: 1rem; }
.faq-answer { padding: 0 0 16px; font-size: 0.95rem; color: var(--gray-600); line-height: 1.7; }
.faq-answer a { color: var(--pink); font-weight: 600; }
.start-here-sidebar { }
.sidebar-card { background: var(--gray-100); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.sidebar-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.sidebar-card p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 12px; }
.sidebar-links { list-style: none; }
.sidebar-links li { margin-bottom: 10px; }
.sidebar-links a { font-size: 0.9rem; color: var(--gray-800); font-weight: 600; transition: color 0.2s; }
.sidebar-links a:hover { color: var(--pink); }
.sidebar-social { display: flex; gap: 12px; }
.sidebar-social a { color: var(--blue); font-weight: 700; font-size: 0.9rem; }

/* ===== GHOST CONTENT WIDTH CLASSES ===== */
.kg-width-wide { max-width: 1040px; margin-left: auto; margin-right: auto; }
.kg-width-full { max-width: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .guests-grid { grid-template-columns: repeat(2, 1fr); }
  .event-card { flex-direction: column; }
  .event-card-image { width: 100%; min-height: 180px; }
}
@media (max-width: 900px) {
  .news-grid, .related-posts-grid, .posts-grid { grid-template-columns: 1fr; }
  .about-content-grid, .contact-content-grid, .start-here-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .featured-episode { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .stats-container { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2)::after { display: none; }
  .section-title { font-size: 2rem; }
  .quick-hits-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .featured-content-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .nav-menu.active { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: white; padding: 20px 28px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--gray-200); }
  .stats-container { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
  .newsletter-input-group { flex-direction: column; border-radius: 20px; padding: 12px; }
  .newsletter-input { padding: 14px 18px; }
  .newsletter-button { border-radius: 50px; width: 100%; }
  .hero-section { padding: 60px 0 80px; }
  .hero-title { font-size: 2.2rem; }
  .newsletter-title { font-size: 2rem; }
  .footer-content { grid-template-columns: 1fr; }
  .guests-grid { grid-template-columns: 1fr; }
  .event-card-body { flex-direction: column; align-items: flex-start; }
  .event-date-badge { flex-direction: row; gap: 6px; padding: 8px 14px; min-width: auto; }
  .event-date-day { font-size: 1.1rem; }
  .events-filter-bar { flex-wrap: wrap; }
  .post-title { font-size: 2rem; }
}

/* ===== Buzzsprout Player Embed ===== */
.buzzsprout-section {
  padding: 60px 0;
  background: var(--gray-50);
}
.buzzsprout-section.buzzsprout-full {
  padding: 40px 0 80px;
  background: white;
}
.buzzsprout-player-wrapper {
  background: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.buzzsprout-section.buzzsprout-full .buzzsprout-player-wrapper {
  box-shadow: none;
  padding: 0;
}
.buzzsprout-player-wrapper iframe {
  width: 100% !important;
  border-radius: 12px;
}
@media (max-width: 600px) {
  .buzzsprout-player-wrapper { padding: 12px; border-radius: 12px; }
  .buzzsprout-section { padding: 40px 0; }
}

/* ===== Page Content (editable from Ghost Admin) ===== */
.page-content-section {
  padding: 60px 0;
}
.page-content {
  max-width: 780px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-700);
}
.page-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 2em 0 0.6em;
}
.page-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 1.6em 0 0.5em;
}
.page-content p {
  margin-bottom: 1.2em;
}
.page-content ul, .page-content ol {
  margin: 0 0 1.2em 1.4em;
}
.page-content li {
  margin-bottom: 0.4em;
}
.page-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 1.5em 0;
}
.page-content a {
  color: var(--primary);
  text-decoration: underline;
}
.page-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 0.8em 1.2em;
  margin: 1.5em 0;
  background: var(--gray-50);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}
.page-content hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 2em 0;
}

/* ===== Podcast Platform Links ===== */
.podcast-platforms {
  margin-top: 32px;
  text-align: center;
}
.podcast-platforms-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.podcast-platforms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.platform-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  transition: all 0.2s;
}
.platform-link:hover {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}
.platform-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .podcast-platforms-grid { gap: 8px; }
  .platform-link { padding: 8px 14px; font-size: 0.8rem; }
  .platform-icon { width: 16px; height: 16px; }
}
