/* ── Sankofa Radio ── */

.radio-hero {
  background: #0a0806;
  text-align: center;
  padding: 7rem 2rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.radio-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  margin: 0.5rem 0 1rem;
}

.radio-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--gray-lt);
  margin-bottom: 1.8rem;
}

.radio-sc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 4px;
  padding: 0.55rem 1.2rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.radio-sc-link:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.6);
}

/* ── Episodes section ── */

.radio-section {
  background: #0f0d0b;
  min-height: 40vh;
  padding: 4rem 0 6rem;
}

.radio-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ── Empty state ── */

.radio-empty {
  text-align: center;
  padding: 4rem 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* ── Episode card ── */

.radio-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.radio-card-top {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  align-items: flex-start;
}

.radio-artwork {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  background: #1a1612;
}

.radio-meta {
  flex: 1;
  min-width: 0;
}

.radio-date {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.radio-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.radio-dj {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--gray-lt);
  margin-bottom: 0.75rem;
}

.radio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.radio-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  padding: 0.2rem 0.55rem;
}

.radio-bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.6rem;
  line-height: 1.5;
}

.radio-player {
  padding: 0 1.5rem 1.5rem;
}

.radio-player iframe {
  border-radius: 4px;
  display: block;
}

/* ── Responsive ── */

@media (max-width: 480px) {
  .radio-card-top {
    flex-direction: column;
    gap: 1rem;
  }

  .radio-artwork {
    width: 100%;
    height: 180px;
  }
}
