.cookie-banner {
    align-items: center;
    background: #ffffff;
    border-top: 1px solid #d8dee5;
    bottom: 0;
    box-shadow: 0 -4px 18px rgba(22, 35, 51, 0.14);
    color: #263746;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    left: 0;
    padding: 18px 24px;
    position: fixed;
    right: 0;
    z-index: 10000;
}

.cookie-banner[hidden],
.cookie-settings[hidden] {
    display: none;
}

.cookie-banner__content {
    max-width: 780px;
}

.cookie-banner h2 {
    color: #1b2b3a;
    font-size: 18px;
    margin: 0 0 6px;
}

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

.cookie-banner__actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.cookie-banner__button,
.cookie-settings {
    border: 1px solid #107fc9;
    cursor: pointer;
    font-size: 14px;
    padding: 9px 16px;
}

.cookie-banner__button--primary,
.cookie-settings {
    background: #107fc9;
    color: #ffffff;
}

.cookie-banner__button--secondary {
    background: #ffffff;
    color: #107fc9;
}

.cookie-settings {
    bottom: 14px;
    left: 14px;
    position: fixed;
    z-index: 9999;
}

@media (max-width: 767px) {
    .cookie-banner {
        align-items: stretch;
        flex-direction: column;
        gap: 14px;
        padding: 16px;
    }

    .cookie-banner__actions {
        justify-content: flex-end;
    }
}