.mf-sp-fixtures {
    background: #050505;
    color: #fff;
    padding: 70px 20px;
}

.mf-sp-fixtures-wrap {
    max-width: 1180px;
    margin: 0 auto;
}

.mf-sp-fixtures-wrap h2 {
    margin: 0 0 36px;
    color: #fff;
    font-size: clamp(42px, 7vw, 88px);
    font-weight: 1000;
    line-height: .95;
}

.mf-sp-fixtures-list {
    display: grid;
    gap: 20px;
}

.mf-sp-fixture-card {
    padding: 26px;
    border-radius: 24px;
    background: #101010;
    border: 1px solid rgba(255,255,255,.12);
}

.mf-sp-fixture-league {
    margin-bottom: 18px;
    color: #ffd000;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.mf-sp-fixture-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.mf-sp-team {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mf-sp-team-away {
    justify-content: flex-end;
    text-align: right;
}

.mf-sp-team-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.mf-sp-team strong {
    color: #fff;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 1000;
    line-height: 1.1;
}

.mf-sp-vs {
    color: #ffd000;
    font-size: 30px;
    font-weight: 1000;
}

.mf-sp-fixture-meta {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #d7d7d7;
    font-size: 15px;
}

.mf-sp-rest-league {
    margin-top: 70px;
}

.mf-sp-section-head {
    margin-bottom: 28px;
}

.mf-sp-section-head p {
    margin: 0 0 8px;
    color: #ffd000;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.mf-sp-section-head h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 1000;
    line-height: 1;
}

.mf-sp-empty {
    color: #ccc;
    background: #101010;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 18px;
}

@media (max-width: 768px) {
    .mf-sp-fixtures {
        padding: 45px 14px;
    }

    .mf-sp-fixture-teams {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .mf-sp-team,
    .mf-sp-team-away {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .mf-sp-fixture-meta {
        flex-direction: column;
        text-align: center;
    }
}