.boston-top-bar-announcement { /* Clase renombrada */
    width: 100%;
    /* Usamos el color rojo de Boston como fondo principal */
    background: var(--boston-rojo, #C62828); /* Usar --boston-rojo definido en tu archivo de variables */
    color: #fff;
    font-size: 1.05em;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0;
    margin: 0;
    z-index: 1200;
    position: relative;
    /* Sombra con un toque del rojo de Boston */
    box-shadow: 0 2px 8px rgba(198, 40, 40, 0.08); /* Usar RGBA del rojo de Boston */
    /* Borde inferior más suave y relacionado con el rojo */
    border-bottom: 1.5px solid #efdcdc; /* Color claro derivado del rojo */
    overflow: hidden;
}
.boston-top-bar-swiper { width: 100%; } /* Clase renombrada */
.boston-top-bar-swiper .swiper-slide { /* Clase renombrada */
    padding: 2px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 36px;
    font-size: 1.03em;
    line-height: 1.1;
    background: none;
}
.boston-top-bar-swiper .swiper-pagination, /* Clase renombrada */
.boston-top-bar-swiper .swiper-button-next, /* Clase renombrada */
.boston-top-bar-swiper .swiper-button-prev { /* Clase renombrada */
    display: none !important; /* Oculta los elementos de navegación y paginación de Swiper */
}
@media (max-width: 700px) {
    .boston-top-bar-announcement { font-size: 0.97em; } /* Clase renombrada */
}