.announcement-bar {
    background-color: var(--color-primary);
    box-sizing: border-box;
    z-index: 99;
}

.announcement-prev,
.announcement-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    border: 0;
    background: none;
    color: inherit;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    opacity: 0.7;
    flex-shrink: 0;
    line-height: 1;
}

.announcement-prev {
    inset-inline-start: 20px;
}

.announcement-next {
    inset-inline-end: 20px;
}

.announcement-prev:hover,
.announcement-next:hover {
    opacity: 1;
}

.announcement-item a {
    color: var(--color-bg-white);
    text-decoration: underline;
    transition: opacity var(--transition-fast);
}

.announcement-item a:hover {
    opacity: 0.9;
}

