.consent-banner {
    position: fixed;
    z-index: 10000;
    right: clamp(.75rem, 3vw, 2rem);
    bottom: clamp(.75rem, 3vw, 2rem);
    left: clamp(.75rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 74rem;
    margin-inline: auto;
    padding: clamp(1.1rem, 3vw, 1.65rem);
    border: 1px solid rgba(202, 137, 69, .65);
    border-radius: .35rem;
    background: #1c120d;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .35);
    color: #f5efe6;
    font-family: inherit;
}

.consent-banner__copy { max-width: 50rem; }
.consent-banner h2 { margin: 0 0 .45rem; color: inherit; font-size: clamp(1.15rem, 2vw, 1.4rem); }
.consent-banner p { margin: 0; color: inherit; font-size: .92rem; line-height: 1.55; }
.consent-banner a { color: #e0a15f; text-decoration: underline; text-underline-offset: 3px; }
.consent-banner__actions { display: flex; flex: 0 0 auto; gap: .65rem; }

.consent-button {
    min-height: 44px;
    padding: .72rem 1rem;
    border: 1px solid #ca8945;
    border-radius: 999px;
    font: 600 .86rem/1 inherit;
    letter-spacing: .03em;
    cursor: pointer;
}

.consent-button--primary { background: #a96525; color: #fff; }
.consent-button--secondary { background: transparent; color: #f5efe6; }
.consent-button:hover { filter: brightness(1.12); }
.consent-button:focus-visible, .consent-settings:focus-visible { outline: 3px solid #e0a15f; outline-offset: 3px; }

.consent-settings {
    margin-left: .5rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

@media (max-width: 760px) {
    .consent-banner { align-items: stretch; flex-direction: column; gap: 1rem; }
    .consent-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
    .consent-banner__actions { grid-template-columns: 1fr; }
}
