/* ─────────────────────────────────────────────────────────────
   THE ELDER KING LATHAM SHOW  (broadcast on TENSE Radio)
   Editorial dark section that lives inside the TEKL rebuild
   design system. Uses the existing gold, cream, charcoal and
   muted-purple palette. Does NOT redesign around TENSE Radio.
   ───────────────────────────────────────────────────────────── */

#the-show.show-section {
  /* Warm charcoal with a subtle muted-purple wash so the section
     reads as a distinct broadcast moment while staying inside
     the site's palette. */
  background:
    radial-gradient(ellipse at 20% 0%, rgba(78, 58, 96, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(212, 174, 82, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #17151F 0%, #1A1714 60%, #221E1A 100%);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

#the-show.show-section::before {
  /* Hairline gold rule marking the top of the band */
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 174, 82, 0.28) 20%,
    rgba(212, 174, 82, 0.5) 50%,
    rgba(212, 174, 82, 0.28) 80%,
    transparent 100%
  );
}

.show-grid {
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  gap: var(--space-16);
  align-items: center;
  margin-top: var(--space-10);
}

/* ── Artwork ─────────────────────────────────────────────── */

.show-artwork {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 560px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(212, 174, 82, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  isolation: isolate;
}

.show-artwork-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;    /* 1:1 source into 1:1 frame → no crop */
  object-position: center;
}

.show-artwork::after {
  /* Very light warm gold glaze — atmosphere only, no color shift */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 20%,
    rgba(212, 174, 82, 0.05) 0%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 1;
}

/* ── Copy column ─────────────────────────────────────────── */

.show-copy .eyebrow {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: var(--space-3) 0 var(--space-4);
}

.show-copy .section-heading {
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.show-copy .section-heading em {
  color: var(--color-gold);
  font-style: italic;
}

.show-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  color: var(--color-gold-light);
  margin-bottom: var(--space-5);
  letter-spacing: 0.01em;
}

.show-body {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.7;
  max-width: 56ch;
  margin-bottom: var(--space-8);
}

/* ── Schedule card ───────────────────────────────────────── */

.show-schedule {
  border: 1px solid rgba(212, 174, 82, 0.22);
  border-radius: 4px;
  padding: var(--space-6) var(--space-7);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(255, 255, 255, 0.005) 100%
  );
  margin-bottom: var(--space-8);
  max-width: 460px;
}

.show-schedule .schedule-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-2);
}

.show-schedule .schedule-times {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.1rem);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.01em;
  margin-bottom: var(--space-3);
  line-height: 1.15;
}

.show-schedule .schedule-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* ── CTA row ─────────────────────────────────────────────── */

.show-cta {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.show-listen {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 0.95em 1.9em;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  min-height: 48px;   /* accessible tap target */
}

.show-listen .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E15757;
  box-shadow: 0 0 0 0 rgba(225, 87, 87, 0.7);
  animation: show-live-pulse 1.8s ease-out infinite;
  flex-shrink: 0;
}

@keyframes show-live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(225, 87, 87, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(225, 87, 87, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 87, 87, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .show-listen .live-dot { animation: none; }
}

.show-platform {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.35;
}

.show-platform .platform-name {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
}

.show-platform .platform-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.86rem;
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 1024px) {
  .show-grid {
    grid-template-columns: minmax(280px, 480px) 1fr;
    gap: var(--space-12);
  }
}

@media (max-width: 820px) {
  #the-show.show-section {
    padding: var(--space-16) 0;
  }

  .show-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
    margin-top: var(--space-6);
  }

  .show-artwork {
    max-width: 460px;
    margin: 0 auto;
  }

  .show-copy {
    text-align: left;
  }

  .show-schedule {
    max-width: 100%;
    padding: var(--space-5) var(--space-6);
  }

  .show-cta {
    gap: var(--space-4);
  }

  .show-platform {
    order: 2;
  }
}

@media (max-width: 480px) {
  #the-show.show-section {
    padding: var(--space-12) 0;
  }

  .show-artwork {
    max-width: 100%;
    border-radius: 6px;
  }

  .show-schedule {
    padding: var(--space-5);
  }

  .show-schedule .schedule-times {
    font-size: 1.35rem;
  }

  .show-listen {
    width: 100%;
    justify-content: center;
    padding: 1em 1.5em;
  }

  .show-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
}
