/* ============================================================
   TAPK GERESNIU - Design System
   Dark premium editorial. Barlow Condensed display, Inter body.
   Signature: yellow-explosion hero from Artur's branded photo.
   ============================================================ */

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

:root {
  --yellow:      #F5C800;
  --yellow-dim:  rgba(245, 200, 0, 0.09);
  --yellow-line: rgba(245, 200, 0, 0.25);
  --black:       #0A0A0A;
  --card:        #131313;
  --card-hover:  #1A1A1A;
  --border:      #222222;
  --white:       #FFFFFF;
  --gray:        #7A7A7A;
  --gray-light:  #B0B0B0;

  --f-display: 'Barlow Condensed', sans-serif;
  --f-body:    'Inter', sans-serif;

  --r:    4px;
  --tr:   200ms ease;
  --max:  1200px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---------- Utilities ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-label {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.yellow-rule {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin: 20px 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  border-radius: var(--r);
  text-decoration: none;
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}
.btn-yellow:hover { background: #ffd900; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo { display: flex; align-items: center; }

.logo-text {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-accent { color: var(--yellow); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: var(--tr);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: var(--r);
}
.nav-cta:hover { background: #ffd900 !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--tr);
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: start;
  padding: 148px 24px 88px;
  position: relative;
}

.hero-content {
  max-width: 460px;
}

.hero-eyebrow {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--yellow);
}

.hero-desc {
  font-size: 16px;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-platforms span {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-right: 4px;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: var(--tr);
}
.platform-link:hover { border-color: var(--yellow); color: var(--yellow); }
.platform-link svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Hero Media (naujausia laida arba statinė nuotrauka, + veiksmų mygtukai po ja) ---------- */
.hero-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-media-label {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hero-media-box {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r);
  overflow: hidden;
  background: #120d08;
}

.hero-media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95);
}

/* ---------- Latest Episode (paleidžiamas video facade .hero-media-box viduje) ---------- */
.latest-ep-facade { cursor: pointer; }

.latest-ep-facade::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 35%, transparent 60%);
  z-index: 1;
}

.latest-ep-title {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
  font-family: var(--f-display);
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 700;
  line-height: 1.25;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* .hero-play-btn yra bendra klasė - naudoja ir paieškos rezultatų kortelės (žr. .search-card-media) */
.hero-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
}
.hero-play-btn svg { width: 24px; height: 24px; fill: var(--black); margin-left: 3px; }
.latest-ep-facade:hover .hero-play-btn { transform: translate(-50%, -50%) scale(1.08); background: #ffd900; }

.latest-ep-facade.is-playing .latest-ep-title,
.latest-ep-facade.is-playing .hero-play-btn { display: none; }
.latest-ep-facade.is-playing::before { display: none; }

.latest-ep-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 3;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-value {
  font-family: var(--f-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.04em;
  margin-top: 4px;
  text-transform: uppercase;
}

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

.episode-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
}
.episode-card:hover { border-color: var(--yellow-line); transform: translateY(-3px); }

.episode-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a1a1a;
}

.episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tr);
}
.episode-card:hover .episode-thumb img { transform: scale(1.03); }

.episode-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: var(--tr);
}
.episode-card:hover .episode-play { opacity: 1; }

.play-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon svg { width: 20px; height: 20px; fill: var(--black); margin-left: 3px; }

.episode-info {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.episode-date {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.episode-title {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.episode-watch {
  margin-top: 14px;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 6px;
}
.episode-watch::after { content: '→'; }

/* ---------- About Teaser (homepage) ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.about-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--yellow);
  border-radius: var(--r);
  pointer-events: none;
}

.about-photo-wrap img {
  width: 100%;
  border-radius: var(--r);
  position: relative;
  z-index: 1;
}

.about-body { font-size: 16px; color: var(--gray-light); line-height: 1.8; }
.about-body p + p { margin-top: 16px; }

/* ---------- Single Episode Page ---------- */
.episode-page { padding-top: 100px; }

.episode-embed {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 32px;
}
.episode-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.episode-page-title {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 16px;
}

.listen-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 40px;
}

/* ---------- Transcript Pull Quotes ---------- */
#tg-transcript-wrap p + p { margin-top: 16px; }

.tg-pull-quote {
  margin: 26px 0;
  padding-left: 20px;
  border-left: 3px solid var(--yellow);
  background: var(--yellow-dim);
  border-radius: 0 var(--r) var(--r) 0;
}
.tg-pull-quote p {
  margin: 0;
  padding: 16px 16px 12px 0;
  color: var(--white);
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
}
.tg-quote-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 16px 0;
  padding: 6px 14px;
  background: none;
  border: 1px solid var(--yellow-line);
  border-radius: 999px;
  color: var(--yellow);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.tg-quote-time:hover { background: var(--yellow); color: #111; }

/* ---------- Partners Page ---------- */
.media-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 48px;
}

.media-stat {
  background: var(--card);
  padding: 32px;
}

.media-stat-value {
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.media-stat-label {
  font-size: 14px;
  color: var(--gray-light);
  margin-top: 8px;
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
}

/* ---------- Contact Form ---------- */
.contact-form {
  display: grid;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.form-input,
.form-textarea {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 15px;
  padding: 12px 16px;
  transition: var(--tr);
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.form-textarea { min-height: 140px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-message {
  padding: 14px 18px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 500;
}
.form-success { background: rgba(0,200,100,0.1); border: 1px solid rgba(0,200,100,0.3); color: #4cde90; }
.form-error   { background: rgba(200,50,50,0.1);  border: 1px solid rgba(200,50,50,0.3);  color: #f07070; }

/* ---------- Footer ---------- */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-text { font-size: 20px; }
.footer-brand p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-top: 12px; }

.footer-links h4 {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--gray-light); transition: var(--tr); }
.footer-links a:hover { color: var(--yellow); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--gray);
}
.footer-bottom a { color: var(--gray); transition: var(--tr); }
.footer-bottom a:hover { color: var(--yellow); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--gray); transition: var(--tr); }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: var(--border); }

/* ---------- Alert / Notice ---------- */
.page-hero {
  padding: 120px 0 64px;
  background: linear-gradient(180deg, var(--yellow-dim) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 84px 24px 40px; }
  .hero-content { max-width: 100%; }
  .hero-media { margin-top: 32px; }
  .episodes-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-wrap { max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
  }
  .nav-links.open { display: flex; }

  .hero-title { font-size: 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .latest-ep-title { font-size: 0.9rem; left: 16px; right: 16px; bottom: 12px; }

  .episodes-grid { grid-template-columns: 1fr; }
  .media-stats { grid-template-columns: repeat(2, 1fr); }
  .media-stat { padding: 20px; }
  .media-stat-value { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.sponsor-section { padding: 0 0 40px; }

/* ---------- Reusable grid classes (replaces inline styles) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.stats-about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ---------- Paieška (search) ---------- */
.search-form {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 720px;
}

.search-form input[type="text"] {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 15px;
  padding: 14px 18px;
  transition: var(--tr);
}
.search-form input[type="text"]:focus { outline: none; border-color: var(--yellow); }
.search-form input[type="text"]::placeholder { color: var(--gray); }

.search-examples {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 13px;
}
.search-examples a {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 7px 14px;
  color: var(--gray-light);
  font-size: 13px;
  transition: var(--tr);
}
.search-examples a:hover { border-color: var(--yellow-line); color: var(--yellow); }

.search-empty {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px;
  text-align: center;
  color: var(--gray-light);
  max-width: 560px;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search-card {
  display: flex;
  gap: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: var(--tr);
}
.search-card:hover { border-color: var(--yellow-line); }

.search-card-media {
  position: relative;
  flex: 0 0 240px;
  aspect-ratio: 16/9;
  background: #1a1a1a;
  cursor: pointer;
  overflow: hidden;
}
.search-card-media img { width: 100%; height: 100%; object-fit: cover; }
.search-card-media .hero-play-btn { box-shadow: 0 4px 16px rgba(0,0,0,0.5); }
.search-card-media.is-playing .hero-play-btn,
.search-card-media.is-playing .search-timestamp { display: none; }

.search-timestamp {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 2;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
}

.search-card-body {
  flex: 1;
  padding: 20px 20px 20px 0;
  min-width: 0;
}

.search-card-title {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}

.search-card-snippet {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 14px;
}
.search-card-snippet mark {
  background: transparent;
  color: var(--yellow);
  font-weight: 600;
}

.search-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.search-card-links a {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  transition: var(--tr);
}
.search-card-links a:hover { color: var(--yellow); }

/* ---------- Mobile fixes ---------- */
@media (max-width: 768px) {
  .section     { padding: 48px 0; }
  .section-sm  { padding: 32px 0; }
  .page-hero   { padding: 90px 0 36px; margin-bottom: 36px; }

  .listen-platforms { margin: 16px 0 24px; gap: 8px; }
  .platform-link    { padding: 7px 12px; font-size: 12px; }

  .sponsor-section { padding: 0 0 24px; }
  .sponsor-logos { padding: 20px; gap: 16px; }
  .sponsor-logos img { height: 28px !important; }

  .features-grid      { grid-template-columns: 1fr; }
  .stats-about-grid   { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .formats-grid       { grid-template-columns: 1fr; }
  .contact-split      { grid-template-columns: 1fr; gap: 40px; }
  .audience-grid      { grid-template-columns: 1fr; }

  .search-form { flex-direction: column; }
  .search-card { flex-direction: column; }
  .search-card-media { flex: none; aspect-ratio: 16/9; }
  .search-card-body { padding: 16px; }
}

@media (max-width: 480px) {
  .stats-about-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* ---------- DUK (FAQ) ---------- */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 12px;
  transition: var(--tr);
}
.faq-item[open] { border-color: var(--yellow-line); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 48px 20px 24px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--yellow);
  transition: var(--tr);
}
.faq-item[open] summary::after { content: '−'; }

.faq-item summary h2 {
  display: inline;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

.faq-item > p {
  padding: 0 24px 22px;
  color: var(--gray-light);
  line-height: 1.7;
  font-size: 15px;
}
