.privacy-consent {
  position: fixed;
  z-index: 100000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  background: rgba(20, 29, 24, 0.97);
  color: #fff;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}
.privacy-consent__inner { max-width: 72rem; margin: 0 auto; }
.privacy-consent h2 { margin: 0 0 .5rem; color: #fff; font-size: 1.25rem; }
.privacy-consent__text { margin: 0 0 .8rem; line-height: 1.5; }
.privacy-consent__actions { display: flex; flex-wrap: wrap; gap: .65rem; align-items: center; }
.privacy-consent button,
.privacy-video-notice button {
  padding: .65rem 1rem;
  border: 2px solid #fff;
  border-radius: .25rem;
  background: #fff;
  color: #17231c;
  cursor: pointer;
  font: inherit;
}
.privacy-consent button:hover,
.privacy-consent button:focus { background: #e8efe9; }
.privacy-consent__details { color: #fff; text-decoration: underline; padding: .65rem .3rem; }
.privacy-video-notice {
  box-sizing: border-box;
  width: 100%;
  max-width: 40rem;
  min-height: 10rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #e9ece9;
  color: #263a2e;
}
@media (max-width: 600px) {
  .privacy-consent__actions { align-items: stretch; flex-direction: column; }
  .privacy-consent__actions > * { width: 100%; box-sizing: border-box; text-align: center; }
}
