.vac-consent[hidden] { display: none; }
.vac-consent {
  position: fixed;
  inset: auto 0 0;
  z-index: 10001;
  padding: 1rem;
  color: #f7f7f5;
  background: rgba(17, 17, 17, .98);
  border-top: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 -10px 32px rgba(0, 0, 0, .28);
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}
.vac-consent__inner {
  width: min(70rem, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  align-items: center;
}
.vac-consent strong { display: block; margin-bottom: .25rem; font-size: 1rem; }
.vac-consent p { margin: 0; max-width: 62rem; color: #e0ded9; font-size: .92rem; line-height: 1.5; }
.vac-consent a { color: #fff; font-size: .88rem; text-underline-offset: .2em; }
.vac-consent__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.vac-consent__action {
  min-height: 2.9rem;
  padding: .7rem 1rem;
  color: #fff;
  background: #303030;
  border: 2px solid #fff;
  border-radius: .45rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.vac-consent__action:hover { background: #484848; }
.vac-consent__action:focus-visible,
.vac-privacy-settings:focus-visible { outline: 3px solid #ff5a5f; outline-offset: 3px; }
.vac-privacy-settings {
  position: fixed;
  left: .75rem;
  bottom: 4.5rem;
  z-index: 10000;
  padding: .4rem .65rem;
  color: #fff;
  background: #202020;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: .35rem;
  font: 600 .76rem/1 system-ui, -apple-system, "Segoe UI", sans-serif;
  cursor: pointer;
}
@media (min-width: 48rem) {
  .vac-privacy-settings { bottom: .75rem; }
}
@media (min-width: 52rem) {
  .vac-consent__inner { grid-template-columns: minmax(0, 1fr) auto; }
  .vac-consent__actions { min-width: 25rem; }
}
