.training-entry {
  position: relative;
  min-height: calc(100svh - 64px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
  background: #050505;
  isolation: isolate;
}

.training-entry__motion,
.training-entry__video,
.training-entry__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.training-entry__motion {
  z-index: -3;
  overflow: hidden;
}

.training-entry__motion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.12) brightness(.68);
}

.training-entry__video {
  z-index: -2;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.12) brightness(.68);
  opacity: 0;
  transition: opacity .2s ease;
}

.training-entry__video.is-playing {
  opacity: 1;
}

.training-entry__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.06) 34%, rgba(0,0,0,.42)),
    radial-gradient(circle at center, transparent 15%, rgba(0,0,0,.38) 100%);
}

.training-entry__content {
  width: min(760px, calc(100% - 40px));
  text-align: center;
  animation: training-entry-in 1s .18s ease-out both;
}

.training-entry__content .eyebrow {
  margin-bottom: 13px;
  color: var(--white);
  font-size: clamp(.68rem, 1.5vw, .82rem);
  letter-spacing: .12em;
}

.training-entry__content h1 {
  margin: 0;
  font: 400 clamp(2rem, 10.1vw, 5.25rem)/.9 var(--display);
  font-synthesis: none;
  letter-spacing: -.012em;
  text-transform: uppercase;
  text-wrap: balance;
}

.training-entry__button {
  min-width: min(310px, 88vw);
  min-height: 54px;
  margin-top: clamp(30px, 5vw, 46px);
  padding-inline: 24px;
  background: var(--white);
  border-color: var(--white);
  color: #090909;
}

.training-entry__button:hover,
.training-entry__button:focus-visible {
  background: var(--sand);
  border-color: var(--sand);
}

#training-unit-content {
  scroll-margin-top: 24px;
}

@keyframes training-entry-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
  .training-entry__content {
    width: calc(100% - 32px);
  }

}

@media (prefers-reduced-motion: reduce) {
  .training-entry__content {
    animation: none;
  }
  .training-entry__video { transition: none; }
}

.hero-video-control{position:absolute;z-index:3;right:24px;bottom:22px;min-height:44px;padding:10px 12px;border:1px solid var(--sand);background:#070707;color:var(--white);font:400 12px/1.3 var(--mono);letter-spacing:.06em;cursor:pointer}
