/**
 * Retro Music — Base Styles (layout & structure only)
 *
 * The listening station: a Spotify embed recessed into a paper-mat keyline
 * frame, with a kraft "Now Playing" tab pinned to the top edge. Visual treatment
 * (paper, wood, frame keyline, tab) lives in styles/retro.css.
 */

.retro-music {
  position: relative;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.retro-music__inner {
  max-width: 60rem;
  margin: 0 auto;
}

/* ───────────────────────────────────────────────────────── HEADER */

.retro-music__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.retro-music__kicker {
  margin: 0;
  font-family: var(--body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.retro-music__title-h {
  margin: 0;
  font-family: var(--header);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.98;
}

.retro-music__body {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

/* ───────────────────────────────────────────────── PLAYER FRAME */

.retro-music__player {
  width: 100%;
  box-sizing: border-box;
}

.retro-music__player-inner {
  width: 100%;
}

/* the wall frame: a paper mat + ink keyline, with room at the top for the tab */
.retro-music__frame {
  position: relative;
  padding: 1.9rem 0.6rem 0.6rem;   /* top room for the pinned tab */
}

/* kraft "Now Playing" tab pinned to the top-left of the frame */
.retro-music__tab {
  position: absolute;
  top: -0.65rem;
  left: 1.4rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.retro-music__tab-disc {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  flex: none;
  animation: retro-music-spin 3.2s linear infinite;
}

/* the recessed "screen" holding the iframe */
.retro-music__screen {
  position: relative;
  overflow: hidden;
}

.retro-music__screen iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
}

@keyframes retro-music-spin {
  to { transform: rotate(360deg); }
}

/* ───────────────────────────────────────────────────── RESPONSIVE */

@media screen and (max-width: 767px) {
  .retro-music__screen iframe {
    height: 352px;
  }
}

/* ─────────────────────────────────────────────────── REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {
  .retro-music__tab-disc {
    animation: none;
  }
}
