.spectacle-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(247, 156, 95, 0.35);
  border-radius: 8px;
  background: linear-gradient(120deg, #231419, #111014 65%);
}

.spectacle-banner-copy {
  align-self: center;
  padding: clamp(24px, 4vw, 48px);
}

.spectacle-banner .label {
  margin-bottom: 20px;
  border-color: rgba(247, 156, 95, 0.3);
  color: #ffbd91;
  font-size: 0.875rem;
  line-height: 1.5;
}

.spectacle-banner h3 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4.4vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.spectacle-tagline {
  margin: 0 0 18px;
  color: #ffbd91;
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  font-weight: 700;
  line-height: 1.55;
}

.spectacle-description {
  max-width: 540px;
  margin: 0;
  color: var(--soft);
  font-size: 1rem;
  line-height: 1.65;
}

.spectacle-banner .actions {
  align-items: center;
  gap: 16px;
  margin-top: 26px;
}

.spectacle-banner .button {
  gap: 14px;
  background: #ffbd91;
}

.spectacle-banner .button:focus-visible {
  outline-color: #ffbd91;
}

.spectacle-format {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.spectacle-banner-art {
  position: relative;
  min-height: 420px;
  background: #100b10;
}

.spectacle-banner-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #111014, transparent 28%),
    linear-gradient(0deg, rgba(16, 11, 16, 0.85), transparent 35%);
  pointer-events: none;
}

.spectacle-banner-art img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.spectacle-art-caption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 1;
  color: #ffe5d4;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .spectacle-banner {
    grid-template-columns: minmax(0, 1fr);
  }

  .spectacle-banner-art {
    min-height: 300px;
  }

  .spectacle-banner-art::after {
    background: linear-gradient(180deg, #111014, transparent 25%),
      linear-gradient(0deg, rgba(16, 11, 16, 0.85), transparent 35%);
  }
}
