/* Cookie / external content consent */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 99999;
  max-width: 1200px;
  margin: 0 auto;
  background: #111;
  color: #f2f2f2;
  border: 1px solid rgba(242, 242, 242, 0.25);
  border-radius: 12px;
  padding: 1rem;
  font-family: var(--font-main, sans-serif);
  display: none;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { margin: 0; font-size: 0.9rem; line-height: 1.4; }
.cookie-banner a { color: #f2f2f2; text-decoration: underline; text-underline-offset: 3px; }
.cookie-buttons { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-buttons button,
.youtube-placeholder button {
  font-family: var(--font-main, sans-serif);
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid #f2f2f2;
  background: transparent;
  color: #f2f2f2;
  cursor: pointer;
}
.cookie-buttons button:hover,
.youtube-placeholder button:hover { opacity: 0.75; }
.cookie-buttons .accept-cookies,
.youtube-placeholder button { background: #f2f2f2; color: #111; }
.youtube-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  border-radius: 10px;
  background: #111;
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: var(--font-main, sans-serif);
}
.youtube-placeholder.hero,
main > .youtube-placeholder:first-of-type {
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 9;
  margin-bottom: 2rem;
}
.youtube-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.youtube-placeholder__inner {
  max-width: 520px;
  padding: 1.5rem;
  text-align: center;
}
.youtube-placeholder__inner p {
  margin: 0 0 1rem 0;
  font-family: var(--font-main, sans-serif);
  font-size: 0.95rem;
  line-height: 1.45;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-buttons { width: 100%; }
  .cookie-buttons button { flex: 1; }
  .youtube-placeholder { min-height: 180px; }
}


/* Legal footer / legal pages */
.legal-footer {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  color: rgba(242, 242, 242, 0.7);
  font-family: var(--font-main, sans-serif);
  font-size: 0.85rem;
  line-height: 1.4;
}
.legal-footer a {
  color: rgba(242, 242, 242, 0.7);
  text-decoration: none;
}
.legal-footer a:hover {
  color: #f2f2f2;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-page {
  max-width: 900px;
  margin: 4rem auto;
  padding: 0 2rem;
  color: var(--text, #f2f2f2);
  font-family: var(--font-main, sans-serif);
}
.legal-page h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.legal-page h2 {
  font-size: 1.45rem;
  margin: 2.2rem 0 0.8rem;
}
.legal-page h3 {
  font-size: 1.05rem;
  margin: 1.4rem 0 0.5rem;
}
.legal-page p,
.legal-page li {
  font-family: var(--font-text, serif);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.legal-page ul {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.legal-page a {
  color: var(--text, #f2f2f2);
  text-underline-offset: 3px;
}
.legal-muted {
  color: rgba(242, 242, 242, 0.72);
}
