.cookie-banner {
    position: fixed;
    z-index: 10000;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .8rem 0;
    background: #003f43;
    color: #fff;
    border-top: 1px solid rgba(215, 174, 103, .55);
    box-shadow: 0 -8px 28px rgba(20, 25, 24, .2);
    font-family: 'Trebuchet MS', Arial, sans-serif;
}

.cookie-banner__inner {
    width: min(calc(100% - 40px), 1180px);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
}

.cookie-banner__copy {
    min-width: 0;
}

.cookie-banner__title {
    margin: 0 0 .18rem;
    color: #f0cf91;
    font: 600 1rem/1.25 Georgia, 'Times New Roman', serif;
}

.cookie-banner__text {
    margin: 0;
    max-width: 820px;
    color: rgba(255, 255, 255, .94);
    font-size: .9rem;
    line-height: 1.5;
}

.cookie-banner__text a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: .14em;
}

.cookie-banner__text a:hover,
.cookie-banner__text a:focus-visible {
    text-decoration-thickness: 2px;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: .55rem;
    flex: 0 0 auto;
}

.cookie-banner__button {
    min-height: 44px;
    min-width: 92px;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 3px;
    padding: .55rem .9rem;
    font: inherit;
    font-size: .86rem;
    font-weight: 800;
    cursor: pointer;
}

.cookie-banner__button--primary {
    background: #d7ae67;
    color: #1e2928;
    border-color: #d7ae67;
}

.cookie-banner__button--secondary {
    background: transparent;
    color: #fff;
}

.cookie-banner__button:hover {
    transform: translateY(-1px);
}

.cookie-banner__button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

@media (max-width: 720px) {
    .cookie-banner {
        padding: 1rem 0;
    }

    .cookie-banner__inner {
        width: min(calc(100% - 30px), 1180px);
        align-items: flex-start;
        flex-direction: column;
        gap: .85rem;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__button {
        flex: 1 1 0;
    }
}
