/* =========================================
   CONTENEDOR PRINCIPAL (WRAPPER)
   ========================================= */
.content-scroll-area {
    flex: 1;
    overflow-y: auto;
    
    /* FIX ESTRUCTURAL (MANTENIDO) */
    display: flex;
    flex-direction: column;
    
    /* ESPACIADO CLAVE */
    padding-top: 40px;    
    padding-bottom: 0;    
    
    background-color: var(--bg-scroll); 
}

/* =========================================
   GRILLA DE TORNEOS
   ========================================= */
.torneos-grid {
    display: flex;
    flex-wrap: wrap;       
    justify-content: center; 
    gap: 30px;             
    
    width: 100%;
    max-width: 1250px; 
    margin: 0 auto 50px auto; 
}

/* =========================================
   TARJETA COMPACTA (600px x 260px)
   ========================================= */
.torneo-card {
    display: flex; 
    flex-direction: row; 
    
    width: 100%;
    max-width: 600px; 
    height: 260px;    
    margin: 0;
    
    border-radius: 10px;
    overflow: hidden; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border: 2px solid var(--gold); 
    transition: transform 0.3s ease;
    background-color: var(--bg-card-body);
}

.torneo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

/* COLUMNA IZQUIERDA (TEXTOS) - 60% */
.card-info-col {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
}

/* HEADER BLANCO */
.card-top-header {
    flex: 0 0 30%; 
    background-color: var(--bg-card-header); 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 2px solid var(--gold); 
}

.header-left-group { display: flex; align-items: center; gap: 10px; }

.tour-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--gold); 
    font-size: 1rem;
    margin: 0;
}

.tour-year {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800; 
    color: var(--gold); 
    font-size: 1rem; 
}

.gender-icons { display: flex; gap: 6px; }
.gender-icon {
    width: 22px; height: 22px;
    background-color: var(--bg-card-header);
    border-radius: 50%; padding: 2px;
    border: 1px solid var(--gold); 
}

/* CUERPO OSCURO */
.card-bottom-body {
    flex: 1; 
    background-color: var(--bg-card-body); 
    padding: 15px 20px; 
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-title {
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    font-size: 1.5rem; 
    font-weight: 800;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    line-height: 1;
}

.event-dates {
    font-family: 'Inter', sans-serif;
    color: var(--gold); 
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.event-location {
    font-family: 'Inter', sans-serif;
    color: var(--text-grey);
    font-size: 0.85rem; 
    margin-bottom: 10px;
    display: flex; align-items: center; gap: 5px; 
}
.event-location i { color: var(--gold); font-size: 1rem; }

/* =========================================
   BOTON
   ========================================= */
.btn-action {
    margin-top: auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 20px;
    background-color: transparent;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-action:hover {
    background-color: var(--gold);
    color: var(--bg-card-body);
}

/* =========================================
   COLUMNA DERECHA (IMAGEN) - 40% 
   ========================================= */
.card-img-col {
    flex: 0 0 40%; 
    background-size: cover;
    background-position: center;
    position: relative;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -20px; 
}
.img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 40%);
}

/* MÓVIL */
@media (max-width: 768px) {
    .torneo-card { flex-direction: column; height: auto; max-width: 380px; }
    .card-info-col, .card-img-col { flex: auto; width: 100%; margin-left: 0; clip-path: none; }
    .card-img-col { height: 180px; order: -1; }
}