﻿/* ==========================================================
   NOTICIA DESTACADA HOME
========================================================== */

.featured-news-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.10);
    transition: .25s ease;
}


    .featured-news-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 55px rgba(0,0,0,.15);
    }



/* IMAGEN */

.featured-news-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
}



/* CONTENIDO */

.featured-news-content {
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



.featured-news-title {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 1rem;
}



.featured-news-summary {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    margin-bottom: 1.5rem;
}



@media(max-width:991px) {

    .featured-news-image {
        height: 260px;
    }


    .featured-news-content {
        padding: 2rem;
    }


    .featured-news-title {
        font-size: 1.8rem;
    }
}
