/* Outfit font — usado en títulos de sección y tarjetas (compartido) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&display=swap');


/* ================================================================
   PAGES — estilos comunes a múltiples páginas
   ================================================================ */

/* Paginación CI4 adaptada (Eventos + Publicaciones) */
.custom-pagination .pagination {
    gap: 0.5rem;
}

.custom-pagination .page-item .page-link {
    color: #1e3c72;
    border-radius: 50% !important;
    margin: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    transition: all 0.3s;
}

.custom-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.custom-pagination .page-item .page-link:hover {
    background-color: #e0f0ff;
    color: #1e3c72;
}

.custom-pagination .page-item.active .page-link:hover {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

/* Hover de tarjetas de listado (Eventos + Publicaciones) */
.evento-card:hover,
.publicacion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}


/* ================================================================
   HOME
   ================================================================ */

/* Todos los estilos de home están ya en el <style> del header.php */


/* ================================================================
   EVENTOS
   ================================================================ */

.evento-img-wrap {
    aspect-ratio: 1280 / 720;
    overflow: hidden;
    background: linear-gradient(135deg, #e8f0fe 0%, #c7d7f8 100%);
    position: relative;
}

.evento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.evento-img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ================================================================
   PUBLICACIONES
   ================================================================ */

/* Sin estilos propios adicionales */
