.announcement-bar {
    width: 100%;
    background-color: #A90D2C;
    color: #ffffff;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    box-sizing: border-box;
}

.announcement-bar__track {
    display: inline-flex;
    animation: announcement-scroll 70s linear infinite;
}

.announcement-bar__text {
    display: inline-block;
    padding-right: 60px; /* gap before the text repeats */
    font-size: 14px;
    color: #ffffff;
}

.announcement-bar__text a {
    color: #ffffff;
    text-decoration: underline;
}

.announcement-bar__text a:hover {
    opacity: 0.85;
}

@keyframes announcement-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause on hover so people can click the email link */
.announcement-bar:hover .announcement-bar__track {
    animation-play-state: paused;
}

@media (max-width: 640px) {
    .announcement-bar__text {
        font-size: 12px;
    }
}