.cookie-consent {
    position: fixed;
    z-index: 10020;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 20px;
    color: #111827;
    background: #fff;
    border: 1px solid #d7e1ef;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .22);
}

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

.cookie-consent__copy strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.cookie-consent__copy p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-consent__copy a {
    color: #075ecf;
    font-weight: 700;
}

.cookie-consent__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.footer-cookie-link {
    padding: 0;
    color: inherit;
    font: inherit;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
}

.footer-cookie-link:hover,
.footer-cookie-link:focus-visible {
    text-decoration: underline;
}

@media (max-width: 720px) {
    .cookie-consent {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
    }

    .cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}
