.lista-eventos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: "Segoe UI", Arial, sans-serif;
    padding-bottom: 2em;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Caja de fecha compacta */
.calendar-badge {
    width: 55px;
    background: white;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    padding-bottom: 2px;
}

.calendar-badge .month {
    background: #FFE07A;
    color: #666;
    font-size: 9px;
    font-weight: bold;
    padding: 1px 0;
}

.calendar-badge .day {
    font-size: 20px;
    font-weight: bold;
    margin: 1px 0;
}

.calendar-badge .year {
    font-size: 8px;
    color: #666;
}

/* Info evento */
.event-title {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: rgb(14 48 98);
}

.event-meta {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}