/* ──────────────────────────────────────────────────────────────
   MODULE VIDEO SECTION  ·  Dark "theatre" card
   Rendered at the end of every module, above the Next button.
   See: /includes/module-videos.php (config)  +  core.js (injector)
   ────────────────────────────────────────────────────────────── */

.module-video-section {
  margin: 28px 0 20px;
  background: #111113;
  border: 1px solid #26262A;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.mv-eyebrow {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 4px;
}

.mv-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: #F5F5F4;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* ── The clickable thumbnail (shown until user clicks play) ── */
.mv-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.18s ease;
}

.mv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.3s ease;
}

.mv-thumb:hover img,
.mv-thumb:active img {
  opacity: 1;
  transform: scale(1.02);
}

/* Play-button overlay — YouTube-style red rounded rectangle */
.mv-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(33, 33, 33, 0.85);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.mv-thumb:hover .mv-play-btn,
.mv-thumb:active .mv-play-btn {
  background: #FF0000;
  transform: translate(-50%, -50%) scale(1.05);
}

.mv-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 14px solid #FFFFFF;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}

/* Once activated, the iframe replaces the thumbnail contents */
.mv-thumb.mv-active {
  cursor: default;
}

.mv-thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Small footer line under every card ── */
.mv-foot {
  margin-top: 10px;
  font-family: 'Lora', serif;
  font-size: 0.76rem;
  color: #9CA3AF;
  font-style: italic;
  line-height: 1.45;
}
