

.wz-de {
  --wz-de-r-box: 16px;
  --wz-de-line:  rgba(23, 23, 23, .09);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: var(--wz-sec-y) 0;

  background: var(--wz-wash);
  font-family: var(--wz-ui-font);
  color: var(--wz-ink);
}

.wz-de *,
.wz-de *::before,
.wz-de *::after { box-sizing: border-box; }

.wz-de :where(p, h2, h3, h4) { margin: 0; padding: 0; }

.wz-de-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

.wz-de-inner {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.wz-de-nb { white-space: nowrap; }

.wz-de-stage {
  max-width: 860px;
  margin: 0 auto;
}

.wz-de-frame {
  position: relative;
  border: 1px solid var(--wz-de-line);
  border-radius: var(--wz-de-r-box);
  overflow: hidden;
  background: #fff;

  box-shadow: 0 30px 64px -34px rgba(23, 23, 23, .45);
}

.wz-de-thumb {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}

.wz-de-play-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  text-decoration: none;
}

.wz-de-play {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;

  border: 5px solid rgba(255, 255, 255, .92);
  background: var(--wz-btn-bg);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  text-indent: 3px;
  box-shadow: 0 10px 26px -10px rgba(23, 23, 23, .45);
  transition: transform .25s cubic-bezier(.22, .61, .36, 1), background-color .25s ease;
}

.wz-de-play svg {
  width: 22px;
  height: 22px;
  display: block;
}

.wz-de-play-link:hover .wz-de-play { transform: scale(1.07); background: var(--wz-btn-bg-hover); }
.wz-de-play-link:active .wz-de-play { transform: scale(.97); }
.wz-de-play-link:hover ~ .wz-de-thumb { transform: scale(1.03); }

.wz-de-play-link:focus-visible {
  outline: 3px solid var(--wz-brand);
  outline-offset: -4px;
  border-radius: var(--wz-de-r-box);
}

.wz-de-note {
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--wz-ink-soft);
}

.wz-de-note a {
  color: var(--wz-ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(23, 23, 23, .28);
}
.wz-de-note a:hover { color: var(--wz-btn-bg); text-decoration-color: currentColor; }

.wz-de-cta { margin-top: 30px; }

.wz-de-quiet {
  display: block;

  margin-top: 10px;
}

.wz-de.is-js .wz-de-rv {
  opacity: 0;
  transform: translateY(12px);
}

.wz-de.is-js.is-in .wz-de-rv {
  opacity: 1;
  transform: none;
  transition:
    opacity .5s ease var(--d, 0s),
    transform .5s cubic-bezier(.22, .61, .36, 1) var(--d, 0s);
}

.wz-de-modal {
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.wz-de-modal[open] {
  display: grid;
  place-items: center;
}

.wz-de-modal::backdrop {
  background: rgba(7, 15, 26, 0);
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0);
  transition:
    background .3s ease,
    -webkit-backdrop-filter .3s ease,
    backdrop-filter .3s ease;
}

.wz-de-modal.is-open::backdrop {
  background: rgba(7, 15, 26, .86);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.wz-de-modal__box {
  position: relative;

  width: min(1100px, 92vw, calc((100vh - 120px) * 16 / 9));
  width: min(1100px, 92vw, calc((100dvh - 120px) * 16 / 9));
  opacity: 0;
  transform: scale(.93) translateY(18px);
  transition:
    opacity .24s ease,
    transform .34s cubic-bezier(.16, 1, .3, 1);
}

.wz-de-modal.is-open .wz-de-modal__box {
  opacity: 1;
  transform: none;
}

.wz-de-modal__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #0d1c2f;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8);
}

.wz-de-modal__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .wz-de-modal,
  .wz-de-modal *,
  .wz-de-modal::backdrop {
    transition: none !important;
    animation: none !important;
  }
  .wz-de-modal__box { opacity: 1; transform: none; }
  .wz-de-modal::backdrop { background: rgba(7, 15, 26, .9); }
}

@media (max-width: 767px) {
  .wz-de-inner { padding: 0 16px; }

  .wz-de-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(18, 14, 20, .3), rgba(18, 14, 20, .46));
  }

  .wz-de-thumb {
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    object-position: 50% 50%;
  }

  .wz-de-play { width: 82px; height: 82px; font-size: 24px; border-width: 5px; }
  .wz-de-cta { margin-top: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .wz-de *,
  .wz-de *::before,
  .wz-de *::after {
    animation: none !important;
    transition: none !important;
  }
  .wz-de.is-js .wz-de-rv { opacity: 1 !important; transform: none !important; }
}

.wz-de { position: relative; isolation: isolate; }

.wz-de::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64'%3E%3Ccircle cx='32' cy='32' r='8.5' fill='none' stroke='%23171717' stroke-opacity='.05' stroke-width='1'/%3E%3C/svg%3E"),
    radial-gradient(58% 62% at 50% 46%,
      var(--wz-tint) 0%, transparent 72%);
  background-size: 64px 64px, 100% 100%;
  background-repeat: repeat, no-repeat;
  -webkit-mask-image: var(--wz-decor-mask);
          mask-image: var(--wz-decor-mask);
}
