/* Official video production page */
.videos-main {
  min-height: 100vh;
  background:
    radial-gradient(circle at 76% 7%, rgba(237, 203, 125, 0.15), transparent 30%),
    linear-gradient(145deg, #5b4232 0%, #3d291f 43%, #211510 100%);
}

.video-production-card {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: clamp(38px, 7vw, 85px);
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(30px, 6vw, 75px);
  background:
    linear-gradient(135deg, rgba(215, 168, 76, 0.11), rgba(13, 8, 6, 0.72)),
    #1a100c;
  border: 1px solid rgba(215, 168, 76, 0.48);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
}

.production-mark {
  position: relative;
  width: min(280px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 168, 76, 0.65);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(215, 168, 76, 0.18), rgba(10, 6, 5, 0.9) 68%);
  box-shadow: inset 0 0 42px rgba(215, 168, 76, 0.08), 0 20px 45px rgba(0, 0, 0, 0.32);
}

.production-mark::before,
.production-mark::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(215, 168, 76, 0.23);
  border-radius: 50%;
}

.production-mark::after {
  inset: 28%;
}

.production-play {
  position: relative;
  z-index: 1;
  color: var(--soft-gold);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 1;
  transform: translateX(6%);
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.55);
}

.production-copy .page-kicker {
  margin-bottom: 12px;
}

.production-copy h2 {
  margin: 0 0 22px;
  color: var(--light-cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  font-weight: 500;
  line-height: 0.96;
}

.production-copy p:not(.page-kicker) {
  max-width: 650px;
  margin: 0 0 18px;
  color: var(--warm-white);
  font-size: 1.04rem;
  line-height: 1.8;
}

.production-status {
  margin-top: 30px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(215, 168, 76, 0.25);
  color: var(--soft-gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.production-status::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(215, 168, 76, 0.75);
}

.video-note {
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.video-note h2 {
  margin-bottom: 18px;
}

.video-note p {
  max-width: 720px;
  margin: 0 auto 26px;
}

@media (max-width: 760px) {
  .video-production-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .production-mark {
    width: min(210px, 72vw);
  }

  .production-copy p:not(.page-kicker) {
    margin-left: auto;
    margin-right: auto;
  }

  .production-status {
    justify-content: center;
  }
}
