/* ===========================
   About page – video layout
   =========================== */

/* Center the single video row and match .container width */
.about-page .about-video-row.container.single {
  display: flex !important;       /* override grid from base */
  justify-content: center;
  margin: 2rem auto;              /* room below hero */
  padding: 0 1rem;
  max-width: 1200px;
}

/* Reset figure margins and make a clean card */
.about-page figure.about-video {
  margin: 0 auto;
  width: min(960px, 100%);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

/* Video fills the card */
.about-page figure.about-video > video {
  display: block;
  width: 100%;
  height: auto;
}

/* Full‑frame Play overlay (shown only if autoplay fails) */
.about-page figure.about-video > .play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(transparent 55%, rgba(0,0,0,.35) 100%);
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: clamp(28px, 6vw, 56px);
}
.about-page figure.about-video > .play-btn[hidden] { display: none; }
.about-page figure.about-video > .play-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* “Unmute” pill shown while playing muted */
.about-page figure.about-video > .unmute-btn {
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  border: 0;
  border-radius: 999px;
  padding: .45rem .75rem;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .9rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}
.about-page figure.about-video > .unmute-btn:hover { background: rgba(0,0,0,.75); }
.about-page figure.about-video > .unmute-btn[hidden] { display: none; }

/* Hide-only helper already exists in your base as .sr-only */
