.video-section.page-width {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

/* Container for the video (keeps aspect ratio) */
.video-section__media {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  width: 100%;
}

@media only screen and (min-width: 750px) {
  /* Ensure we maintain 16:9 on desktop to prevent cutting off YouTube */
  .video-section__media {
    padding-bottom: 56.25%; 
  }
}

.video-section__media.deferred-media {
  overflow: visible;
}

.video-section__poster.deferred-media__poster:focus {
  outline-offset: 0.3rem;
}

.video-section__media iframe {
  background-color: rgba(var(--color-foreground), 0.03);
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-section__poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
