/* =========================================================
   DUYURU SERIDI (site-header'in ustunde, sticky DEGIL)
   ========================================================= */
.announcement-bar {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    overflow: hidden;
}

.announcement-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
}

.announcement-bar__list {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.announcement-bar__item {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(100%);
    transition: transform 0.6s ease, opacity 0.6s ease;
    padding: 0 16px;
}

.announcement-bar__item.is-active {
    opacity: 1;
    transform: translateY(0);
}

.announcement-bar__item.is-leaving {
    opacity: 0;
    transform: translateY(-100%);
}
