/* --- HERO ESPECÍFICO DE EVENTOS --- */
.events-hero {
    min-height: 45vh;
    background: linear-gradient(rgba(7, 28, 66, 0.6), rgba(7, 28, 66, 0.6)), 
                url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?q=80&w=1600');
    background-size: cover;
    background-position: center;
    color: white;
}

/* --- BLOQUES TRIMESTRALES --- */
.quarter-header {
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 15px;
}

.quarter-icon {
    background-color: var(--azul);
    color: var(--dorado);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(7, 28, 66, 0.1);
}

/* --- CARDS DE EVENTOS --- */
.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: #f1f5f9 !important;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(7, 28, 66, 0.06) !important;
}

.badge.bg-country {
    background-color: rgba(7, 28, 66, 0.06);
    color: var(--azul);
    font-weight: 600;
    font-size: 11px;
    padding: 5px 10px;
}

.event-date {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.border-top-dashed {
    border-top: 1px dashed #e2e8f0;
}

/* --- CAJA DE DESTACADO ESPECIAL (ISRAEL) --- */
.special-highlight-box {
    background: linear-gradient(135deg, #071c42, #103375);
    box-shadow: 0 15px 35px rgba(7, 28, 66, 0.15);
}

.highlight-item-pill {
    background-color: rgba(255, 255, 255, 0.07);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    border-left: 3px solid var(--dorado);
}

/* --- LISTAS COMPACTAS DEL SEGUNDO SEMESTRE --- */
.custom-event-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 12px;
    color: #475569;
}

.custom-event-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--dorado);
    font-weight: bold;
}

/* Ajustes de espaciados utilitarios */
.mb-6 {
    margin-bottom: 4.5rem !important;
}
.py-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
}

@media (max-width: 768px) {
    .events-hero {
        min-height: auto;
        padding: 60px 0;
    }
    .special-highlight-box {
        padding: 30px 20px;
    }
}