.m26-fixtures {
    --m26-bg: #ffffff;
    --m26-border: #d9e2ec;
    --m26-text: #102033;
    --m26-muted: #5d6b7a;
    --m26-accent: #0a7c66;
    color: var(--m26-text);
    position: relative;
    width: 100%;
}

.m26-fixtures--grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    justify-content: center;
}

.m26-match-card {
    background: var(--m26-bg);
    border: 1px solid var(--m26-border);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(16, 32, 51, 0.08);
    min-width: 0;
    padding: 18px;
}

.m26-fixtures--grid .m26-match-card {
    width: 100%;
}

.m26-fixtures--grid .m26-match-card:only-child {
    grid-column: 2;
}

.m26-match-card__header {
    border-bottom: 1px solid var(--m26-border);
    margin-bottom: 16px;
    padding-bottom: 12px;
    text-align: center;
}

.m26-match-card__header h3 {
    color: var(--m26-text);
    font-size: 20px;
    line-height: 1.25;
    margin: 6px 0 0;
}

.m26-match-card__status {
    color: var(--m26-accent);
    display: block;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 6px;
    text-transform: uppercase;
}

.m26-match-card__date {
    color: var(--m26-muted);
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.m26-scoreboard {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.m26-team {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    text-align: center;
}

.m26-team__flag {
    border-radius: 4px;
    box-shadow: 0 0 0 1px rgba(16, 32, 51, 0.12);
    display: block;
    height: 40px;
    object-fit: cover;
    width: 56px;
}

.m26-team__name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.m26-score {
    align-items: center;
    background: #0f172a;
    border-radius: 8px;
    color: #fff;
    display: flex;
    font-size: 26px;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    min-width: 86px;
    padding: 10px 12px;
}

.m26-score b {
    color: #94a3b8;
}

.m26-times {
    border-top: 1px solid var(--m26-border);
    color: var(--m26-muted);
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 16px;
    padding-top: 12px;
    text-align: center;
}

.m26-empty {
    margin: 0;
}

.m26-fixtures--slider {
    align-items: stretch;
    display: grid;
    gap: 10px;
    grid-template-columns: auto minmax(0, 1fr) auto;
}

.m26-slider-track {
    display: grid;
    gap: 18px;
    grid-auto-columns: minmax(280px, 380px);
    grid-auto-flow: column;
    overflow-x: auto;
    padding: 4px 2px 18px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.m26-fixtures--slider .m26-match-card {
    scroll-snap-align: start;
}

.m26-slider-btn {
    align-self: center;
    background: #0f172a;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 28px;
    font-weight: 800;
    height: 46px;
    line-height: 1;
    width: 42px;
}

.m26-slider-btn:hover,
.m26-slider-btn:focus {
    background: var(--m26-accent);
}

@media (max-width: 900px) {
    .m26-fixtures--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .m26-fixtures--grid .m26-match-card:only-child {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 420px;
    }
}

@media (max-width: 640px) {
    .m26-fixtures--grid {
        grid-template-columns: 1fr;
    }

    .m26-fixtures--grid .m26-match-card:only-child {
        grid-column: auto;
        max-width: none;
    }

    .m26-fixtures--slider {
        grid-template-columns: 1fr;
    }

    .m26-slider-btn {
        display: none;
    }

    .m26-slider-track {
        grid-auto-columns: minmax(260px, 88vw);
    }

    .m26-scoreboard {
        gap: 10px;
    }

    .m26-score {
        font-size: 22px;
        min-width: 72px;
    }
}
