.ds-video {
  width: min(900px, calc(100% - var(--page-gutter)));
  margin: clamp(24px, 4vw, 48px) auto;
  position: relative;
  z-index: 2;
}

.ds-video-stack {
  display: grid;
  place-items: center;
  width: 100%;
  line-height: 0;
}

/* YouTube player */
.ds-youtube {
  grid-area: 1 / 1;
  z-index: 2;
  width: 78%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

/* Top frame overlay */
.ds-telling-frame {
  grid-area: 1 / 1;
  z-index: 3;
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

/* Tablet */
@media (max-width: 720px) {
  .ds-video {
    width: min(96vw, 900px);
    margin: 28px auto 36px;
  }

  .ds-youtube {
    width: 78%;
  }

  .ds-telling-frame {
    width: 100%;
  }
}

/* Phone */
@media (max-width: 520px) {
  .ds-video {
    width: 100vw;
    margin: 24px auto 32px;
    overflow: visible;
  }

  .ds-video-stack {
    width: 100%;
  }

  .ds-youtube {
    width: 76%;
  }

  .ds-telling-frame {
    width: 100%;
  }
}