    /* ====== NUEVOS ESTILOS MODERNOS ====== */
    body {
        background-color: #f8fbff;
    }

    .blog-page-header {
        background-color: #f8fbff;
        position: relative;
        overflow: hidden;
        padding: 3rem 0 2rem 0;
        /* Reducido de 5rem 0 3rem 0 */
    }

    .blog-page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(rgba(13, 110, 253, 0.15) 1.5px, transparent 1.5px);
        background-size: 30px 30px;
        z-index: 0;
    }

    /* Noticia Destacada (Igual a index.php) */
    .featured-news-wrapper {
        border-radius: 20px;
        height: 100%;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .featured-news-wrapper:hover {
        transform: translateY(-5px);
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
    }

    .featured-img-container {
        height: 60%;
        min-height: 350px;
        background: #aab5bc;
    }

    .featured-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .featured-content-box {
        background: white;
        border-radius: 16px;
        margin: -80px 24px 24px 24px;
        padding: 2.5rem;
        position: relative;
        z-index: 2;
    }

    .modern-badge {
        background-color: #0d6efd;
        color: white;
        font-size: 0.75rem;
        font-weight: 800;
        padding: 0.4rem 0.8rem;
        border-radius: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .read-time {
        font-size: 0.85rem;
        color: #6c757d;
        font-weight: 600;
    }

    .featured-title {
        font-size: 1.8rem;
        font-weight: 800;
        color: #1e293b;
        line-height: 1.3;
    }

    .featured-excerpt {
        color: #64748b;
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .author-avatar {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.9rem;
        font-weight: 700;
        background-color: #cce0ff !important;
        color: #003366 !important;
    }

    .author-name {
        font-weight: 700;
        color: #334155;
        font-size: 1rem;
    }

    .post-date {
        font-size: 0.9rem;
        color: #94a3b8;
        font-weight: 600;
    }

    /* Noticias Secundarias */
    .side-news-card {
        border-radius: 16px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        background: #ffffff;
    }

    .side-news-link:hover .side-news-card {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 51, 102, 0.08) !important;
    }

    .side-img {
        border-top-left-radius: 16px;
        border-bottom-left-radius: 16px;
        object-position: center;
        object-fit: cover;
    }

    .ghost-badge {
        background-color: rgba(13, 110, 253, 0.1);
        color: #0d6efd;
    }

    .side-title {
        font-size: 1.15rem;
        font-weight: 800;
        color: #1e293b;
        line-height: 1.35;
    }

    .side-meta {
        font-size: 0.85rem;
        font-weight: 500;
    }

    /* Paginación */
    .page-item.active .page-link {
        background-color: #0d6efd;
        border-color: #0d6efd;
        color: white;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
    }

    .page-link {
        color: #0d6efd;
        font-weight: 600;
    }

    .page-link:hover {
        color: #0b5ed7;
    }

    @media (max-width: 991px) {
        .featured-content-box {
            margin: -40px 15px 15px 15px;
            padding: 1.5rem;
        }

        .featured-title {
            font-size: 1.4rem;
        }
    }

    @media (max-width: 767px) {
        .side-img {
            border-bottom-left-radius: 0;
            border-top-right-radius: 16px;
            min-height: 200px;
        }
    }