/* Song study: deep-dive type and color, full width, no left rail. */
.deep-dive-wide .article-body {
  max-width: none;
}
.song-lede,
.song-intro p,
.song-listen,
.song-note,
.song-foot,
.song-cell {
  font-family: var(--font-serif);
  font-weight: 400;
}
.song-lede {
  margin: 0 0 1.5rem;
  max-width: 62ch;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.55;
}
.song-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 28px;
  align-items: start;
  margin: 0 0 2.5rem;
}
.song-intro h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.song-intro p {
  margin: 0 0 0.8rem;
  max-width: 68ch;
  font-size: 1.05rem;
  line-height: 1.65;
}
.song-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b1018;
  overflow: hidden;
}
.song-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.song-listen {
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
}
.song-bar {
  display: none;
  align-items: center;
  gap: 10px;
  margin: 0 0 0.8rem;
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 0.85rem;
}
.song-bar select {
  min-height: 36px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-surface);
  color: var(--color-text);
  padding: 6px 10px;
  font: inherit;
}
.song-langs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 0.6rem;
  color: var(--color-muted);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.song-stanza {
  margin: 0 0 1.6rem;
}
.song-stanza h3 {
  margin: 0 0 0.45rem;
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.song-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  cursor: pointer;
}
.song-line + .song-note {
  display: none;
  margin: 0.35rem 0 0.5rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}
.song-line.on + .song-note {
  display: block;
}
.song-cell {
  min-width: 0;
  padding: 0.12rem 0;
  font-size: 0.98rem;
  line-height: 1.45;
}
.song-foot {
  margin-top: 2.5rem;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .song-intro {
    grid-template-columns: 1fr;
  }
  .song-bar {
    display: flex;
  }
  .song-langs,
  .song-line {
    grid-template-columns: 1fr 1fr;
  }
  .song-langs .es,
  .song-langs .it,
  .song-cell.es,
  .song-cell.it {
    display: none;
  }
  body.show-es .song-langs .en,
  body.show-es .song-cell.en,
  body.show-fr .song-langs .en,
  body.show-fr .song-cell.en {
    display: none;
  }
  body.show-es .song-langs .es,
  body.show-es .song-cell.es {
    display: block;
  }
  body.show-fr .song-langs,
  body.show-fr .song-line {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
