body.theme-default {
    margin: 0;
}

/* Contenedor principal */
.hot-topics-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
    padding: 0px 28px;
    background-color: white;
    overflow: hidden;
    white-space: nowrap; /* Asegura que todo el contenido esté en una línea */
}

/* Estilo del título "ES NOTICIA:" */
.hot-topics-title {
    font-weight: bold;
    font-size: 14px;
    color: #892333;
    margin-right: 10px;
    text-transform: uppercase;
}


/* Lista de etiquetas - barra scrollable */
.hot-topics-bar {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 8px; /* Espaciado entre las etiquetas y los separadores */
    overflow-x: auto; /* Habilita scroll horizontal */
    -webkit-overflow-scrolling: touch; /* Suaviza el scroll en dispositivos móviles */
    scrollbar-width: none; /* Oculta la barra de desplazamiento en Firefox */
}

.hot-topics-bar::-webkit-scrollbar {
    display: none; /* Oculta la barra de desplazamiento en navegadores WebKit */
}

/* Estilo de las etiquetas */
.hot-topics-bar .hot-topic-tag a {
    text-decoration: none;
    font-size: 14px;
    color: #313131;
    transition: color 0.3s ease;
    font-family: "Exo", sans-serif;
    font-weight: 500;
    white-space: nowrap; /* Evita que el texto se divida en varias líneas */
}

.hot-topic-tag a:hover {
    color: #800000; /* Color rojo al pasar el ratón */
}

/* Estilo del separador */
.hot-topic-separator {
    font-size: 14px;  /* Tamaño del separador */
    color: #892333;  /* Color del separador */
    font-weight: bold;
    flex-shrink: 0; /* Evita que el separador se colapse en pantallas pequeñas */
}

/* Responsive: Ajustes para móviles */
@media (max-width: 768px) {
    .hot-topics-bar {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hot-topics-bar::-webkit-scrollbar {
        display: none;
    }

    .hot-topics-wrapper {
        overflow: hidden;
        padding-left: 4px;
    }
}

.elementor-448476 .elementor-element.elementor-element-24d62526:not(.elementor-motion-effects-element-type-background) {
     min-height: 52px;
}



