.dsti-lifestyle-videos {
  padding: clamp(58px, 8vw, 108px) 0;
  border-top: 1px solid rgba(219, 229, 232, .82);
  background:
    radial-gradient(circle at 84% 18%, rgba(108, 198, 208, .18), transparent 27rem),
    linear-gradient(180deg, #f8fcfd, #ffffff);
}

.dsti-video-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.dsti-video-copy {
  display: grid;
  gap: 18px;
}

.dsti-video-copy h2 {
  margin: 0;
  line-height: .98;
  letter-spacing: -.058em;
  font-size: clamp(2.15rem, 5vw, 5.5rem);
}

.dsti-video-copy h2 span {
  color: var(--life-magenta, #910048);
}

.dsti-video-copy p {
  margin: 0;
  color: var(--life-muted, #5f737b);
  font-size: clamp(1rem, 1.22vw, 1.12rem);
  line-height: 1.64;
}

.dsti-video-coming {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dsti-video-coming span {
  display: inline-flex;
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(145, 0, 72, .07);
  color: var(--life-magenta, #910048);
  border: 1px solid rgba(145, 0, 72, .12);
  font-size: .86rem;
  font-weight: 900;
}


.dsti-video-features {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.dsti-video-feature {
  min-width: 0;
}

@media (min-width: 1180px) {
  .dsti-video-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .dsti-video-features .dsti-video-feature {
    display: grid;
    grid-template-rows: auto 1fr;
  }
}

@media (max-width: 1179px) and (min-width: 961px) {
  .dsti-video-grid {
    align-items: start;
  }
}

.dsti-video-feature {
  overflow: hidden;
  border: 1px solid rgba(219, 229, 232, .90);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(6, 31, 42, .16);
}

.dsti-video-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  padding: 0;
  margin: 0;
  background: #061f2a;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.dsti-video-poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .36s ease;
}

.dsti-video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 24%, rgba(108, 198, 208, .18), transparent 24rem),
    linear-gradient(180deg, rgba(6, 31, 42, .08), rgba(6, 31, 42, .72));
}

.dsti-video-poster:hover img,
.dsti-video-poster:focus-visible img {
  transform: scale(1.025);
}

.dsti-video-poster:focus-visible {
  outline: 3px solid var(--life-teal, #6cc6d0);
  outline-offset: 4px;
}

.dsti-video-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: clamp(62px, 8vw, 88px);
  height: clamp(62px, 8vw, 88px);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .24);
}

.dsti-video-play::before {
  content: "";
  position: absolute;
  left: 53%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid var(--life-magenta, #910048);
}

.dsti-video-poster-text {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
  bottom: clamp(16px, 2vw, 22px);
  display: grid;
  gap: 4px;
}

.dsti-video-poster-text strong,
.dsti-video-poster-text small {
  display: block;
}

.dsti-video-poster-text strong {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: -.04em;
}

.dsti-video-poster-text small {
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
  line-height: 1.35;
}

.dsti-video-caption {
  display: grid;
  gap: 5px;
  padding: 18px clamp(18px, 2vw, 24px) 22px;
}

.dsti-video-caption strong,
.dsti-video-caption span {
  display: block;
}

.dsti-video-caption strong {
  color: var(--life-ink, #061f2a);
  font-size: clamp(1.08rem, 1.5vw, 1.38rem);
  letter-spacing: -.035em;
}

.dsti-video-caption span {
  color: var(--life-muted, #5f737b);
  line-height: 1.42;
}

.video-modal[hidden] {
  display: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 22px;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 31, 42, .82);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.video-modal-panel video {
  display: block;
  width: 100%;
  max-height: min(76svh, 720px);
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--life-ink, #061f2a);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

html.has-video-modal,
html.has-video-modal body {
  overflow: hidden;
}

@media (max-width: 960px) {
  .dsti-video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dsti-lifestyle-videos {
    padding: 52px 0;
  }

  .dsti-video-coming {
    display: grid;
  }

  .dsti-video-poster {
    aspect-ratio: 4 / 5;
  }

  .video-modal {
    padding: 14px;
  }

  .video-modal-panel {
    border-radius: 22px;
  }
}
