.video-section {
  padding: 72px 0 100px;
  background: var(--paper);
}

.video-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}

.video-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.video-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--forest);
}

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

.video-placeholder {
  max-width: 560px;
  padding: 32px;
}

.play-mark {
  width: 82px;
  height: 82px;
  margin: 0 auto 24px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 1.75rem;
  line-height: 1;
}

.video-placeholder strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.75rem;
}

.video-placeholder span {
  font-size: .82rem;
  font-weight: bold;
  letter-spacing: .16em;
  text-transform: uppercase;
}

@media (max-width: 800px) {
  .video-section { padding: 56px 0 72px; }
  .video-heading { display: block; margin-bottom: 22px; }
  .video-heading p:last-child { margin-top: 18px; }
  .video-shell { width: calc(100% + 40px); margin-left: -20px; }
  .play-mark { width: 66px; height: 66px; }
}
