@charset "utf-8";
/* Announcement bar wrapper */
.hab-bar {
    position: sticky;
    top: 0;
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 11px;
    box-sizing: border-box;
    z-index: 9999;
    font-weight: 500;
}

/* Desktop: show static list with separators */
.hab-desktop { display: block; }

/* Mobile rotating version */
.hab-mobile {
    display: none;
    overflow: hidden;
    min-height: 1em;
}

.hab-rotating-text {
    display: inline-block;
    transition: opacity 0.4s ease-in-out;
}

/* Separator style */
.hab-separator {
    margin: 0 10px;
    opacity: 0.5;
}

/* Responsive handling */
@media all and (max-width: 768px) {
    .hab-desktop { display: none; }

    .hab-mobile { display: block; }
}