

/* Contenedor del Título Principal */
    .section-title {
        color: bisque;
        font-weight: 800;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 2.5rem;
    }
/* Estilo Moderno de las Tarjetas (Cards) */
    .news-card-modern {
        background-color: #1a1a1a;
        border-radius: 15px;
        overflow: hidden;
        border: 1px solid rgba(255, 228, 196, 0.1); /* Bisque sutil */
        box-shadow: 0 10px 30px rgba(0,0,0,0.5); /* Sombra suave */
        margin: 15px; /* Espacio entre tarjetas */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Efecto al pasar el mouse */
    .news-card-modern:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(255, 228, 196, 0.15); /* Brillo Bisque */
    }

    /* Estilo del Contenedor de Texto */
    .card-body-text {
        padding: 25px;
    }

    /* Etiqueta de Categoría (Bisque) */
    .card-category {
        color: bisque;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.8rem;
        letter-spacing: 1.5px;
        display: block;
        margin-bottom: 10px;
    }

    /* Titular de la Noticia (Grande y Blanco) */
    .card-title-main {
        color: white;
        font-weight: 800;
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    /* Resumen de la Noticia (Gris y Suave) */
    .card-resumen {
        color: #b0b0b0;
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

/* segundo articulo */

    
   @keyframes alert-glow {
        0% { border-color: bisque; box-shadow: 0 0 10px rgba(255, 228, 196, 0.3); }
        50% { border-color: #ff0000; box-shadow: 0 0 25px rgba(255, 0, 0, 0.6); }
        100% { border-color: bisque; box-shadow: 0 0 10px rgba(255, 228, 196, 0.3); }
    }

    /* Animación para el punto rojo */
    @keyframes pulse-red {
        0% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.5; transform: scale(1.2); }
        100% { opacity: 1; transform: scale(1); }
    }

    /* Animación para el texto de Breaking News */
    @keyframes blink-text {
        0% { opacity: 1; }
        50% { opacity: 0.7; }
        100% { opacity: 1; }
    }

    .flash-news-card {
        display: flex; 
        align-items: center; 
        background-color: #000; 
        border: 4px solid bisque; 
        border-radius: 20px; 
        overflow: hidden; 
        flex-wrap: wrap;
        animation: alert-glow 2.5s infinite;
        box-shadow: 0 15px 40px rgba(0,0,0,0.9);
    }

    .news-title {
        color: bisque; 
        font-family: 'Arial Black', sans-serif; 
        font-size: 2.2rem; 
        margin-bottom: 15px; 
        line-height: 1.1;
        text-transform: uppercase;
        letter-spacing: -1px;
    }


    
    /* media query */

/* Margen normal para Computadora */
/* En PC se mantiene normal */
    .noticia-ajustada {
        margin-top: 3rem !important;
        margin-bottom: 3rem !important;
    }

    /* EN MÓVILES (Aquí está la magia) */
    @media (max-width: 768px) {
        .noticia-ajustada {
            /* Usamos margen negativo para subir la noticia y eliminar el hueco del carrusel */
            margin-top: -3rem !important; 
            margin-bottom: 3rem !important;
            padding: 0 15px !important;
        }
    }