/* ==========================================================
   Schedule-Single Component  —  sc-sched-full
   All jornadas stacked vertically, fully visible.
   Relies on schedule.css for match card styles.
   ========================================================== */

.sc-sched-full {
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

/* ── Section (one jornada) ──────────────────────────────── */
.sc-sched-full__section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sc-sched-full__title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #C61818;
    margin: 0;
    padding: 0 0 12px 0;
    border-bottom: 2px solid #C61818;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1000px) {
    .sc-sched-full {
        gap: 40px;
    }

    .sc-sched-full__title {
        font-size: 1.5rem;
    }
}
