/* Estilos/sections/event.css (Limpiado) */

/* --- Título de la sección de galería --- */
.event-gallery-section .section-title {
    margin-bottom: 40px;
}

/* --- Columnas de Información --- */
.info-columns-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.info-column-item {
    width: 320px;
    max-width: 100%;
}

.info-column-title {
    font-size: clamp(1.5em, 3vw, 2em);
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.info-column-item p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* --- CTA "Siguiente Evento" --- */
.next-event-cta-section {
    background-color: var(--color-dark);
}

.next-event-card-split {
    display: flex;
    height: 320px;
    background-color: var(--color-dark);
    color: var(--color-light);
    text-decoration: none;
    overflow: hidden;
    position: relative;
}

.next-event-card__text-column {
    flex-basis: 50%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.next-event-card__label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.next-event-card__title {
    font-size: clamp(2em, 5vw, 3.2em);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
}

.next-event-card__arrow {
    font-size: 4rem;
    font-weight: 200;
    display: inline-block;
    transition: transform 0.3s ease-out;
    margin-top: 20px;
}

.next-event-card__image-column {
    flex-basis: 50%;
    height: 100%;
}

.next-event-card__image-column img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease-out;
}

.next-event-card-split:hover .next-event-card__arrow {
    transform: translateX(15px);
}

.next-event-card-split:hover .next-event-card__image-column img {
    transform: scale(1.05);
}

/* --- Media Queries --- */
@media (max-width: 767px) {
    .next-event-card-split {
        flex-direction: column;
        height: auto;
    }
    .next-event-card__text-column {
        padding: 40px 25px;
        order: 2;
        text-align: center;
        align-items: center;
    }
    .next-event-card__image-column {
        order: 1;
        height: 220px;
    }
    .next-event-card__arrow-container {
        display: none;
    }
}

.next-event-cta-section {
    display: none;
}
