.announcement-bar {
    width: 100%;
    overflow: hidden;
    background: black;
    color: white;
    white-space: nowrap;
}

.announcement-track {
    display: flex;
    width: max-content;
    animation: scrollLoop 15s linear infinite;
}

.announcement-content {
    padding-right: 50px; /* gap between loops */
    font-size: 14px;
}

/* Animation */
@keyframes scrollLoop {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 768px) {
    .ps-block--site-features {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .ps-site-features {
        display: none;
    }
}

.ms-1 {
font-weight: 500;
}

.mega-menu__column {
line-height: 2;
}