.consent-banner {
  position: sticky;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem max(1rem, calc((100vw - 76rem) / 2));
  background: #fffaf0;
  color: #292524;
  border-top: 2px solid #d6d3d1;
  box-shadow: 0 -4px 24px #29252415;
  font-size: 0.875rem;
  line-height: 1.5;
}

.consent-copy {
  flex: 1 1 32rem;
}

.consent-copy h2 {
  font-size: 1.125rem;
  font-weight: 700;
}

.consent-copy p {
  margin: 0.4rem 0;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.consent-button {
  border: 1px solid #44403c;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  background: #fff;
  color: #292524;
  font-weight: 700;
  cursor: pointer;
  min-height: 44px;
}

.consent-button:hover {
  background: #fef3c7;
}

.consent-button:focus-visible,
.consent-banner a:focus-visible,
.consent-page a:focus-visible {
  outline: 3px solid #92400e;
  outline-offset: 3px;
}

.consent-banner a,
.consent-page a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-page {
  max-width: 52rem;
  margin: 1rem auto;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: white;
  border-radius: 1.5rem;
  color: #292524;
  line-height: 1.7;
}

.consent-page h1 {
  font-size: 2rem;
  font-weight: 700;
}

.consent-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 1.5rem;
}

.consent-page p {
  margin: 1rem 0;
}

@media (max-width: 600px) {
  .consent-banner {
    max-height: 60vh;
    overflow-y: auto;
  }

  .consent-actions {
    width: 100%;
  }

  .consent-button {
    flex: 1;
  }
}
