.module--welcome-video {
  background-color: var(--c-cream);
  text-align: center;
}

.module--welcome-video .welcome-video__heading {
  font-family: var(--ff-head);
  font-weight: 800;
  color: var(--c-maroon);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 2.5rem;
}

.module--welcome-video .welcome-video__card {
  position: relative;
  display: block;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font: inherit;
}

.module--welcome-video .welcome-video__thumb {
  display: block;
  width: 100%;
  height: auto;
}

.module--welcome-video .welcome-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-maroon);
  box-shadow: 0 6px 22px rgba(13, 13, 13, 0.28);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

.module--welcome-video .welcome-video__play svg {
  margin-left: 4px; /* optical centering of the triangle */
}

.module--welcome-video .welcome-video__card:hover .welcome-video__play,
.module--welcome-video .welcome-video__card:focus-visible .welcome-video__play {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--c-white);
}

@media (max-width: 768px) {
  .module--welcome-video .welcome-video__play {
    width: 68px;
    height: 68px;
  }
  .module--welcome-video .welcome-video__play svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .module--welcome-video .welcome-video__card {
    border-radius: 10px;
  }
  .module--welcome-video .welcome-video__play {
    width: 58px;
    height: 58px;
  }
}

/* ── Video modal (lightbox player) ───────────────────────────────── */
.video-modal[hidden] {
  display: none;
}

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

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.86);
}

.video-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 1100px;
}

.video-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
}

.video-modal__player video {
  display: block;
  width: 100%;
  height: 100%;
}

.video-modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-maroon);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

body.has-open-modal {
  overflow: hidden;
}
