.cookie-consent {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1100;
    max-width: 72rem;
    margin-inline: auto;
    padding: 1.25rem;
    color: var(--text-colour, #24302d);
    background: #fff;
    border: 1px solid var(--border-soft, #d9e0de);
    border-radius: 0.75rem;
    box-shadow: 0 1rem 3rem rgba(11, 36, 32, 0.22);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-consent__copy {
    max-width: 48rem;
}

.cookie-consent__eyebrow {
    margin: 0 0 0.35rem;
    color: var(--brand-green, #173f38);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cookie-consent h2 {
    margin: 0 0 0.5rem;
    color: var(--brand-green-dark, #0b2420);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.cookie-consent p:last-child {
    margin-bottom: 0;
}

.cookie-consent__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 0.75rem;
}

.footer-link-button {
    display: inline;
    margin: 0;
    padding: 0;
    color: #e9efed;
    background: transparent;
    border: 0;
    font: inherit;
    text-align: left;
    text-decoration: underline;
    cursor: pointer;
}

.footer-link-button:hover,
.footer-link-button:focus {
    color: #fff;
}

@media (max-width: 767.98px) {
    .cookie-consent {
        bottom: 5rem;
    }

    .cookie-consent__inner,
    .cookie-consent__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-consent__inner {
        gap: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-consent {
        scroll-behavior: auto;
    }
}
