/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Nov 28 2025 | 17:58:28 */
/* 1. ESTRUCTURA GRID (3 Columnas) */
.featured-posts-widget {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

/* 2. TARJETA (CARD) */
.featured-post {
    background: #ffffff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.09);
    border: 1px solid #1615154D;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease;
}

.featured-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* 3. IMAGEN (Lógica "Fuerza Bruta" para evitar deformación) */

/* El contenedor externo */
.featured-image {
    width: 100% !important;
    height: 220px !important; /* Altura FIJA */
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
}

/* El enlace <a> (CRÍTICO: debe llenar el contenedor) */
.featured-image a {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

/* La imagen <img> (Se recorta para llenar el espacio) */
.featured-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Mágica: recorta sin estirar */
    object-position: center center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 4. CONTENIDO (Texto, Fecha, Botón) */
.featured-content {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.featured-date {
    font-size: 15px;
    color: #777;
    margin-bottom: 5px;
    display: block;
}

.featured-title {
    margin: 5px 0 10px 0 !important; 
    padding: 0 !important;
    line-height: 1.35 !important;
}

.featured-title a {
    display: block !important;
    font-size: 18px !important; 
    font-weight: 700 !important; 
    color: #141313 !important; 
    text-decoration: none !important; 
    transition: color 0.2s ease;
}

.featured-title a:hover {
    color: #F6007C !important; 
}

.featured-read-more {
    margin-top: auto;
    font-size: 16px;
    font-weight: 600;
    color: #D0077F;
    text-decoration: none;
    display: inline-block;
}


@media (max-width: 768px) {
   
    .featured-posts-widget {
        grid-template-columns: 1fr !important; 
    }

    .featured-image, 
    .featured-image a {
        height: 200px !important;
    }
}