/* ============================================
   SECCIÓN INFORMACIÓN TORNEO
   ============================================ */

.torneo-info-section {
    padding: var(--spacing-xl) 0 var(--spacing-xxl);
}

/* Layout dos columnas: imagen + bloque azul */
/* Layout dos columnas: imagen + bloque azul */
.torneo-info-layout {
    display: flex;
    gap: 20px;
    align-items: stretch;
    min-height: 500px;
    margin: 0 auto;
}

/* Columna izquierda: Imagen */
.torneo-info-imagen {
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    border-radius: 20px;
}

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

/* Columna derecha: Bloque azul */
.torneo-info-datos {
    flex: 1 1 0;
    min-width: 0;
    background: #0b0c4c;
    padding: 50px 50px;
    display: flex;
    flex-direction: column;
    color: #fff;
    text-align: left;
    border-radius: 20px;
}

/* Cada bloque de info (FECHAS, SEDES, CATEGORÍAS) */
.torneo-info-bloque {
    margin-bottom: 30px;
}

.torneo-info-bloque:last-child {
    margin-bottom: 0;
}

.torneo-info-titulo {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.torneo-info-bloque p,
.torneo-info-bloque span {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: #fff;
    font-family: var(--font-primary);
}

.torneo-info-bloque strong {
    font-weight: 700;
    display: block;
    margin-top: 12px;
}

.torneo-info-bloque strong:first-child {
    margin-top: 0;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1419px) {
    .torneo-info-layout {
        flex-direction: column;
        border-radius: 16px;
        min-height: auto;
        gap: 0;
        max-width: 95%;
        margin: 0 auto;
    }

    .torneo-info-imagen {
        display: none;
    }

    .torneo-info-datos {
        flex: none;
        width: 100%;
        padding: 40px 35px;
        border-radius: 16px;
    }
}

@media (max-width: 576px) {
    .torneo-info-layout {
        border-radius: 12px;
    }

    .torneo-info-datos {
        padding: 30px 24px;
        border-radius: 12px;
    }

    .torneo-info-bloque {
        margin-bottom: 24px;
    }

    .torneo-info-titulo {
        font-size: 12px;
    }

    .torneo-info-bloque p {
        font-size: 14px;
    }
}