.consent-preferences {
  display: inline-block;
  margin: 0 0 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ddd;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.consent-banner {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  width: min(calc(100% - 40px), 760px);
  margin-left: auto;
  padding: 22px;
  border: 3px solid var(--b, #111);
  background: #fff;
  color: var(--b, #111);
  box-shadow: 8px 8px 0 var(--y, #ffd43b);
}
.consent-banner[hidden],
.consent-gpc[hidden],
.consent-allow[hidden] {
  display: none;
}
.consent-copy strong {
  display: block;
  margin-bottom: 5px;
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}
.consent-copy p {
  max-width: 560px;
  margin: 0 0 7px;
  font-size: 0.9rem;
  line-height: 1.45;
}
.consent-copy a {
  color: var(--b, #111);
  font-size: 0.82rem;
  font-weight: 700;
}
.consent-actions {
  display: grid;
  gap: 8px;
  min-width: 180px;
}
.consent-actions .btn,
.consent-decline {
  min-height: 44px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}
.consent-actions .btn {
  border: 3px solid var(--b, #111);
  background: var(--y, #ffd43b);
  color: var(--b, #111);
}
.consent-decline {
  border: 2px solid var(--b, #111);
  background: #fff;
  color: var(--b, #111);
}
.consent-actions button:focus-visible,
.consent-preferences:focus-visible {
  outline: 3px solid var(--y, #ffd43b);
  outline-offset: 3px;
}
@media (max-width: 650px) {
  .consent-banner {
    right: 12px;
    bottom: calc(82px + env(safe-area-inset-bottom));
    left: 12px;
    grid-template-columns: 1fr;
    gap: 14px;
    width: calc(100% - 24px);
    padding: 17px;
    box-shadow: 5px 5px 0 var(--y, #ffd43b);
  }
  .consent-actions {
    grid-template-columns: 1fr 1fr;
    min-width: 0;
  }
  .consent-preferences {
    display: block;
    margin: 9px 0 0;
  }
}
