/* ==========================================================================
   YouTube click-to-load consent placeholder (SiloCrusher.com)
   Added 2026-07 for GDPR/§25 TDDDG: no connection to YouTube/Google until the
   visitor clicks to load. Uses NO external image (YouTube thumbnails would
   themselves contact Google), so nothing is requested from Google beforehand.
   ========================================================================== */
.yt-consent {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  border: 0;
  border-radius: 4px;
  padding: 22px;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  color: var(--cream, #e8ddd4);
  background: linear-gradient(135deg, #2f3a4a 0%, #462519 100%);
  transition: filter 0.15s ease;
}
.yt-consent:hover,
.yt-consent:focus-visible {
  filter: brightness(1.12);
  outline: 2px solid var(--gold, #d8a437);
  outline-offset: -3px;
}
.yt-consent__play {
  width: 68px;
  height: 48px;
  flex: none;
  border-radius: 12px;
  background: var(--red, #8a1111);
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.yt-consent__play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
}
.yt-consent__label {
  font-size: 16px;
  font-weight: 600;
}
.yt-consent__note {
  font-size: 11.5px;
  line-height: 1.4;
  max-width: 92%;
  color: var(--cream-dim, #d5c8bf);
}
.video-consent-hint {
  max-width: 680px;
  margin: 8px auto 0;
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--cream-dim, #d5c8bf);
  text-align: center;
}
.video-consent-hint a { color: var(--gold, #d8a437); }
