.dada-anniversary-banner {
    align-items: center;
    background: #1a1b1c;
    border-bottom: 3px solid #e78e47;
    color: #fff;
    display: flex;
    gap: 16px;
    justify-content: center;
    min-height: 52px;
    padding: 10px 48px 10px 16px;
    position: fixed;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 100000000;
}

.dada-anniversary-banner__text {
    font-family: Montserrat, Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
}

.dada-anniversary-banner__link {
    background: #e78e47;
    border: 1px solid #e78e47;
    color: #1a1b1c;
    display: inline-block;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    padding: 4px 12px;
    text-decoration: none;
    white-space: nowrap;
}

.dada-anniversary-banner__link:hover,
.dada-anniversary-banner__link:focus {
    background: #fff;
    border-color: #fff;
    color: #1a1b1c;
    text-decoration: none;
}

.dada-anniversary-banner__close {
    background: transparent;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 24px;
    line-height: 24px;
    padding: 8px;
    position: absolute;
    right: 8px;
    top: 8px;
}

.dada-anniversary-banner__close:hover,
.dada-anniversary-banner__close:focus {
    color: #e78e47;
}

body.dada-anniversary-active {
    padding-top: 52px;
}

@media (max-width: 600px) {
    .dada-anniversary-banner {
        gap: 8px;
        min-height: 64px;
        padding: 8px 40px 8px 8px;
    }

    .dada-anniversary-banner__text {
        font-size: 12px;
        line-height: 18px;
    }

    .dada-anniversary-banner__link {
        font-size: 11px;
        padding: 3px 8px;
    }

    body.dada-anniversary-active {
        padding-top: 64px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dada-anniversary-banner__link {
        transition: none;
    }
}