.announcement-bar {
    width: 100%;
    padding: 10px 52px 10px 20px;
    position: relative;
    z-index: 9999;
}

.announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 16px;
}

.announcement-bar__text {
    flex: 1;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

.announcement-bar__text p {
    margin: 0;
    display: inline;
}

.announcement-bar__text a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
}

.announcement-bar__text a:hover {
    opacity: 0.8;
}

.announcement-bar__close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    padding: 0;
    color: #ffffff;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.announcement-bar__close::before,
.announcement-bar__close::after {
    display: none;
    content: none;
    background: none;
}

.announcement-bar__close:hover {
    transform: translateY(-50%);
    background: none;
    opacity: 1;
    padding: 0;
}
