/* Start custom CSS for html, class: .elementor-element-3290a51 */.news-article{
    max-width:1100px;
    margin:auto;
    font-family:'Inter',sans-serif;
    color:#1f2937;
}

/* HERO */

.hero-news{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:50px;
}

.hero-news img{
    width:100%;
    height:650px;
    object-fit:cover;
    display:block;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.80),
        rgba(0,0,0,.15)
    );
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:50px;
}

.news-category{
    background:#b91c1c;
    color:#fff;
    display:inline-block;
    padding:8px 16px;
    border-radius:50px;
    font-size:.85rem;
    font-weight:600;
    margin-bottom:20px;
}

.hero-overlay h1{
    color:#fff;
    font-size:3rem;
    line-height:1.15;
    max-width:850px;
    margin:0;
}

.news-meta{
    color:#d1d5db;
    margin-top:20px;
    display:flex;
    gap:25px;
}

/* RESUMEN */

.news-summary{
    margin-bottom:60px;
}

.summary-card{
    background:#f8fafc;
    padding:35px;
    border-left:5px solid #b91c1c;
    border-radius:12px;
}

.summary-card h2{
    margin-top:0;
}

/* CONTENIDO */

.news-content{
    max-width:850px;
    margin:auto;
    font-size:1.12rem;
    line-height:1.9;
}

.news-content p{
    margin-bottom:25px;
}

/* FOTO */

.featured-image{
    margin:50px 0;
}

.featured-image img{
    width:100%;
    border-radius:16px;
}

.featured-image figcaption{
    margin-top:12px;
    color:#6b7280;
    font-size:.9rem;
}

/* CITA */

blockquote{
    margin:50px 0;
    padding:35px;
    background:#f8fafc;
    border-left:6px solid #b91c1c;
    font-size:1.3rem;
    font-style:italic;
    border-radius:12px;
}

blockquote cite{
    display:block;
    margin-top:15px;
    font-size:1rem;
    font-style:normal;
    font-weight:600;
}

/* DATOS */

.project-data{
    margin:80px 0;
}

.project-data h2{
    text-align:center;
    margin-bottom:40px;
}

.data-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.data-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:16px;
    padding:30px;
    text-align:center;
}

.number{
    display:block;
    font-size:2rem;
    font-weight:800;
    color:#b91c1c;
}

.label{
    color:#6b7280;
}

/* FOTO DESTACADA */

.image-highlight{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:40px;
    align-items:center;
    margin:80px 0;
}

.image-highlight img{
    width:100%;
    border-radius:18px;
}

.highlight-text h2{
    margin-top:0;
}

.highlight-text p{
    line-height:1.8;
}

/* CIERRE */

.news-footer{
    background:#f8fafc;
    padding:50px;
    border-radius:20px;
}

.news-footer h2{
    margin-top:0;
}

/* RESPONSIVE */

@media(max-width:768px){

    .hero-news img{
        height:450px;
    }

    .hero-overlay{
        padding:30px;
    }

    .hero-overlay h1{
        font-size:2rem;
    }

    .data-grid{
        grid-template-columns:1fr 1fr;
    }

    .image-highlight{
        grid-template-columns:1fr;
    }

    .news-footer{
        padding:30px;
    }
}/* End custom CSS */