/* section: band — the coal-black showtime act */

.section--band {
  background: linear-gradient(to bottom, var(--navy-mid) 0%, var(--coal) 7%, var(--coal) 94%, var(--navy) 100%);
}

.band-eyebrow {
  color: #e8705a;
}

.band-title {
  color: var(--bone);
  font-size: clamp(2.8rem, 8vw, 4.6rem);
}

.band-of {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(232, 228, 218, 0.6);
  margin-bottom: 34px;
}

.band-logo {
  width: min(230px, 55vw);
  height: auto;
  transform: translateY(0.35em);
}

.band-cols {
  display: grid;
  gap: 34px;
  align-items: center;
}

@media (min-width: 900px) {
  .band-cols {
    grid-template-columns: 1fr 420px;
  }
}

.band-lede {
  font-family: var(--display);
  font-size: clamp(1.35rem, 3.4vw, 1.75rem);
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 16px;
}

.band-copy p {
  max-width: 560px;
  color: rgba(232, 228, 218, 0.85);
}

.band-copy p + p {
  margin-top: 14px;
}

.band-free strong {
  color: var(--gold);
}

.band-follow {
  color: var(--gold);
  text-decoration-color: var(--gold-dim);
  text-underline-offset: 4px;
}

.band-follow:hover {
  color: var(--gold-bright);
}

.band-feature {
  margin: 0;
}

.band-feature img {
  display: block;
  width: 100%;
  border: 1px solid rgba(232, 228, 218, 0.14);
}

.band-listen {
  margin-top: 34px;
  max-width: 720px;
}

.band-video {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(232, 228, 218, 0.14);
  background: var(--coal-soft);
}

.band-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.band-listen-caption {
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(232, 228, 218, 0.7);
}

.band-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.band-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  border: 1px solid rgba(232, 228, 218, 0.14);
  filter: saturate(0.9);
}

@media (max-width: 640px) {
  .band-strip {
    grid-template-columns: 1fr;
  }

  .band-strip img {
    aspect-ratio: 4 / 3;
  }
}
