.video-section {
  padding: 100px 0;
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 90px;
  align-items: center;
}

.video-copy {
  max-width: 620px;
}

.video-copy .kicker {
  color: #e6c36f;
}

.video-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -.03em;
}

.video-copy p {
  margin: 24px 0 32px;
  color: #c4cfda;
  font-size: 1.08rem;
  line-height: 1.8;
}

.video-copy .button {
  color: var(--navy-deep);
  background: var(--gold);
  box-shadow: none;
}

.video-copy .button:hover {
  background: #e3c370;
}

.video-frame {
  width: min(100%, 390px);
  padding: 10px;
  justify-self: center;
  border-radius: 26px;
  background: linear-gradient(145deg, #e5c36e, #8b671f);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .32);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 512 / 910;
  object-fit: cover;
  border-radius: 18px;
  background: #173f73;
}

@media (max-width: 920px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .video-copy {
    margin-inline: auto;
    text-align: center;
  }

  .video-copy .kicker {
    margin-bottom: 14px;
  }

  .video-frame {
    width: min(100%, 360px);
  }
}

@media (max-width: 620px) {
  .video-section {
    padding: 72px 0;
  }

  .video-copy p {
    font-size: 1rem;
  }

  .video-copy .button {
    width: 100%;
  }
}
