.consent-banner {
    position: fixed;
    z-index: 5000;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    left: max(16px, env(safe-area-inset-left));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(760px, calc(100% - 32px));
    margin: 0 auto;
    padding: 16px 18px;
    border: 1px solid rgba(25, 128, 140, .18);
    border-radius: 18px;
    color: #17383D;
    background: rgba(253, 253, 251, .98);
    box-shadow: 0 16px 46px rgba(29, 96, 106, .2);
    font-family: "Host Grotesk", system-ui, sans-serif;
}
.consent-copy { min-width: 0; }
.consent-copy strong { display: block; margin-bottom: 3px; font-size: .94rem; }
.consent-copy p { margin: 0; color: #5E7377; font-size: .78rem; line-height: 1.45; }
.consent-copy a { color: #19808C; text-underline-offset: 2px; }
.consent-actions { display: flex; flex: 0 0 auto; gap: 8px; }
.consent-actions button,
.consent-settings-button {
    appearance: none;
    border: 1px solid #19808C;
    border-radius: 999px;
    color: #19808C;
    background: transparent;
    font: inherit;
    font-size: .76rem;
    font-weight: 650;
    cursor: pointer;
}
.consent-actions button { min-height: 38px; padding: 8px 13px; }
.consent-actions button:last-child { color: white; background: #19808C; }
.consent-actions button:hover,
.consent-actions button:focus-visible { box-shadow: 0 0 0 3px rgba(25, 128, 140, .16); outline: none; }
.consent-settings-button { padding: 0; border: 0; border-radius: 0; color: inherit; font-size: inherit; font-weight: 500; text-decoration: underline; text-decoration-thickness: .5px; text-underline-offset: 2px; }
.menu-legal .consent-settings-button,
.page-menu-legal .consent-settings-button { font-size: inherit; }

@media (max-width: 640px) {
    .consent-banner { align-items: stretch; flex-direction: column; gap: 12px; padding: 14px; }
    .consent-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .consent-actions button { padding-inline: 10px; white-space: normal; }
}
