/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #0a0a0b;
  --ink:    #111214;
  --card:   #18191d;
  --border: #2a2b30;
  --muted:  #6b7280;
  --light:  #9ca3af;
  --white:  #f8f9fa;
  --mm:     #e8622a;
  --kv:     #0da1a8;
  --blue:   #3b82f6;
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
  --radius: 8px;
  --max:    1200px;
}

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

/* ── Show-level body classes ─────────────────────────────────────────────── */
.show-mix-minus  { --show: var(--mm); }
.show-konaverse  { --show: var(--kv); }

/* ── Typography helpers ──────────────────────────────────────────────────── */
.section-label {
  font-size: 11px; font-weight: 800; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.14em; margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif); font-size: clamp(24px, 3vw, 40px);
  font-weight: 900; line-height: 1.15; margin-bottom: 20px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--mm); color: white;
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 13px 28px; border-radius: 4px;
  transition: opacity .2s;
}
.btn-primary:hover { opacity: .85; color: white; }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border); color: var(--light);
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  padding: 11px 24px; border-radius: 4px; transition: all .2s;
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,11,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 60px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--mm);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.85)} }
.nav-logo span { font-size: 15px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 500; color: var(--light); letter-spacing: 0.04em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-subscribe {
  background: var(--mm) !important; color: var(--white) !important;
  font-size: 12px !important; font-weight: 700 !important;
  padding: 8px 18px; border-radius: 4px;
}
.nav-subscribe:hover { opacity: .85; }
.nav-mobile-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; padding: 4px; }
.nav-mobile-toggle svg { width: 22px; height: 22px; }

/* ── Announce strip ──────────────────────────────────────────────────────── */
.announce-strip {
  background: rgba(232,98,42,0.08); border-bottom: 1px solid rgba(232,98,42,0.15);
  text-align: center; padding: 10px 24px;
  font-size: 12px; font-weight: 600; color: var(--mm); letter-spacing: 0.06em;
  text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 8px;
}
.announce-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--mm); animation: pulse 2s infinite; flex-shrink: 0; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero { padding: clamp(60px,8vw,120px) 24px clamp(60px,8vw,100px); }
.hero-inner { max-width: var(--max); margin: 0 auto; }
.hero-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; color: var(--mm); text-transform: uppercase;
  letter-spacing: 0.12em; margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--serif); font-size: clamp(42px, 7vw, 96px);
  font-weight: 900; line-height: 1.05; margin-bottom: 24px;
}
.hero-headline em { font-style: italic; color: var(--mm); }
.hero-sub { font-size: clamp(15px, 1.8vw, 18px); color: var(--light); max-width: 580px; line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-stat-num { display: block; font-size: clamp(24px,3vw,32px); font-weight: 900; font-family: var(--serif); }
.hero-stat-label { display: block; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.hero-stat-sep { width: 1px; height: 36px; background: var(--border); }

/* ── Shows section ───────────────────────────────────────────────────────── */
.shows-section { padding: 72px 24px; background: var(--ink); }
.shows-inner { max-width: var(--max); margin: 0 auto; }
.shows-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }

.show-card {
  border-radius: 12px; padding: 36px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .2s; cursor: pointer;
}
.show-card:hover { transform: translateY(-3px); }
.show-card--mm { background: linear-gradient(135deg, rgba(232,98,42,0.12) 0%, rgba(232,98,42,0.04) 100%); border: 1px solid rgba(232,98,42,0.2); }
.show-card--kv { background: linear-gradient(135deg, rgba(13,161,168,0.12) 0%, rgba(13,161,168,0.04) 100%); border: 1px solid rgba(13,161,168,0.2); }

.show-card-header { display: flex; align-items: center; gap: 10px; }
.show-card--mm .show-card-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mm); animation: pulse 2s infinite; }
.show-card--kv .show-card-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--kv); animation: pulse 2s infinite; }
.show-card-tag { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.show-card-name { font-family: var(--serif); font-size: clamp(22px, 2.5vw, 32px); font-weight: 900; }
.show-card--mm .show-card-name { color: var(--white); }
.show-card--kv .show-card-name { color: var(--white); }
.show-card-desc { font-size: 14px; color: var(--light); line-height: 1.65; flex: 1; }
.show-card-stats { display: flex; gap: 24px; padding: 16px 0; border-top: 1px solid var(--border); }
.show-card-stat strong { display: block; font-size: 18px; font-weight: 800; }
.show-card--mm .show-card-stat strong { color: var(--mm); }
.show-card--kv .show-card-stat strong { color: var(--kv); }
.show-card-stat span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.show-card-cta { font-size: 13px; font-weight: 700; }
.show-card--mm .show-card-cta { color: var(--mm); }
.show-card--kv .show-card-cta { color: var(--kv); }

/* ── Episodes section ────────────────────────────────────────────────────── */
.episodes-section { padding: 72px 24px; }
.episodes-inner { max-width: var(--max); margin: 0 auto; }
.episodes-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }

/* Filter pills */
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 8px 18px; border-radius: 20px; border: 1px solid var(--border);
  background: transparent; color: var(--light); cursor: pointer; transition: all .2s;
}
.filter-pill:hover { border-color: var(--white); color: var(--white); }
.filter-pill--active { background: var(--white); color: var(--black); border-color: var(--white); }
.filter-pill--mm.filter-pill--active { background: var(--mm); color: white; border-color: var(--mm); }
.filter-pill--kv.filter-pill--active { background: var(--kv); color: white; border-color: var(--kv); }

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

.ep-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  transition: border-color .2s, transform .2s;
  display: flex; flex-direction: column;
}
.ep-card:hover { border-color: #444; transform: translateY(-2px); }

.ep-card-thumb {
  width: 100%; height: 160px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.ep-card-thumb--image img { width: 100%; height: 100%; object-fit: cover; }
.ep-card-thumb--gradient { }

/* Show-specific gradients */
.gradient-mix-minus { background: linear-gradient(135deg, rgba(232,98,42,0.25) 0%, #0f1117 100%); }
.gradient-konaverse { background: linear-gradient(135deg, rgba(13,161,168,0.25) 0%, #0f1117 100%); }
.ep-card-thumb-num { font-size: 36px; font-weight: 900; color: rgba(255,255,255,0.06); font-family: var(--serif); }

.ep-card-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.ep-card-meta { display: flex; align-items: center; gap: 8px; }
.ep-card-show-badge {
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 3px 8px; border-radius: 3px;
}
.badge-mix-minus { background: rgba(232,98,42,0.15); color: var(--mm); }
.badge-konaverse { background: rgba(13,161,168,0.15); color: var(--kv); }
.ep-card-date { font-size: 11px; color: var(--muted); }
.ep-card-title { font-family: var(--serif); font-size: 17px; font-weight: 700; line-height: 1.3; }
.ep-card-title a { color: var(--white); }
.ep-card-title a:hover { color: var(--mm); }
.ep-card-excerpt { font-size: 13px; color: var(--light); line-height: 1.6; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ep-card-listen {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted); transition: color .2s; margin-top: auto;
}
.ep-card-listen svg { width: 10px; height: 10px; }
.ep-card:hover .ep-card-listen { color: var(--mm); }
.tag-konaverse .ep-card:hover .ep-card-listen { color: var(--kv); }

/* Episode hidden via filter */
.ep-card.hidden { display: none; }

/* ── Blog section ────────────────────────────────────────────────────────── */
.blog-section { padding: 72px 24px; background: var(--ink); }
.blog-inner { max-width: var(--max); margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.blog-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; padding: 24px; display: flex; flex-direction: column; gap: 8px;
  transition: border-color .2s, transform .2s;
}
.blog-card:hover { border-color: #444; transform: translateY(-2px); }
.blog-card-date { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.blog-card-title { font-family: var(--serif); font-size: 20px; font-weight: 700; line-height: 1.3; }
.blog-card-excerpt { font-size: 13px; color: var(--light); line-height: 1.6; flex: 1; }
.blog-card-read { font-size: 12px; font-weight: 700; color: var(--mm); text-transform: uppercase; letter-spacing: 0.06em; margin-top: auto; }

/* ── Newsletter ──────────────────────────────────────────────────────────── */
.newsletter-section { padding: 80px 24px; }
.newsletter-inner {
  max-width: 800px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, rgba(232,98,42,0.08), rgba(232,98,42,0.02));
  border: 1px solid rgba(232,98,42,0.2); border-radius: 16px; padding: 56px 48px;
}
.newsletter-content p { font-size: 16px; color: var(--light); line-height: 1.7; margin-bottom: 28px; }
.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; background: var(--black); border: 1px solid var(--border);
  color: var(--white); font-size: 14px; font-family: var(--sans);
  padding: 12px 16px; border-radius: 6px; outline: none;
}
.newsletter-form input:focus { border-color: var(--mm); }
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button {
  background: var(--mm); color: white; border: none;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  padding: 12px 24px; border-radius: 6px; cursor: pointer; transition: opacity .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { opacity: .85; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer { background: var(--black); border-top: 1px solid var(--border); padding: 56px 24px 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
.footer-brand { max-width: 300px; }
.dot-wrap { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.dot-wrap .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mm); }
.dot-wrap strong { font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.footer-show-badges { display: flex; gap: 8px; }
.show-badge { font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 3px; letter-spacing: 0.06em; }
.show-badge--mm { color: var(--mm); background: rgba(232,98,42,0.1); border: 1px solid rgba(232,98,42,0.25); }
.show-badge--kv { color: var(--kv); background: rgba(13,161,168,0.1); border: 1px solid rgba(13,161,168,0.25); }
.footer-links h4 { font-size: 11px; font-weight: 800; color: var(--light); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links ul a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-links ul a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-ghost { font-size: 12px; color: var(--muted); }
.footer-ghost a { color: var(--muted); text-decoration: underline; }

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.breadcrumb { border-bottom: 1px solid var(--border); }
.breadcrumb-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 12px 24px; display: flex; align-items: center; gap: 8px;
}
.breadcrumb-inner a { font-size: 12px; color: var(--muted); transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--white); }
.breadcrumb-inner svg { width: 12px; height: 12px; color: var(--border); flex-shrink: 0; }
.breadcrumb-inner span { font-size: 12px; color: var(--light); }
.breadcrumb-show { color: var(--mm) !important; }
.show-konaverse .breadcrumb-show { color: var(--kv) !important; }

/* ── Episode hero ────────────────────────────────────────────────────────── */
.ep-hero {
  position: relative; width: 100%;
  height: clamp(300px, 38vw, 500px); overflow: hidden; background: var(--ink);
}
.ep-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ep-hero-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, #1a2a4a 0%, transparent 70%),
              radial-gradient(ellipse 60% 80% at 20% 70%, #2a1a0a 0%, transparent 60%),
              linear-gradient(135deg, #0f1117 0%, #1a1f2e 50%, #0f1117 100%);
}
.hero-gradient--mix-minus {
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232,98,42,0.18) 0%, transparent 70%),
              linear-gradient(135deg, #0f1117 0%, #1a1205 50%, #0f1117 100%);
}
.hero-gradient--konaverse {
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(13,161,168,0.18) 0%, transparent 70%),
              linear-gradient(135deg, #0f1117 0%, #051a1a 50%, #0f1117 100%);
}
.ep-hero-wave { position: absolute; bottom: 0; left: 0; right: 0; height: 120px; opacity: 0.1; }
.ep-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(10,10,11,0.7) 70%, var(--black) 100%);
}
.ep-hero-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  max-width: var(--max); margin: 0 auto;
  padding: 0 clamp(20px,4vw,60px) 32px;
}
.ep-hero-badges { display: flex; gap: 10px; margin-bottom: 12px; }
.ep-show-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 3px;
}
.ep-show-badge--mix-minus { background: var(--mm); color: white; }
.ep-show-badge--konaverse { background: var(--kv); color: white; }
.ep-hero-title {
  font-family: var(--serif); font-size: clamp(26px, 4vw, 48px);
  font-weight: 900; line-height: 1.1; color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5); max-width: 800px;
}
.ep-hero-sub { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 8px; }

/* ── Episode meta bar ────────────────────────────────────────────────────── */
.ep-meta-bar { background: var(--card); border-bottom: 1px solid var(--border); }
.ep-meta-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  padding: 14px clamp(20px,4vw,60px); flex-wrap: wrap;
}
.ep-meta-show-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
}
.ep-meta-show-pill--mix-minus { background: rgba(232,98,42,0.12); border: 1px solid rgba(232,98,42,0.3); color: var(--mm); }
.ep-meta-show-pill--konaverse { background: rgba(13,161,168,0.12); border: 1px solid rgba(13,161,168,0.3); color: var(--kv); }
.ep-meta-item { display: flex; align-items: center; gap: 7px; }
.ep-meta-item svg { width: 13px; height: 13px; color: var(--muted); }
.ep-meta-item span { font-size: 13px; color: var(--light); }
.ep-meta-sep { width: 1px; height: 14px; background: var(--border); }
.ep-tag {
  font-size: 11px; font-weight: 600; color: var(--light);
  background: var(--black); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 3px;
}

/* ── Episode body layout ─────────────────────────────────────────────────── */
.ep-body {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 300px;
  gap: 48px; padding: 48px clamp(20px,4vw,60px) 80px;
  align-items: start;
}
.ep-main {}
.ep-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 20px; }

/* Audio card */
.audio-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 24px; margin-bottom: 32px; }
.audio-card-label { font-size: 10px; font-weight: 800; color: var(--mm); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }
.show-konaverse .audio-card-label { color: var(--kv); }
.native-player-wrap { padding-top: 4px; }
.show-notes-label { font-size: 10px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin: 32px 0 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }

/* Ghost content / show notes */
.gh-content { font-size: 16px; color: var(--light); line-height: 1.8; }
.gh-content p { margin-bottom: 16px; }
.gh-content h2, .gh-content h3 { font-family: var(--serif); color: var(--white); margin: 28px 0 12px; }
.gh-content strong { color: var(--white); font-weight: 600; }
.gh-content ul, .gh-content ol { padding-left: 20px; margin-bottom: 16px; }
.gh-content li { margin-bottom: 6px; }
.gh-content a { color: var(--blue); text-decoration: underline; text-decoration-color: rgba(59,130,246,0.3); }
.gh-content a:hover { text-decoration-color: var(--blue); }
.gh-content audio { width: 100%; margin-bottom: 16px; accent-color: var(--mm); }
.show-konaverse .gh-content audio { accent-color: var(--kv); }
.gh-content figure { margin: 0 0 20px; }
.gh-content .kg-audio-card { background: var(--black); border: 1px solid var(--border); border-radius: 8px; padding: 16px; }

/* Share row */
.share-row { display: flex; align-items: center; gap: 10px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.share-label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.share-btn {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--light);
  background: var(--card); border: 1px solid var(--border);
  padding: 8px 14px; border-radius: 6px; cursor: pointer; transition: all .2s;
}
.share-btn:hover { border-color: var(--white); color: var(--white); }
.share-btn svg { width: 13px; height: 13px; }

/* Subscribe card */
.subscribe-card {
  background: linear-gradient(135deg, rgba(232,98,42,0.1), rgba(232,98,42,0.03));
  border: 1px solid rgba(232,98,42,0.2); border-radius: 10px; padding: 22px;
}
.show-konaverse .subscribe-card {
  background: linear-gradient(135deg, rgba(13,161,168,0.1), rgba(13,161,168,0.03));
  border-color: rgba(13,161,168,0.2);
}
.subscribe-card h4 { font-family: var(--serif); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.subscribe-card p { font-size: 13px; color: var(--light); line-height: 1.55; margin-bottom: 14px; }
.subscribe-card input { width: 100%; background: var(--black); border: 1px solid var(--border); color: var(--white); font-size: 13px; font-family: var(--sans); padding: 10px 14px; border-radius: 6px; outline: none; margin-bottom: 8px; }
.subscribe-card input:focus { border-color: var(--mm); }
.subscribe-card input::placeholder { color: var(--muted); }
.subscribe-card button { width: 100%; background: var(--mm); color: white; border: none; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 10px; border-radius: 6px; cursor: pointer; transition: opacity .2s; }
.subscribe-card button:hover { opacity: .85; }
.show-konaverse .subscribe-card button { background: var(--kv); }

/* Related mini cards */
.related-card-block { background: var(--card); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.related-label { font-size: 10px; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; padding: 14px 16px; border-bottom: 1px solid var(--border); }
.related-mini-card { display: flex; gap: 12px; align-items: flex-start; padding: 12px 16px; border-bottom: 1px solid var(--border); transition: background .15s; }
.related-mini-card:last-child { border-bottom: none; }
.related-mini-card:hover { background: rgba(255,255,255,0.03); }
.related-mini-thumb { width: 48px; height: 48px; border-radius: 4px; flex-shrink: 0; object-fit: cover; }
.related-mini-thumb--gradient.gradient-mix-minus { background: linear-gradient(135deg, rgba(232,98,42,0.25), #0f1117); }
.related-mini-thumb--gradient.gradient-konaverse { background: linear-gradient(135deg, rgba(13,161,168,0.25), #0f1117); }
.related-mini-title { font-size: 13px; font-weight: 600; color: var(--white); line-height: 1.35; margin-bottom: 4px; }
.related-mini-date { font-size: 11px; color: var(--muted); }

/* ── Tag hero ────────────────────────────────────────────────────────────── */
.tag-hero { padding: 72px 24px 56px; }
.tag-hero--mix-minus { background: linear-gradient(135deg, rgba(232,98,42,0.1) 0%, transparent 60%); border-bottom: 1px solid rgba(232,98,42,0.15); }
.tag-hero--konaverse { background: linear-gradient(135deg, rgba(13,161,168,0.1) 0%, transparent 60%); border-bottom: 1px solid rgba(13,161,168,0.15); }
.tag-hero-inner { max-width: var(--max); margin: 0 auto; }
.tag-hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em;
  padding: 6px 14px; border-radius: 3px; margin-bottom: 16px;
}
.tag-mix-minus .tag-hero-badge { background: var(--mm); color: white; }
.tag-konaverse .tag-hero-badge { background: var(--kv); color: white; }
.tag-hero-title { font-family: var(--serif); font-size: clamp(32px,5vw,64px); font-weight: 900; margin-bottom: 12px; }
.tag-hero-desc { font-size: 16px; color: var(--light); max-width: 560px; line-height: 1.65; margin-bottom: 12px; }
.tag-hero-count { font-size: 13px; color: var(--muted); }

/* ── Tag posts ───────────────────────────────────────────────────────────── */
.tag-posts { padding: 52px 24px 80px; }
.tag-posts-inner { max-width: var(--max); margin: 0 auto; }

/* ── Pagination ──────────────────────────────────────────────────────────── */
.pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 48px; }
.pagination-info { font-size: 13px; color: var(--muted); }

/* ── Static pages ────────────────────────────────────────────────────────── */
.page-main { padding: 64px 24px 80px; }
.page-inner { max-width: 720px; margin: 0 auto; }
.page-title { font-family: var(--serif); font-size: clamp(28px,4vw,48px); font-weight: 900; margin-bottom: 32px; }
.page-content { font-size: 16px; color: var(--light); line-height: 1.8; }
.page-content p { margin-bottom: 18px; }
.page-content h2, .page-content h3 { font-family: var(--serif); color: var(--white); margin: 32px 0 14px; }
.page-content a { color: var(--blue); text-decoration: underline; }
.page-feature-image { width: 100%; border-radius: 8px; margin-bottom: 36px; }

/* ── Ghost card width classes (required) ─────────────────────────────────── */
.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: auto calc(50% - 50vw) auto calc(50% - 42.5vw);
}
.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.kg-image { max-width: 100%; }
.kg-gallery-container { display: flex; flex-direction: column; }
.kg-gallery-row { display: flex; gap: 6px; margin-bottom: 6px; }
.kg-gallery-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ep-grid { grid-template-columns: repeat(2, 1fr); }
  .shows-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .ep-body { grid-template-columns: 1fr; }
  .ep-sidebar { position: static; }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .ep-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .newsletter-form { flex-direction: column; }
  .footer-top { flex-direction: column; }
}
