/* ==========================================
   ESTILOS DE LISTADO DE PROYECTOS (V2)
   ========================================== */

.contenedor-v2 { 
    width: 100%; 
    box-sizing: border-box; 
}

/* Tarjeta de Proyecto / Anuncio */
.item-v2 { 
    display: flex; 
    flex-direction: column; 
    background: #ffffff; 
    border: 1px solid #eee; 
    margin-bottom: 20px; 
    border-radius: 12px; 
    overflow: hidden; 
    text-decoration: none; 
    color: inherit; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.03); 
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
}

.item-v2:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.08); 
}

/* Contenedor Superior: Imagen + Puntuación */
.superior-v2 { 
    display: flex; 
    width: 100%; 
    height: 160px; 
    position: relative; 
}

.img-v2-container { 
    width: 60%; 
    height: 100%; 
    background-color: #ffffff !important; 
    overflow: hidden; 
}

.img-v2-container img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}

.review-v2-container { 
    width: 40%; 
    padding: 10px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    background: #f0f7ff !important; 
    border-left: 1px solid #e1e9f5 !important; 
}

.review-v2-stars {
    color: #fbbc04; 
    font-size: 14px;
    margin-bottom: 4px;
}

.review-v2-score {
    font-weight: bold; 
    font-size: 1.1rem; 
    color: #2c3e50;
}

.review-v2-count {
    font-size: 11px; 
    color: #999;
}

/* Contenedor de Información Textual */
.info-v2-container { 
   background: #ffffff !important;
    padding: 20px; 
    border-top: 1px solid #f5f5f5; 
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
}

.info-v2-container h2 { 
    margin: 0 0 8px 0; 
    font-size: 1.2rem; 
    color: #1a252f; 
    font-weight: 700; 
    line-height: 1.3; 
}

.descripcion-recortada { 
    font-size: 0.95rem; 
    color: #555; 
    line-height: 1.5; 
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical; 
    overflow: hidden; 
    margin: 0; 
}

.cta-text-v2 { 
    color: #1a5a96; 
    font-weight: 800; 
    font-size: 0.8rem; 
    margin-top: 12px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
}

/* --- RESPONSIVE: MODO ESCRITORIO --- */
@media (min-width: 768px) {
    .item-v2 { 
        flex-direction: row; 
        height: 160px; 
    }
    .superior-v2 { 
        width: 360px; 
        height: 100%; 
        flex-shrink: 0; 
    }
    .info-v2-container { 
        border-top: none; 
        padding-left: 30px; 
    }
}

/* Paginación V2 */
.paginacion-v2 { 
    display: flex; 
    justify-content: center; 
    gap: 8px; 
    margin: 30px 0; 
    flex-wrap: wrap;
}

.paginacion-v2 a { 
    padding: 10px 16px; 
    border: 1px solid #ddd; 
    border-radius: 8px; 
    text-decoration: none; 
    color: #444; 
    background: #fff; 
    font-weight: bold; 
    transition: all 0.2s ease;
}

.paginacion-v2 a:hover {
    border-color: #1a5a96;
    color: #1a5a96;
    background: #f0f7ff;
}

.paginacion-v2 a.activa { 
    background: #1a5a96; 
    color: #fff; 
    border-color: #1a5a96; 
}
