/* Cookie-consent notice — bottom-fixed informational bar (essential-cookies-only site). */
.cookie-consent {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    /* Below the Remodal overlay (9999) so the privacy popup opens on top of the bar. */
    z-index: 9998;
    background: #ffffff;
    box-shadow: 0 -0.125rem 0.75rem rgba(0, 0, 0, 0.12);
    padding-block: 1rem;
}

/* .section__wrapper supplies the site max-width + horizontal padding (aligns with the footer). */
.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.cookie-consent__text {
    margin: 0;
    flex: 1 1 20rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.cookie-consent__link {
    text-decoration: underline;
}

.cookie-consent__accept {
    flex: 0 0 auto;
}

/* Mobile: stack content centered and let the button span the row. */
@media (max-width: 575px) {
    .cookie-consent__inner {
        justify-content: center;
        text-align: center;
    }

    .cookie-consent__accept {
        width: 100%;
    }
}
