.closing-moments {
  display: grid;
  grid-template-columns: 31% 69%;
  gap: 6vw;
  background: var(--ink);
  color: #fff;
}

.video-intro { padding-top: 8px; }
.video-intro h2 {
  font: clamp(2.7rem, 4.5vw, 4.8rem)/1.05 var(--serif);
  font-weight: 400;
  margin: 0 0 26px;
}
.video-intro > p:last-child { color: #bfc7c3; max-width: 390px; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.video-card { background: #202a27; border: 1px solid rgba(255,255,255,.13); }
.video-frame { display: block; position: relative; aspect-ratio: 16/9; background: #0d1210; overflow: hidden; }
.video-frame iframe { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; border: 0; }
.video-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s, opacity .35s; }
.video-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 35%, rgba(8,14,12,.68)); }
.video-frame:hover img { transform: scale(1.025); opacity: .84; }
.play-button { position: absolute; z-index: 2; left: 50%; top: 50%; display: grid; place-items: center; width: 66px; height: 66px; border-radius: 50%; background: var(--cream); color: var(--ink); transform: translate(-50%,-50%); padding-left: 4px; box-shadow: 0 10px 35px rgba(0,0,0,.25); transition: transform .25s, background .25s; }
.video-frame:hover .play-button { transform: translate(-50%,-50%) scale(1.08); background: #fff; }
.watch-label { position: absolute; z-index: 2; left: 18px; bottom: 14px; color: #fff; font-size: .64rem; text-transform: uppercase; letter-spacing: .14em; }
.video-caption { padding: 20px 22px 24px; }
.video-caption span { color: var(--sage); font-size: .63rem; text-transform: uppercase; letter-spacing: .16em; }
.video-caption h3 { font: 1.75rem var(--serif); font-weight: 400; margin: 5px 0 16px; }
.video-caption a { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 4px; }
.video-caption p { margin: 0; color: #c9d0cd; font-size: .76rem; }
.tap-hint { display: none; }

@media (max-width: 980px) {
  .closing-moments { grid-template-columns: 1fr; }
  .video-intro > p:last-child { max-width: 600px; }
}

/* Mobile: compact heading pinned to the top, players edge-to-edge underneath.
   The section drops its own side padding so the frames can span the full 100vw;
   the text blocks carry the 6vw inset themselves. */
@media (max-width: 650px) {
  .section.closing-moments { padding: 38px 0 44px; gap: 18px; }
  .video-intro { padding: 0 6vw; }
  .video-intro .eyebrow { margin-bottom: 10px; }
  .video-intro h2 { font-size: 2.15rem; margin: 0 0 10px; }
  .video-intro > p:last-child { max-width: none; font-size: .88rem; margin: 0; }

  .video-grid { grid-template-columns: 1fr; gap: 28px; }
  .video-grid .video-card { border: 0; border-radius: 0; background: transparent; }
  .video-caption { padding: 12px 6vw 0; }
  .video-caption h3 { font-size: 1.4rem; margin: 4px 0 8px; }
  .tap-hint { display: block; margin: 8px 0 0; color: #c9d0cd; font-size: .7rem; }
}
