#top-header-wrapper .announcent-heading {
    background-color: var(--han-bg-color);
    padding: 4px 15px;
    color: var(--han-text-color);
    margin-right: 10px;
    font-size: 14px;
    font-weight: bold;
}

#top-header-wrapper .announcent-active-link {
    color: #2c2c7c;
    font-size: 13px;
    text-decoration: none;
}

.announcement-marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    max-width: 100%;
}

.announcement-marquee {
    display: inline-block;
    animation: scroll-left var(--han-speed) linear infinite;
}

.announcement-marquee ul {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.announcement-marquee-wrapper:hover .announcement-marquee {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% { transform: translateX(50%); }
    100% { transform: translateX(-100%); }
}
