@charset "UTF-8";

@font-face {
    font-family: "Mulish";
    src: url("../fonts/Mulish-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 500 900;
    font-display: swap;
}

.mt-live-refresh__meta,
.mt-live-meta,
.mt-match-card__foot {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 12px;
    color: #8b95a7;
}

.mt-live-hub,
.mt-live-page-sections {
    display: grid;
    gap: 24px;
}

.mt-live-hub__section {
    display: grid;
    gap: 14px;
}

.mt-live-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4d4f;
    box-shadow: 0 0 0 0 rgba(255, 77, 79, 0.6);
    animation: mt-live-pulse 1.6s infinite;
}

.mt-live-meta__stale,
.mt-match-card__freshness {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.mt-match-live-header {
    display: grid;
    gap: 12px;
}

@keyframes mt-live-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 79, 0.6);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 77, 79, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 79, 0);
    }
}

@font-face {
    font-family: "Nunito";
    src: url("../fonts/Nunito-VariableFont_wght.ttf") format("truetype");
    font-style: normal;
    font-weight: 500 900;
    font-display: swap;
}

:root {
    --mt-bg: #ffffff;
    --mt-surface: #ffffff;
    --mt-surface-soft: #f6f6f6;
    --mt-surface-alt: #f0f0f0;
    --mt-text: #111111;
    --mt-muted: #808080;
    --mt-soft: #b5b5b5;
    --mt-line: #e3e3e3;
    --mt-accent: #000000;
    --mt-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
    --mt-radius-lg: 18px;
    --mt-radius: 14px;
    --mt-content: 1270px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.mt-site-body {
    margin: 0;
    min-height: 100vh;
    background: #ffffff;
    color: var(--mt-text);
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    line-height: 1.42857;
    display: flex;
    flex-direction: column;
}

body.has-mobile-nav {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mt-site-header,
.mt-site-main,
.mt-site-footer {
    padding-inline: 20px;
}

.mt-site-header__inner,
.mt-site-shell,
.mt-site-footer__inner {
    width: min(100%, var(--mt-content));
    margin: 0 auto;
}

.mt-site-header {
    padding-block: 0 10px;
    border-bottom: 1px solid var(--mt-line);
    background: var(--mt-bg);
}

.mt-site-header__top {
    border-bottom: 1px solid var(--mt-line);
    background: var(--mt-bg);
}

.mt-site-header__inner--top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 30px;
}

.mt-site-header__top-title {
    font-family: "Mulish", sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mt-muted);
}

.mt-site-header__main {
    padding-block: 12px 4px;
}

.mt-site-header__inner {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.mt-site-header__brand-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mt-site-header__brand img {
    width: 118px;
    max-width: 100%;
}

.mt-site-header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--mt-line);
    border-radius: 12px;
    background: var(--mt-surface);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0;
}

.mt-site-header__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--mt-accent);
}

.mt-site-header__locales {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mt-site-header__locales a {
    color: var(--mt-muted);
    font-size: 10px;
    font-weight: 800;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.mt-site-header__locales a.is-active,
.mt-site-header__locales a:hover {
    color: var(--mt-text);
}

.mt-site-search {
    position: relative;
    width: 100%;
    max-width: 560px;
    justify-self: start;
}

.mt-site-search svg {
    position: absolute;
    inset: 12px auto auto 12px;
    width: 18px;
    height: 18px;
    color: var(--mt-muted);
}

.mt-site-search input,
.mt-mobile-nav__search input {
    width: 100%;
    border: 1px solid var(--mt-line);
    border-radius: 6px;
    background: var(--mt-bg);
    padding: 9px 16px 9px 40px;
    color: var(--mt-text);
    outline: none;
    height: 42px;
}

.mt-site-search input::placeholder,
.mt-mobile-nav__search input::placeholder {
    color: var(--mt-muted);
}

.mt-site-shell {
    display: grid;
    grid-template-columns: minmax(0, 225px) minmax(0, 1fr);
    gap: 28px;
    padding-block: 18px 64px;
    align-items: start;
}

.mt-site-shell__content {
    min-width: 0;
}

.mt-site-main {
    flex: 1 0 auto;
}

.mt-sidebar {
    width: 100%;
    max-width: 225px;
    position: sticky;
    top: 16px;
}

.mt-sidebar__section + .mt-sidebar__section {
    margin-top: 20px;
}

.mt-sidebar__title {
    margin-bottom: 10px;
    color: var(--mt-text);
    font-family: "Mulish", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-sidebar__nav,
.mt-sidebar__subnav {
    display: grid;
    gap: 8px;
}

.mt-sidebar__nav a,
.mt-sidebar__subnav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--mt-muted);
    font-size: 13px;
    font-weight: 700;
    border: 0;
    border-radius: 0;
    padding: 7px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mt-sidebar__dropdown {
    display: grid;
    gap: 8px;
}

.mt-sidebar__dropdown-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 16px;
    align-items: center;
    column-gap: 10px;
}

.mt-sidebar__dropdown-head > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--mt-muted);
    font-size: 13px;
    font-weight: 700;
    padding: 7px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mt-sidebar__dropdown-toggle {
    display: block;
    width: 16px;
    height: 16px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--mt-soft);
    cursor: pointer;
    transition: color 0.2s ease;
}

.mt-sidebar__dropdown-toggle::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.82778 5.16266C3.04213 4.94627 3.38962 4.94479 3.60397 5.16415L8.38837 10.0482C8.60272 10.2668 8.60199 10.62 8.38691 10.8371C8.2801 10.945 8.13964 11 7.99992 11C7.85872 11 7.71826 10.945 7.61146 10.8357L2.82705 5.95163C2.6127 5.73301 2.61344 5.3798 2.82778 5.16266ZM12.3953 5.16423C12.6096 4.94486 12.9571 4.94635 13.1715 5.16274C13.3865 5.37987 13.3873 5.73309 13.1737 5.95171L9.99649 9.19533C9.88968 9.30464 9.74849 9.35967 9.60803 9.35967C9.4683 9.35967 9.32785 9.30464 9.22104 9.19682C9.00596 8.97969 9.00523 8.62647 9.21884 8.40785L12.3953 5.16423Z' fill='%23C0BFBE'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    transition: background-image 0.2s ease;
}

.mt-sidebar__dropdown.is-open .mt-sidebar__dropdown-toggle::before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.1722 10.8373C12.9579 11.0537 12.6104 11.0552 12.396 10.8358L7.61163 5.95182C7.39728 5.7332 7.39801 5.37998 7.61309 5.16285C7.7199 5.05503 7.86036 5 8.00008 5C8.14128 5 8.28174 5.05503 8.38854 5.16434L13.1729 10.0484C13.3873 10.267 13.3866 10.6202 13.1722 10.8373ZM3.60472 10.8358C3.39038 11.0551 3.04288 11.0537 2.82854 10.8373C2.61346 10.6201 2.61273 10.2669 2.82634 10.0483L6.00351 6.80467C6.11032 6.69535 6.25151 6.64033 6.39197 6.64033C6.5317 6.64033 6.67216 6.69535 6.77896 6.80318C6.99404 7.02031 6.99477 7.37353 6.78116 7.59215L3.60472 10.8358Z' fill='%23000000'/%3E%3C/svg%3E");
}

.mt-sidebar__dropdown-menu {
    display: grid;
    gap: 6px;
    padding-left: 30px;
}

.mt-sidebar__dropdown-menu[hidden] {
    display: none;
}

.mt-sidebar__dropdown-menu a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    color: var(--mt-muted);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mt-sidebar__dropdown-menu small {
    color: var(--mt-soft);
    font-size: 10px;
    text-align: right;
}

.mt-sidebar__subnav a {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    justify-content: stretch;
}

.mt-sidebar__subnav small {
    color: var(--mt-soft);
    font-size: 11px;
    text-align: right;
}

.mt-sidebar__nav a.is-active,
.mt-sidebar__subnav a.is-active,
.mt-sidebar__dropdown-head > a.is-active,
.mt-sidebar__dropdown-menu a.is-active,
.mt-sidebar__nav a:hover,
.mt-sidebar__subnav a:hover,
.mt-sidebar__dropdown-head > a:hover,
.mt-sidebar__dropdown-menu a:hover,
.mt-sidebar__dropdown-toggle:hover {
    color: var(--mt-text);
    background: transparent;
}

.mt-sidebar__nav a.is-active,
.mt-sidebar__subnav a.is-active,
.mt-sidebar__dropdown-head > a.is-active,
.mt-sidebar__dropdown-menu a.is-active,
.mt-sidebar__nav a:hover,
.mt-sidebar__subnav a:hover,
.mt-sidebar__dropdown-head > a:hover,
.mt-sidebar__dropdown-menu a:hover {
    transform: translateX(4px);
}

.mt-mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.mt-mobile-nav[hidden] {
    display: none;
}

.mt-mobile-nav__scrim {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.46);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mt-mobile-nav__panel {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(340px, calc(100vw - 40px));
    background: var(--mt-surface);
    padding: 18px;
    transform: translateX(-100%);
    transition: transform 0.2s ease;
    overflow-y: auto;
    border-right: 1px solid var(--mt-line);
    box-shadow: var(--mt-shadow);
}

.mt-mobile-nav__header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.mt-mobile-nav__brand-label {
    color: var(--mt-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-mobile-nav__brand img {
    width: 150px;
}

.mt-mobile-nav__close {
    width: 36px;
    height: 36px;
    border: 1px solid var(--mt-line);
    border-radius: 999px;
    background: var(--mt-surface);
    cursor: pointer;
}

.mt-mobile-nav__search {
    position: relative;
    margin-bottom: 14px;
}

.mt-mobile-nav__search svg {
    position: absolute;
    inset: 12px auto auto 12px;
    width: 18px;
    height: 18px;
    color: var(--mt-muted);
}

.mt-mobile-nav.is-open .mt-mobile-nav__scrim {
    opacity: 1;
}

.mt-mobile-nav.is-open .mt-mobile-nav__panel {
    transform: translateX(0);
}

.mt-page-header {
    position: relative;
    padding: 4px 0 14px;
    margin-bottom: 24px;
}

.mt-page-header h1,
.mt-section__head h2,
.mt-hero h1,
.mt-about h2,
.mt-entity-card h1,
.mt-entity-card h2,
.mt-article h1 {
    margin: 0;
    color: var(--mt-text);
    font-family: "Mulish", sans-serif;
    line-height: 1.1;
}

.mt-page-header h1 {
    font-size: clamp(34px, 4.7vw, 46px);
}

.mt-page-header p {
    margin: 10px 0 0;
    max-width: 760px;
    color: var(--mt-muted);
    font-size: 15px;
}

.mt-page-header::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: var(--mt-line);
}

.mt-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--mt-muted);
    font-size: 13px;
}

.mt-breadcrumbs a:hover {
    color: var(--mt-text);
}

.mt-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 420px);
    gap: 28px;
    margin-bottom: 40px;
    align-items: stretch;
}

.mt-hero__content,
.mt-hero__image,
.mt-about__image,
.mt-entity-card,
.mt-scoreboard,
.mt-side-card,
.mt-article,
.mt-league-card,
.mt-empty-state,
.mt-lineup-card {
    background: var(--mt-surface);
    border-radius: var(--mt-radius-lg);
    box-shadow: var(--mt-shadow);
}

.mt-hero__content {
    padding: 34px;
}

.mt-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--mt-surface-alt);
    color: var(--mt-text);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-hero__content h1 {
    margin-top: 20px;
    font-size: clamp(36px, 6vw, 62px);
}

.mt-hero__content p {
    margin: 18px 0 0;
    color: var(--mt-muted);
    font-size: 18px;
    max-width: 640px;
}

.mt-hero__image,
.mt-about__image {
    overflow: hidden;
    border-radius: var(--mt-radius-lg);
}

.mt-hero__image img,
.mt-about__image img,
.mt-article__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-hero__actions,
.mt-filters__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.mt-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid var(--mt-accent);
    border-radius: 999px;
    background: var(--mt-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-button--ghost {
    background: transparent;
    color: var(--mt-text);
}

.mt-section {
    margin-bottom: 36px;
}

.mt-section__head,
.mt-section__subhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.mt-section__head h2 {
    font-size: 34px;
}

.mt-section__subhead {
    margin-bottom: 18px;
    color: var(--mt-muted);
}

.mt-text-link {
    color: var(--mt-text);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.mt-tabs a {
    color: var(--mt-muted);
    font-size: 14px;
    font-weight: 800;
}

.mt-tabs a.is-active {
    color: var(--mt-text);
}

.mt-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-badge--live,
.mt-badge--dark {
    background: #000;
    color: #fff;
}

.mt-badge--muted {
    background: var(--mt-surface-alt);
    color: var(--mt-text);
}

.mt-card-grid,
.mt-news-grid,
.mt-lineup-grid,
.mt-league-grid,
.mt-search-grid {
    display: grid;
    gap: 18px;
}

.mt-card-grid--matches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mt-card-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mt-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mt-news-grid > .mt-news-card--featured:first-child {
    grid-column: span 2;
}

.mt-match-card,
.mt-news-card,
.mt-league-card {
    background: var(--mt-surface);
    border-radius: var(--mt-radius-lg);
    box-shadow: var(--mt-shadow);
    border: 1px solid var(--mt-line);
    overflow: hidden;
}

.mt-match-card {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 0;
    border: 1px solid var(--mt-line);
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.mt-match-card__stretched-link {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
    border-radius: inherit;
}

.mt-match-card__stretched-link:focus-visible {
    outline: 2px solid var(--mt-accent);
    outline-offset: -2px;
}

.mt-match-card__head,
.mt-match-card__foot,
.mt-news-card__meta,
.mt-lineup-card__head,
.mt-share-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mt-match-card__league,
.mt-news-card__meta,
.mt-scoreboard__meta,
.mt-side-card,
.mt-lineup-card__head span {
    color: var(--mt-muted);
    font-size: 11px;
}

.mt-match-card__team {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.mt-match-card__media,
.mt-match-card__head,
.mt-match-card__body,
.mt-match-card__compact-head,
.mt-match-card__compact-body {
    position: relative;
    z-index: 1;
}

.mt-match-card__media {
    position: relative;
    display: block;
    min-height: 84px;
    overflow: hidden;
    background: #121212;
}

.mt-match-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
}

.mt-match-card__media-overlay {
    position: absolute;
    inset: 10px 10px auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #fff;
}

.mt-match-card__media-status,
.mt-match-card__head-meta {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-match-card__team img,
.mt-table__team img,
.mt-scoreboard__team img,
.mt-lineup-card__team img,
.mt-news-card__meta img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.mt-match-card__team span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 700;
}

.mt-match-card__head,
.mt-match-card__body,
.mt-match-card__foot {
    padding-inline: 12px;
}

.mt-match-card__head {
    padding-top: 2px;
}

.mt-match-card__body {
    display: grid;
    gap: 8px;
    padding-bottom: 12px;
}

.mt-live-refresh,
[data-match-widgets-root] {
    position: relative;
}

.mt-live-refresh.is-refreshing,
[data-match-widgets-root].is-refreshing {
    opacity: 0.82;
    transition: opacity 0.18s ease;
}

.mt-live-refresh.is-refreshing::after,
[data-match-widgets-root].is-refreshing::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--mt-accent) 40%, transparent 100%);
    animation: mt-live-loading 1.2s linear infinite;
    pointer-events: none;
}

.mt-live-refresh.is-refreshed,
[data-match-widgets-root].is-refreshed {
    animation: mt-live-refreshed 1s ease;
}

.mt-match-hero__scoreline.is-score-changed {
    animation: mt-score-pop 0.9s ease;
}

.mt-match-hero__status.is-status-changed {
    animation: mt-status-pulse 0.45s ease;
}

@keyframes mt-live-loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes mt-live-refreshed {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 119, 6, 0.24);
    }
    100% {
        box-shadow: 0 0 0 16px rgba(217, 119, 6, 0);
    }
}

@keyframes mt-score-pop {
    0% {
        transform: scale(1);
        color: inherit;
    }
    30% {
        transform: scale(1.08);
        color: var(--mt-accent);
    }
    100% {
        transform: scale(1);
        color: inherit;
    }
}

@keyframes mt-status-pulse {
    0% {
        opacity: 0.72;
        transform: translateY(2px);
        color: #a0a0a0;
    }
    45% {
        opacity: 1;
        transform: translateY(0);
        color: var(--mt-accent);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        color: #a0a0a0;
    }
}

@keyframes mt-live-badge-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.28);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

.mt-match-card__team-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 10px;
    align-items: center;
}

.mt-match-card__score-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 24px;
    border-radius: 4px;
    background: #111111;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}

.mt-news-card__media {
    position: relative;
    min-height: 168px;
    display: block;
    overflow: hidden;
}

.mt-news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mt-news-card:hover .mt-news-card__media img {
    transform: scale(1.03);
}

.mt-about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 22px;
    align-items: stretch;
}

.mt-about__content {
    padding: 30px 0 10px;
}

.mt-about__content h2 {
    font-size: 32px;
    margin-bottom: 14px;
}

.mt-about__content p {
    max-width: 720px;
    margin: 0;
    color: var(--mt-muted);
}

.mt-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.mt-tag-list a {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--mt-surface);
    border: 1px solid var(--mt-line);
    font-size: 13px;
    font-weight: 800;
}

.mt-table-wrap {
    overflow-x: auto;
    background: var(--mt-surface);
    border-radius: var(--mt-radius-lg);
    border: 1px solid var(--mt-line);
    box-shadow: none;
}

.mt-table {
    width: 100%;
    border-collapse: collapse;
}

.mt-table th,
.mt-table td {
    padding: 13px 16px;
    border-bottom: 1px solid var(--mt-line);
    text-align: left;
}

.mt-table th {
    color: var(--mt-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mt-table tbody tr:last-child td {
    border-bottom: 0;
}

.mt-table__team {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.mt-standings-block + .mt-standings-block {
    margin-top: 24px;
}

.mt-standings-block__title {
    margin: 0 0 12px;
    font-family: "Mulish", sans-serif;
    font-size: 24px;
}

.mt-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--mt-surface);
    border-radius: var(--mt-radius-lg);
    box-shadow: var(--mt-shadow);
}

.mt-filters label {
    display: grid;
    gap: 6px;
}

.mt-filters span {
    color: var(--mt-muted);
    font-size: 13px;
    font-weight: 800;
}

.mt-filters input,
.mt-filters select,
.mt-site-search input,
.mt-mobile-nav__search input {
    min-height: 46px;
    border: 1px solid var(--mt-line);
    border-radius: 14px;
    background: #fff;
    padding: 0 14px;
    color: var(--mt-text);
}

.mt-filters--search {
    grid-template-columns: minmax(0, 1fr) auto;
}

.mt-filters--stacked {
    grid-template-columns: 1fr;
}

.mt-filters__row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 16px;
}

.mt-filters__row--secondary {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: end;
}

.mt-filters__full {
    grid-column: 1 / -2;
}

.mt-entity-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
    margin-bottom: 24px;
    background: var(--mt-surface);
    border-radius: var(--mt-radius-lg);
    box-shadow: var(--mt-shadow);
}

.mt-entity-card--league {
    grid-template-columns: 120px minmax(0, 1fr);
}

.mt-entity-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    background: var(--mt-surface-alt);
    border-radius: 16px;
    overflow: hidden;
}

.mt-entity-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-entity-card__body dl {
    display: grid;
    gap: 12px;
    margin: 16px 0 0;
}

.mt-entity-card__body dt {
    color: var(--mt-muted);
    font-size: 13px;
    font-weight: 800;
}

.mt-entity-card__body dd {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
}

.mt-scoreboard {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 18px;
    padding: 28px;
    margin-bottom: 28px;
}

.mt-scoreboard__team {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
}

.mt-scoreboard__team img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.mt-scoreboard__center {
    text-align: center;
}

.mt-scoreboard__score {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    font-family: "Mulish", sans-serif;
    font-size: clamp(42px, 8vw, 72px);
    font-weight: 900;
    line-height: 1;
}

.mt-scoreboard__status {
    margin-top: 10px;
    color: var(--mt-muted);
    font-weight: 800;
}

.mt-scoreboard__meta {
    justify-content: center;
    margin-top: 12px;
    flex-wrap: wrap;
}

.mt-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) 340px;
    gap: 24px;
}

.mt-side-card {
    padding: 20px;
    border-radius: var(--mt-radius-lg);
    background: var(--mt-surface);
    box-shadow: var(--mt-shadow);
}

.mt-side-card + .mt-side-card {
    margin-top: 20px;
}

.mt-side-card h3 {
    margin: 0 0 12px;
    color: var(--mt-text);
    font-family: "Mulish", sans-serif;
    font-size: 22px;
}

.mt-side-list {
    display: grid;
    gap: 14px;
}

.mt-timeline {
    display: grid;
    gap: 14px;
    padding: 20px;
    background: var(--mt-surface);
    border-radius: var(--mt-radius-lg);
    box-shadow: var(--mt-shadow);
}

.mt-timeline__item {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.mt-timeline__minute {
    color: var(--mt-muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.mt-timeline__content strong {
    display: block;
    font-size: 18px;
}

.mt-timeline__content p {
    margin: 4px 0 0;
    color: var(--mt-muted);
}

.mt-lineup-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mt-lineup-card {
    padding: 20px;
}

.mt-lineup-card__team {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mt-lineup-card__team img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.mt-lineup-card__group + .mt-lineup-card__group {
    margin-top: 18px;
}

.mt-lineup-card__group strong {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-lineup-card ul,
.mt-site-footer__links,
.mt-search-group__list {
    display: grid;
    gap: 10px;
}

.mt-lineup-card li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.mt-lineup-card li small {
    color: var(--mt-muted);
}

.mt-league-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mt-league-card {
    padding: 20px;
}

.mt-league-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.mt-league-card__head img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.mt-league-card__head h2 {
    margin: 0;
    font-family: "Mulish", sans-serif;
    font-size: 24px;
}

.mt-league-card__head p {
    margin: 4px 0 0;
    color: var(--mt-muted);
}

.mt-article {
    padding: 20px;
}

.mt-article__cover {
    aspect-ratio: 16 / 8;
    border-radius: 18px;
    margin-bottom: 18px;
}

.mt-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--mt-muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.mt-article__excerpt {
    margin: 0 0 18px;
    color: var(--mt-text);
    font-size: 20px;
    font-weight: 700;
}

.mt-article__body {
    color: var(--mt-text);
}

.mt-article__body > *:first-child {
    margin-top: 0;
}

.mt-article__body img {
    border-radius: 16px;
    margin: 18px 0;
}

.mt-share-strip {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--mt-line);
    flex-wrap: wrap;
}

.mt-share-strip span {
    color: var(--mt-muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.mt-share-strip a {
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--mt-surface-alt);
    font-size: 13px;
    font-weight: 800;
}

.mt-search-group {
    padding: 20px;
    background: var(--mt-surface);
    border-radius: var(--mt-radius-lg);
    box-shadow: var(--mt-shadow);
}

.mt-search-group h2 {
    margin: 0 0 14px;
    font-family: "Mulish", sans-serif;
    font-size: 24px;
}

.mt-search-group__item {
    padding: 12px 14px;
    border: 1px solid var(--mt-line);
    border-radius: 14px;
}

.mt-search-group__item p {
    margin: 6px 0 0;
    color: var(--mt-muted);
}

.mt-empty-state {
    padding: 18px 20px;
    background: var(--mt-surface);
    border-radius: var(--mt-radius-lg);
    border: 1px solid var(--mt-line);
    box-shadow: none;
}

.mt-empty-state strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Mulish", sans-serif;
    font-size: 22px;
}

.mt-empty-state p {
    margin: 0;
    color: var(--mt-muted);
}

.mt-empty-state--compact {
    padding: 14px 16px;
    border-radius: 16px;
}

.mt-empty-state--compact strong {
    margin-bottom: 4px;
    font-size: 18px;
}

.mt-hero__content,
.mt-section__head {
    position: relative;
}

.mt-section__head::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 32px;
    height: 1px;
    background: var(--mt-line);
}

.mt-section__head h2 {
    margin: 0;
}

.mt-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.mt-pagination a,
.mt-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--mt-line);
    background: var(--mt-surface);
    box-shadow: var(--mt-shadow);
    font-size: 13px;
    font-weight: 900;
}

.mt-pagination a.is-active {
    background: var(--mt-accent);
    border-color: var(--mt-accent);
    color: #fff;
}

.mt-pagination a.is-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.mt-site-footer {
    background: #000;
    color: #fff;
    padding-block: 18px;
}

.mt-site-footer__inner {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 180px;
    gap: 18px;
    align-items: start;
}

.mt-site-footer__brand img {
    width: 118px;
    margin-bottom: 10px;
}

.mt-site-footer__brand p,
.mt-site-footer__contact a,
.mt-site-footer__links a,
.mt-site-footer__links span {
    color: #d4d4d4;
    font-size: 12px;
}

.mt-site-footer__contact {
    display: grid;
    gap: 8px;
    justify-items: start;
}

.mt-site-footer__contact-title {
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-site-footer__contact img {
    width: 20px;
    height: 20px;
}

.mt-page-title {
    margin: 0;
    font-family: "Mulish", sans-serif;
    font-size: 34px;
    line-height: 1.1;
}

.mt-match-card--compact {
    padding: 0;
    min-height: 156px;
    border-radius: 28px;
    border: 1px solid #e8e8e8;
    background: #fff;
    box-shadow: 0 20px 30px -24px rgba(18, 18, 18, 0.2);
    overflow: hidden;
}

.mt-match-card--compact .mt-match-card__head,
.mt-match-card--compact .mt-match-card__body,
.mt-match-card--compact .mt-match-card__foot {
    padding-inline: 0;
}

.mt-match-card--compact .mt-match-card__body {
    padding-bottom: 0;
}

.mt-match-card {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mt-match-card:hover,
.mt-news-card:hover {
    transform: translateY(-2px);
}

.mt-match-card__league {
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 800;
}

.mt-match-card__foot {
    color: var(--mt-muted);
    font-size: 10px;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mt-match-card__team-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mt-news-card__media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.01) 60%);
    pointer-events: none;
}

.mt-news-card__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    padding: 16px;
    display: grid;
    align-content: end;
    gap: 10px;
    color: #fff;
}

.mt-news-card__overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.35;
}

.mt-news-card__overlay .mt-text-link {
    color: #fff;
}

.mt-news-card__title {
    margin: 0;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    line-height: 1.15;
    color: #fff;
}

.mt-news-card--featured {
    grid-column: span 2;
}

.mt-news-card--featured .mt-news-card__media {
    min-height: 240px;
}

.mt-section--grid {
    background: var(--mt-surface);
    padding: 12px 14px 18px;
    border-radius: var(--mt-radius-lg);
    box-shadow: var(--mt-shadow);
}

.mt-card-grid {
    align-items: stretch;
}

.mt-detail-grid__main {
    min-width: 0;
}

.mt-detail-grid__aside {
    min-width: 0;
}

.mt-side-card {
    margin: 0;
}

.mt-search-group__item {
    padding: 12px 14px 12px 16px;
    border-radius: var(--mt-radius);
    border: 1px solid var(--mt-line);
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.mt-search-group__item:hover {
    border-color: var(--mt-text);
    background: var(--mt-surface-soft);
}

.mt-site-header__nav a,
.mt-site-header__locales a,
.mt-pagination a,
.mt-pagination span,
.mt-text-link {
    white-space: nowrap;
}

.mt-team-link,
.mt-player-link {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

.mt-site-main {
    min-height: 0;
}

.page-home .mt-site-shell {
    padding-top: 14px;
}

.mt-home-section {
    margin-bottom: 30px;
}

.mt-home-section__title-group {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.mt-home-section__foot {
    padding-top: 10px;
    text-align: center;
}

.mt-home-section__inline-meta {
    color: var(--mt-muted);
    font-size: 13px;
    font-weight: 700;
}

.mt-home-live-grid,
.mt-home-center-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mt-home-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mt-home-news-grid > .mt-news-card--featured:first-child {
    grid-column: auto;
}

.mt-home-about {
    grid-template-columns: minmax(0, 1.1fr) 300px;
    align-items: center;
    margin-top: 10px;
}

.mt-home-about .mt-about__content {
    padding-top: 0;
}

.mt-home-about .mt-about__content h2 {
    font-size: 30px;
}

.mt-home-about__text {
    padding: 30px 0 0;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.mt-home-about__text p {
    margin-bottom: 15px;
}

.mt-home-about__text p:last-child {
    margin-bottom: 0;
}

.mt-home-about__list {
    padding: 15px 15px;
    margin: 0 0 15px;
    column-count: 2;
    list-style: circle;
}

.mt-home-about__list li {
    break-inside: avoid;
    margin-bottom: 6px;
}

.mt-home-about .mt-about__image {
    max-width: 385px;
    width: 100%;
    height: 385px;
}

.mt-home-about .mt-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DLE / Figma homepage reconciliation */

.mt-site-header {
    padding-block: 0;
    border-bottom: 0;
}

.mt-site-header__top {
    display: none;
}

.mt-site-header__main {
    padding-block: 22px 0;
}

.mt-site-header__inner {
    grid-template-columns: 225px minmax(0, 955px);
    gap: 40px;
    align-items: start;
}

.mt-site-header__brand img {
    width: 220px;
}

.mt-site-header__brand-row {
    padding-top: 14px;
}

.mt-site-header__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    min-width: 0;
}

.mt-site-header__locales {
    align-self: flex-start;
    justify-content: flex-end;
    gap: 12px;
    margin-left: auto;
    padding-top: 2px;
    white-space: nowrap;
}

.mt-site-header__locales a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.mt-site-search {
    display: flex;
    align-items: center;
    max-width: 620px;
    width: 100%;
    margin: 0;
    justify-self: auto;
}

.mt-site-search svg {
    inset: 50% auto auto 0;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
}

.mt-site-search input {
    border: 0;
    border-bottom: 1px solid #e8e8e8;
    border-radius: 0;
    padding: 0 0 11px 34px;
    height: 31px;
    margin: 0;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #c0bfbe;
}

.mt-site-search input:focus::placeholder {
    color: transparent;
}

.mt-site-main {
    padding-top: 30px;
}

.mt-site-shell {
    grid-template-columns: 225px minmax(0, 955px);
    justify-content: space-between;
    gap: 40px;
    padding-block: 0 40px;
}

.mt-site-shell__content {
    max-width: 955px;
}

.mt-section {
    margin-bottom: 40px;
}

.mt-section__head {
    margin-bottom: 20px;
    align-items: center;
}

.mt-section__head::after {
    display: none;
}

.mt-section__head h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
}

.mt-text-link {
    font-size: 11px;
    font-weight: 900;
    line-height: 14px;
}

.mt-tabs {
    gap: 20px;
    padding-top: 10px;
}

.mt-tabs a,
.mt-tabs button {
    color: #c0bfbe;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mt-tabs a.is-active,
.mt-tabs a:hover,
.mt-tabs button.is-active,
.mt-tabs button:hover {
    color: #000;
    text-shadow: 0 1px 0 #000;
}

.mt-home-section__tools {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mt-home-section__select {
    min-width: 220px;
    border: 0;
    padding: 0 22px 0 0;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.82778 5.16266C3.04213 4.94627 3.38962 4.94479 3.60397 5.16415L8.38837 10.0482C8.60272 10.2668 8.60199 10.62 8.38691 10.8371C8.2801 10.945 8.13964 11 7.99992 11C7.85872 11 7.71826 10.945 7.61146 10.8357L2.82705 5.95163C2.6127 5.73301 2.61344 5.3798 2.82778 5.16266ZM12.3953 5.16423C12.6096 4.94486 12.9571 4.94635 13.1715 5.16274C13.3865 5.37987 13.3873 5.73309 13.1737 5.95171L9.99649 9.19533C9.88968 9.30464 9.74849 9.35967 9.60803 9.35967C9.4683 9.35967 9.32785 9.30464 9.22104 9.19682C9.00596 8.97969 9.00523 8.62647 9.21884 8.40785L12.3953 5.16423Z' fill='%23000000'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
    appearance: none;
    outline: none;
}

.mt-carousel {
    position: relative;
}

.mt-carousel__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.mt-carousel__viewport::-webkit-scrollbar {
    display: none;
}

.mt-carousel__viewport.is-dragging {
    cursor: grabbing;
}

.mt-carousel__track {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

.mt-carousel--two-row .mt-carousel__track {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-columns: calc((100% - 40px) / 3);
    align-items: stretch;
}

.mt-carousel__slide {
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: calc((100% - 60px) / 4);
}

.mt-carousel--two-row .mt-carousel__slide {
    flex: none;
    min-width: 0;
}

.mt-carousel__slide .mt-match-card {
    height: 100%;
}

.mt-carousel__controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mt-carousel__control {
    width: 24px;
    height: 24px;
    border: 1px solid #e8e8e8;
    background: #fff;
    color: #000;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.mt-carousel__control:disabled {
    opacity: 0.35;
    cursor: default;
}

.page-home .mt-home-section {
    margin-bottom: 42px;
}

.page-home .mt-home-section__foot .mt-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.page-home .mt-home-section__foot .mt-text-link::after {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.495 6.49497C12.7683 6.22161 12.7683 5.77839 12.495 5.50503L8.0402 1.05025C7.76684 0.776886 7.32362 0.776886 7.05025 1.05025C6.77689 1.32362 6.77689 1.76684 7.05025 2.0402L11.0101 6L7.05025 9.9598C6.77689 10.2332 6.77689 10.6764 7.05025 10.9497C7.32362 11.2231 7.76684 11.2231 8.0402 10.9497L12.495 6.49497ZM0 6.7H12V5.3H0V6.7Z' fill='black'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.page-home .mt-home-live-grid,
.page-home .mt-home-center-grid,
.page-home .mt-home-news-grid {
    gap: 20px;
}

.page-home .mt-live-refresh {
    display: grid;
    gap: 22px;
}

.page-home .mt-live-refresh__meta {
    justify-content: flex-end;
    min-height: 14px;
    color: #a0a0a0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.page-home .mt-live-hub {
    gap: 32px;
}

.page-home .mt-live-hub__section {
    gap: 16px;
}

.page-home .mt-live-hub__section .mt-carousel__controls {
    flex-shrink: 0;
}

.page-home .mt-live-hub__section .mt-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px 20px;
    flex-wrap: wrap;
    padding-bottom: 10px;
    margin-bottom: 0;
}

.page-home .mt-live-hub__section .mt-section__head::after {
    right: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.55;
}

.page-home .mt-live-hub__section .mt-section__head h3 {
    margin: 0;
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
}

.page-home .mt-card-grid--matches.mt-card-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.page-home .mt-carousel--two-row .mt-carousel__track {
    grid-auto-columns: calc((100% - 40px) / 3);
}

.page-home .mt-match-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.page-home .mt-match-card__media {
    min-height: 110px;
}

.page-home .mt-match-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #2c2a25 0%, rgba(44, 42, 37, 0) 100%);
    opacity: 0.8;
}

.page-home .mt-match-card__media--branded {
    isolation: isolate;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
        radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.1), transparent 20%),
        linear-gradient(135deg, #0c0c0c 0%, #232323 48%, #3a3a3a 100%);
}

.page-home .mt-match-card__media--branded::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 36%),
        linear-gradient(135deg, transparent 44%, rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0.08) 52%, transparent 52%);
    opacity: 0.9;
}

.page-home .mt-match-card__media--branded::after {
    content: "MATCHTIDE";
    position: absolute;
    right: 12px;
    bottom: 10px;
    z-index: 0;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.14);
    font-family: "Mulish", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.page-home .mt-match-card__media img {
    opacity: 1;
}

.page-home .mt-match-card__media-overlay {
    inset: 10px 10px auto;
    z-index: 1;
}

.page-home .mt-badge {
    min-height: 0;
    padding: 5px 10px 3px;
    border-radius: 0;
    font-size: 11px;
    line-height: 14px;
}

.page-home .mt-match-card__media-status,
.page-home .mt-match-card__head-meta {
    font-size: 14px;
    font-weight: 900;
    line-height: 20px;
    letter-spacing: 0;
    text-transform: none;
}

.page-home .mt-match-card__head {
    padding: 10px 10px 0;
}

.page-home .mt-match-card__league {
    font-size: 11px;
    font-weight: 900;
    line-height: 14px;
}

.page-home .mt-match-card__body {
    padding: 15px 10px;
    background: #fff;
    gap: 10px;
}

.page-home .mt-match-card__team-row {
    grid-template-columns: minmax(0, 1fr) 24px;
}

.page-home .mt-match-card__team img {
    width: 26px;
    height: 26px;
}

.page-home .mt-match-card__team span {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.page-home .mt-match-card__score-box {
    width: 24px;
    height: 24px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.page-home .mt-match-card:hover {
    transform: none;
    box-shadow: 0 20px 20px -5px rgba(192, 191, 190, 0.36);
}

.page-live .mt-card-grid--matches {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.page-live .mt-match-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.page-live .mt-match-card__media {
    min-height: 110px;
}

.page-live .mt-match-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #2c2a25 0%, rgba(44, 42, 37, 0) 100%);
    opacity: 0.8;
}

.page-live .mt-match-card__media img {
    opacity: 1;
}

.page-live .mt-match-card__media-overlay {
    inset: 10px 10px auto;
    z-index: 1;
}

.page-live .mt-badge {
    min-height: 0;
    padding: 5px 10px 3px;
    border-radius: 0;
    font-size: 11px;
    line-height: 14px;
}

.page-live .mt-match-card__media-status,
.page-live .mt-match-card__head-meta {
    font-size: 14px;
    font-weight: 900;
    line-height: 20px;
    letter-spacing: 0;
    text-transform: none;
}

.page-live .mt-match-card__head {
    padding: 10px 10px 0;
}

.page-live .mt-match-card__league {
    font-size: 11px;
    font-weight: 900;
    line-height: 14px;
}

.page-live .mt-match-card__body {
    padding: 15px 10px;
    background: #fff;
    gap: 10px;
}

.page-live .mt-match-card__team-row {
    grid-template-columns: minmax(0, 1fr) 24px;
}

.page-live .mt-match-card__team img {
    width: 26px;
    height: 26px;
}

.page-live .mt-match-card__team span {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.page-live .mt-match-card__score-box {
    width: 24px;
    height: 24px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.page-live .mt-match-card:hover {
    transform: none;
    box-shadow: 0 20px 20px -5px rgba(192, 191, 190, 0.36);
}

.page-home .mt-match-card--compact {
    border-radius: 0;
    border: 0;
    overflow: visible;
}

.mt-match-card__compact-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
    margin: 22px 22px 0;
    padding: 0 14px;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    overflow: hidden;
}

.mt-match-card__compact-time {
    font-size: 14px;
    font-weight: 900;
    line-height: 20px;
    text-transform: none;
    white-space: nowrap;
}

.mt-match-card__compact-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 32px 26px 26px;
    background: #fff;
}

.mt-match-card__compact-team {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.mt-match-card__compact-team--home {
    justify-content: flex-end;
}

.mt-match-card__compact-team--away {
    justify-content: flex-start;
}

.mt-match-card__compact-logo {
    width: 30px;
    height: 30px;
    overflow: hidden;
    flex-shrink: 0;
}

.mt-match-card__compact-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mt-match-card__compact-name {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mt-match-card__compact-score {
    min-width: 72px;
    height: 40px;
    padding: 0 12px;
    background: #f5f5f5;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    white-space: nowrap;
}

.mt-match-card__compact-league {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mt-match-card--compact-fallback {
    display: block;
}

.mt-match-card__compact-fallback-body {
    display: grid;
    gap: 8px;
    padding: 22px 22px 24px;
}

.mt-match-card__compact-fallback-body strong {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
}

.mt-match-card__compact-fallback-body p {
    margin: 0;
    color: #7c7c7c;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.page-match .mt-card-grid--compact {
    gap: 20px;
}

.page-match .mt-card-grid--related-league {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
}

.page-match .mt-card-grid--h2h {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
}

.page-match .mt-card-grid--related-league .mt-match-card--compact {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.page-match .mt-card-grid--h2h .mt-match-card--compact {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.page-match .mt-card-grid--related-league .mt-match-card--compact:hover {
    transform: none;
}

.page-match .mt-card-grid--h2h .mt-match-card--compact:hover {
    transform: none;
}

.page-match .mt-match-preview-form > div > h3 {
    margin: 0 0 18px;
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
}

.mt-recent-form-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 32px;
}

.mt-recent-form-column {
    min-width: 0;
}

.mt-recent-form-column h3 {
    margin: 0 0 18px;
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
}

.page-match .mt-card-grid--recent-form {
    grid-template-columns: 1fr;
    gap: 18px;
}

.page-match .mt-card-grid--recent-form .mt-match-card--compact {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.page-match .mt-card-grid--recent-form .mt-match-card--compact:hover {
    transform: none;
}

@media (max-width: 1180px) {
    .page-match .mt-card-grid--related-league {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .page-match .mt-card-grid--h2h {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.page-home .mt-match-card--compact:hover {
    transform: none;
}

.page-home .mt-match-card--compact:hover .mt-match-card__compact-body {
    box-shadow: 0 20px 20px -5px rgba(192, 191, 190, 0.36);
}

.page-home .mt-table-wrap {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.page-home .mt-table {
    margin-top: 10px;
}

.page-home .mt-table th,
.page-home .mt-table td {
    border-bottom: 0;
}

.page-home .mt-table th {
    color: #a0a0a0;
    font-size: 11px;
    font-weight: 600;
    line-height: 14px;
}

.page-home .mt-table td {
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.page-home .mt-table tbody tr:nth-child(even) {
    background: #f5f5f5;
}

.page-home .mt-home-section__inline-meta {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
}

.page-home .mt-news-card {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.page-home .mt-news-card__media {
    min-height: 220px;
}

.page-home .mt-news-card__media::after {
    background: linear-gradient(180deg, rgba(44, 42, 37, 0) 0%, #2c2a25 100%);
    opacity: 0.6;
}

.page-home .mt-news-card__media img {
    transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.page-home .mt-news-card:hover .mt-news-card__media img {
    transform: none;
    filter: grayscale(100%) blur(3px);
}

.page-home .mt-news-card__overlay {
    padding: 0 20px 20px;
}

.page-home .mt-news-card__meta {
    color: #e8e8e8;
    font-size: 11px;
    font-weight: 600;
    line-height: 14px;
}

.page-home .mt-news-card__title {
    font-family: "Nunito", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 10px 0;
}

.page-home .mt-news-card__overlay p {
    display: none;
}

.page-home .mt-news-card__overlay .mt-text-link {
    display: none;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: none;
}

.page-home .mt-news-card__overlay .mt-text-link::before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    margin: 5px 0;
    background: #fff;
}

.page-home .mt-news-card:hover .mt-news-card__overlay .mt-text-link {
    display: block;
}

.page-home .mt-news-card--placeholder .mt-news-card__overlay p {
    display: block;
    font-size: 14px;
    line-height: 20px;
}

.page-home .mt-home-about {
    margin-top: 50px;
    justify-content: flex-end;
    grid-template-columns: minmax(0, 550px) 385px;
    gap: 20px;
}

.page-home .mt-about__image,
.page-home .mt-home-about .mt-about__image {
    border-radius: 0;
    box-shadow: none;
}

.page-home .mt-home-about .mt-about__content h2 {
    font-size: 26px;
    font-weight: 400;
    line-height: 42px;
}

.page-home .mt-home-about__text,
.page-home .mt-about__content p {
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.page-home .mt-home-about__list {
    column-gap: 40px;
}

.page-home .mt-home-section--live > .mt-section__head,
.page-home .mt-home-section--center > .mt-section__head,
.page-home .mt-home-section--standings > .mt-section__head,
.page-home .mt-home-section--news > .mt-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px 24px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding-bottom: 10px;
}

.page-home .mt-home-section--live > .mt-section__head::after,
.page-home .mt-home-section--center > .mt-section__head::after,
.page-home .mt-home-section--standings > .mt-section__head::after,
.page-home .mt-home-section--news > .mt-section__head::after {
    width: 100%;
    opacity: 0.55;
}

.page-home .mt-home-section--center .mt-home-section__tools,
.page-home .mt-home-section--live .mt-home-section__tools {
    justify-content: space-between;
    flex-wrap: wrap;
}

.page-home .mt-home-section--center .mt-home-section__title-group,
.page-home .mt-home-section--standings .mt-home-section__title-group {
    flex-wrap: wrap;
}

.page-home .mt-tabs button[data-home-day] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.page-home .mt-tabs button[data-home-day] [data-home-day-count] {
    color: #a0a0a0;
    font-size: 11px;
    font-weight: 800;
}

.page-home .mt-tabs button.is-active[data-home-day] [data-home-day-count] {
    color: #000;
}

.page-fixtures .mt-filters,
.page-search .mt-filters {
    gap: 12px 16px;
    padding: 18px 20px;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    box-shadow: 0 20px 20px -5px rgba(192, 191, 190, 0.16);
}

.page-fixtures .mt-filters span,
.page-search .mt-filters span {
    color: #a0a0a0;
    font-size: 11px;
    font-weight: 600;
    line-height: 14px;
    text-transform: uppercase;
}

.page-fixtures .mt-filters input,
.page-fixtures .mt-filters select,
.page-search .mt-filters input {
    min-height: 44px;
    border-radius: 14px;
    border-color: #e8e8e8;
    box-shadow: none;
}

.page-leagues-index .mt-league-grid {
    gap: 24px 20px;
}

.page-leagues-index .mt-league-card {
    padding: 0 0 18px;
    border: 0;
    border-bottom: 1px solid #f1f1f1;
    border-radius: 0;
    box-shadow: none;
}

.page-leagues-index .mt-league-card__head {
    margin-bottom: 12px;
}

.page-standings .mt-section__head,
.page-news-index .mt-section__head,
.page-search .mt-section__head {
    margin-bottom: 18px;
}

.page-standings .mt-table-wrap,
.page-team .mt-table-wrap,
.page-player .mt-table-wrap,
.page-league .mt-table-wrap {
    border-color: #f1f1f1;
    border-radius: 20px;
    box-shadow: none;
}

.page-standings .mt-table th,
.page-team .mt-table th,
.page-player .mt-table th,
.page-league .mt-table th {
    color: #a0a0a0;
    font-size: 11px;
    font-weight: 600;
    line-height: 14px;
}

.page-standings .mt-table td,
.page-team .mt-table td,
.page-player .mt-table td,
.page-league .mt-table td {
    padding-block: 12px;
    font-size: 14px;
    font-weight: 600;
}

.page-standings .mt-table tbody tr:nth-child(even),
.page-team .mt-table tbody tr:nth-child(even),
.page-player .mt-table tbody tr:nth-child(even),
.page-league .mt-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.page-news-index .mt-empty-state,
.page-search .mt-empty-state {
    max-width: 100%;
}

.mt-site-footer {
    padding-block: 0;
    margin-top: 18px;
}

.mt-site-footer__inner {
    min-height: 98px;
    align-items: center;
}

.mt-site-footer__brand p,
.mt-site-footer__contact a,
.mt-site-footer__links a,
.mt-site-footer__links span {
    font-size: 10px;
    line-height: 14px;
}

@media (max-width: 1200px) {
    .mt-site-header__inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .mt-site-header__toggle {
        display: inline-flex;
    }

    .mt-site-header__nav,
    .mt-site-header__top-title {
        display: none;
    }

    .mt-site-header__brand-row {
        justify-content: flex-start;
    }

    .mt-site-header__content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 16px;
        align-items: center;
    }

    .mt-site-search {
        max-width: none;
    }

    .mt-site-shell {
        grid-template-columns: 1fr;
    }

    .mt-site-shell__aside {
        display: none;
    }

    .mt-card-grid--compact,
    .mt-news-grid,
    .mt-lineup-grid,
    .mt-league-grid,
    .mt-about,
    .mt-detail-grid,
    .mt-site-footer__inner {
        grid-template-columns: 1fr;
    }

    .mt-card-grid--matches {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-home .mt-card-grid--matches.mt-card-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mt-carousel--two-row .mt-carousel__track,
    .page-home .mt-carousel--two-row .mt-carousel__track {
        grid-auto-columns: calc((100% - 20px) / 2);
    }

    .page-live .mt-card-grid--matches {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mt-carousel__slide {
        flex-basis: calc((100% - 20px) / 2);
        min-width: calc((100% - 20px) / 2);
    }

    .mt-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .mt-filters__row,
    .mt-filters__row--secondary,
    .mt-match-preview-grid,
    .mt-match-preview-form {
        grid-template-columns: 1fr;
    }

    .mt-filters__full {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    .mt-site-header__locales {
        gap: 10px;
    }
}

@media (max-width: 820px) {
    .mt-site-header,
    .mt-site-main,
    .mt-site-footer {
        padding-inline: 14px;
    }

    .mt-site-header {
        padding-block: 0 14px;
    }

    .mt-site-header__main {
        padding-block: 12px 0;
    }

    .mt-site-header__content {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
    }

    .mt-page-header h1,
    .mt-section__head h2 {
        font-size: 28px;
    }

    .mt-hero {
        grid-template-columns: 1fr;
    }

    .mt-card-grid--matches,
    .mt-card-grid--compact,
    .mt-news-grid {
        grid-template-columns: 1fr;
    }

    .page-home .mt-card-grid--matches.mt-card-grid--compact {
        grid-template-columns: 1fr;
    }

    .mt-carousel--two-row .mt-carousel__track,
    .page-home .mt-carousel--two-row .mt-carousel__track {
        grid-auto-columns: 100%;
    }

    .mt-recent-form-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-live .mt-card-grid--matches {
        grid-template-columns: 1fr;
    }

    .mt-home-news-grid,
    .mt-home-about {
        grid-template-columns: 1fr;
    }

    .mt-carousel__slide {
        flex-basis: 100%;
        min-width: 100%;
    }

    .mt-home-section__tools {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .mt-home-section__select {
        min-width: 180px;
        font-size: 18px;
        line-height: 24px;
    }

    .mt-match-card__compact-body {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .page-home .mt-home-about {
        margin-top: 30px;
        grid-template-columns: 1fr;
    }

    .mt-home-about .mt-about__image {
        max-width: none;
        height: auto;
    }

    .mt-news-grid > .mt-news-card--featured:first-child {
        grid-column: auto;
    }

    .mt-filters {
        grid-template-columns: 1fr;
    }

    .mt-entity-card,
    .mt-scoreboard {
        grid-template-columns: 1fr;
    }

    .mt-match-card__body,
    .mt-timeline__item {
        grid-template-columns: 1fr;
    }

    .mt-match-card__team {
        justify-content: flex-start;
        text-align: left;
    }

    .mt-lineup-card li {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .mt-lineup-card li small {
        grid-column: 2;
    }
}

/* Stage 6d public IA and usability hardening */

.mt-site-header__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: start;
}

.mt-site-header__primary {
    min-width: 0;
}

.mt-site-header__meta {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.mt-site-header__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    padding-top: 12px;
}

.mt-site-header__nav a {
    color: #181818;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.mt-site-header__nav a.is-active,
.mt-site-header__nav a:hover {
    color: #6f6f6f;
}

.page-fixtures .mt-filters {
    grid-template-columns: 1fr;
}

.page-fixtures .mt-filters__actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
}

.page-leagues-index .mt-country-grid,
.page-leagues-index .mt-league-chip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.mt-country-card,
.mt-league-chip {
    display: grid;
    gap: 4px;
    padding: 16px 18px;
    border: 1px solid #efefef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 24px -18px rgba(18, 18, 18, 0.18);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.mt-country-card strong,
.mt-league-chip strong {
    color: #111;
    font-size: 15px;
    font-weight: 800;
    line-height: 20px;
}

.mt-country-card span,
.mt-league-chip span {
    color: #8d8d8d;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
}

.mt-country-card:hover,
.mt-country-card.is-active,
.mt-league-chip:hover {
    border-color: #111;
    transform: translateY(-1px);
}

.page-leagues-index .mt-league-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-leagues-index .mt-league-card {
    padding: 0 0 18px;
    border: 0;
    border-bottom: 1px solid #f1f1f1;
    border-radius: 0;
    box-shadow: none;
}

.page-leagues-index .mt-league-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.page-leagues-index .mt-league-card__head img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.page-leagues-index .mt-league-card__head h3,
.page-leagues-index .mt-league-card__head p {
    margin: 0;
}

.page-leagues-index .mt-league-card__head p {
    padding-top: 4px;
    color: #8d8d8d;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
}

.page-leagues-index .mt-league-card__actions {
    padding-left: 60px;
}

.page-team .mt-team-sheet {
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.page-team .mt-team-sheet__logo {
    width: 168px;
    height: 168px;
    border-radius: 20px;
}

.page-team .mt-team-sheet__desc {
    padding-top: 18px;
    max-width: 720px;
}

.page-search .mt-search-group__item p {
    margin: 6px 0 0;
}

@media (max-width: 1180px) {
    .page-leagues-index .mt-country-grid,
    .page-leagues-index .mt-league-chip-grid,
    .page-leagues-index .mt-league-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .mt-site-header__content {
        grid-template-columns: minmax(0, 1fr);
    }

    .mt-site-header__meta {
        justify-content: flex-start;
    }

    .page-fixtures .mt-filters {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .page-leagues-index .mt-country-grid,
    .page-leagues-index .mt-league-chip-grid,
    .page-leagues-index .mt-league-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-team .mt-team-sheet {
        grid-template-columns: minmax(0, 1fr);
    }

    .page-team .mt-team-sheet__logo {
        width: 132px;
        height: 132px;
    }
}

@media (max-width: 720px) {
    .mt-table thead {
        display: none;
    }

    .mt-table tr {
        display: block;
        border-bottom: 1px solid var(--mt-line);
    }

    .mt-table td {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        width: 100%;
        border-bottom: 0;
    }

    .mt-table td::before {
        content: attr(data-label);
        color: var(--mt-muted);
        font-size: 12px;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .mt-table__team {
        justify-content: flex-end;
    }
}

/* Inner page DLE reconciliation */

.mt-page-note {
    margin: -4px 0 24px;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.mt-section__eyebrow {
    margin: 6px 0 0;
    color: #6f6f6f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-article-meta,
.mt-match-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 50px;
    padding: 12px 0 0;
    margin-bottom: 38px;
}

.mt-article-meta span,
.mt-match-meta__item span {
    color: #a0a0a0;
    font-size: 11px;
    font-weight: 600;
    line-height: 14px;
    text-transform: uppercase;
}

.mt-match-meta__item strong {
    margin-left: 10px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.mt-team-sheet,
.mt-player-sheet {
    display: grid;
    grid-template-columns: 224px minmax(0, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.mt-team-sheet__logo,
.mt-player-sheet__media {
    width: 224px;
    height: 224px;
    overflow: hidden;
    background: #f5f5f5;
}

.mt-team-sheet__logo img,
.mt-player-sheet__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mt-team-sheet__body,
.mt-player-sheet__body {
    min-width: 0;
}

.mt-team-sheet__facts,
.mt-player-sheet__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
}

.mt-team-sheet__fact,
.mt-player-sheet__facts li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: #a0a0a0;
    font-size: 11px;
    font-weight: 600;
    line-height: 14px;
    text-transform: uppercase;
}

.mt-player-sheet__facts {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mt-team-sheet__fact strong,
.mt-player-sheet__facts strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: none;
}

.mt-player-sheet__facts img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.mt-team-sheet__desc,
.mt-player-sheet__desc,
.mt-copy-section__body {
    padding-top: 24px;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.mt-copy-section {
    margin-bottom: 36px;
}

.mt-copy-section__body p {
    margin: 0;
}

.mt-league-sheet {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 24px 28px;
    margin-bottom: 34px;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    box-shadow: 0 20px 20px -5px rgba(192, 191, 190, 0.18);
    background: #fff;
}

.mt-league-sheet__logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mt-league-sheet__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mt-league-sheet__body h2 {
    margin: 0;
    font-family: "Mulish", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
}

.mt-league-sheet__body p {
    margin: 8px 0 18px;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.mt-match-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 54px 0 62px;
}

.mt-match-hero__team {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mt-match-hero__team--away {
    flex-direction: row-reverse;
}

.mt-match-hero__logo {
    width: 66px;
    height: 66px;
}

.mt-match-hero__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mt-match-hero__name {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
}

.mt-match-hero__score {
    text-align: center;
}

.mt-match-hero__scoreline {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
}

.mt-match-hero__status {
    padding-top: 20px;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.mt-match-hero__countdown {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(217, 119, 6, 0.12);
    color: #b45309;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
}

.mt-match-hero__countdown.is-countdown-badge {
    background: rgba(217, 119, 6, 0.12);
    color: #b45309;
}

.mt-match-hero__countdown.is-live-badge {
    background: rgba(22, 163, 74, 0.14);
    color: #15803d;
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.28);
    animation: mt-live-badge-pulse 1.6s infinite;
}

.mt-match-shell__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    margin-bottom: 28px;
}

.mt-match-shell__title {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 34px;
}

.mt-section-title-live {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.mt-live-section-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #16a34a;
    flex: 0 0 10px;
}

.mt-match-shell__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.mt-match-shell__tabs button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.mt-match-shell__tabs button.is-active {
    color: #000;
    font-weight: 700;
}

.mt-match-shell__panel[hidden] {
    display: none;
}

.mt-match-shell__panel.is-active {
    display: block;
}

.mt-match-shell__section + .mt-match-shell__section {
    margin-top: 48px;
}

.mt-match-shell__section > h2,
.mt-match-shell__section-top h2 {
    margin: 0 0 18px;
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 42px;
}

.mt-match-shell__section-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
}

.mt-match-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mt-match-preview-card {
    padding: 16px 18px;
    border: 1px solid #efefef;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 24px -18px rgba(18, 18, 18, 0.18);
}

.mt-match-preview-card strong {
    display: block;
    margin-bottom: 6px;
}

.mt-match-preview-card p {
    margin: 0;
    color: #6f6f6f;
}

.mt-match-preview-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.mt-match-preview-form h3 {
    margin: 0 0 12px;
    font-size: 16px;
}

.mt-match-timeline {
    position: relative;
    padding-top: 28px;
}

.mt-match-timeline::before {
    content: "";
    position: absolute;
    top: 72px;
    bottom: 12px;
    left: 50%;
    width: 1px;
    background: #000;
    transform: translateX(-50%);
}

.mt-match-timeline__teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.mt-match-timeline__team {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.mt-match-timeline__team--away {
    justify-content: flex-end;
}

.mt-match-timeline__team-logo {
    width: 26px;
    height: 26px;
    overflow: hidden;
}

.mt-match-timeline__team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mt-match-timeline__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.mt-match-timeline__item.is-event-new {
    opacity: 0;
    transform: translateY(16px);
}

.mt-match-timeline__item.is-event-new.is-event-visible {
    opacity: 1;
    transform: translateY(0);
}

.mt-match-timeline__col {
    min-height: 1px;
}

.mt-match-timeline__stack {
    display: grid;
    gap: 10px;
}

.mt-match-timeline__stack--home {
    justify-items: end;
}

.mt-match-timeline__stack--away {
    justify-items: start;
}

.mt-match-timeline__col--home {
    display: flex;
    justify-content: flex-end;
}

.mt-match-timeline__col--home .mt-match-timeline__card,
.mt-match-timeline__stack--home .mt-match-timeline__card {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.mt-match-timeline__col--home .mt-match-timeline__card-head,
.mt-match-timeline__stack--home .mt-match-timeline__card-head {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.mt-match-timeline__col--home .mt-match-timeline__card p,
.mt-match-timeline__stack--home .mt-match-timeline__card p {
    margin: 6px 28px 0 0;
}

.mt-match-timeline__col--away {
    display: flex;
    justify-content: flex-start;
}

.mt-match-timeline__minute {
    display: grid;
    place-items: center;
    min-height: 24px;
    color: #fff;
    background: #000;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.mt-match-timeline__card {
    width: min(100%, 356px);
    padding: 4px 0;
}

.mt-match-timeline__card-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mt-match-timeline__card-head strong {
    color: #000;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.mt-match-timeline__card p {
    margin: 6px 0 0 28px;
    color: #7b7b7b;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.mt-match-timeline__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.mt-match-timeline__icon--goal {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg clip-path='url(%23clip0_131_3883)'%3E%3Cpath d='M5.6135 0.658605C4.49818 1.11066 3.48552 1.78309 2.63614 2.63564C1.79913 3.47051 1.13536 4.46255 0.682966 5.55476C0.230571 6.64697 -0.00152745 7.81781 7.56447e-06 9.00001C7.56447e-06 10.1687 0.221861 11.3083 0.659102 12.3863C1.1111 13.5016 1.78353 14.5143 2.63614 15.3636C3.48535 16.2164 4.49805 16.8889 5.6135 17.3407C6.68909 17.7776 7.83932 18.0013 9.00026 17.9995C10.1823 18.0009 11.353 17.7688 12.4451 17.3164C13.5372 16.8641 14.5292 16.2004 15.3641 15.3636C16.217 14.5145 16.8895 13.5018 17.3412 12.3863C17.7778 11.3108 18.0015 10.1607 17.9998 9.00001C17.9998 7.83105 17.7782 6.69144 17.3412 5.61301C16.8885 4.49678 16.2229 3.49445 15.3641 2.63564C14.5053 1.77683 13.504 1.11127 12.3868 0.658605C11.3111 0.222123 10.1611 -0.00154188 9.00026 8e-06C7.8313 8e-06 6.69193 0.221613 5.6135 0.658605ZM2.24939 12.7887C1.81588 12.5166 1.41644 12.2032 1.06277 11.8341C0.524568 10.316 0.429589 8.67611 0.788931 7.10604C0.957264 6.7735 1.14996 6.45385 1.36545 6.14973C1.43236 6.05547 1.49429 5.95723 1.56592 5.8657L3.59692 7.06749V7.11848C3.5924 8.20873 3.70184 9.29647 3.92349 10.364C3.92423 10.3689 3.92498 10.3717 3.92597 10.3761L2.35086 12.8459C2.31616 12.8284 2.2823 12.8093 2.24939 12.7887ZM8.28819 16.9639C8.6366 17.1419 8.99803 17.2932 9.36935 17.4165C7.77321 17.4875 6.18972 17.1039 4.80294 16.3105L8.2076 16.9171C8.23372 16.9338 8.26033 16.9497 8.28819 16.9639ZM8.27575 16.3493L4.25801 15.6332C3.78794 15.0624 3.36512 14.4586 3.00175 13.8131C2.90923 13.649 2.80601 13.4896 2.72766 13.3182L4.30128 10.8509C4.3361 10.8596 4.3749 10.8689 4.41893 10.8805C5.40334 11.1439 6.40516 11.3312 7.41395 11.478C7.4729 11.4862 7.52214 11.4934 7.56418 11.4979L9.45043 14.7593C9.1236 15.2199 8.79137 15.6768 8.45383 16.1297C8.39762 16.205 8.33793 16.2774 8.27575 16.3493ZM14.9602 14.96C14.6455 15.2751 14.3062 15.5646 13.9455 15.8257C13.8867 15.3562 13.7849 14.893 13.6413 14.4421L15.6539 10.6875C16.2083 10.4351 16.743 10.1488 17.2394 9.79391C17.3044 9.74789 17.3583 9.69641 17.4001 9.6402C17.2544 11.5804 16.4411 13.4794 14.9602 14.96ZM14.8709 10.0906C14.9458 10.2334 15.0197 10.3776 15.0938 10.5239L13.1498 14.1501C13.1386 14.1526 13.1279 14.1551 13.1167 14.1566C12.0686 14.3539 11.0049 14.4562 9.93841 14.4623L7.99843 11.1079C8.30027 10.547 8.59956 9.98487 8.89629 9.42133C9.09775 9.03931 9.29573 8.65479 9.49346 8.27053L13.5085 7.85816C14.0002 8.57943 14.466 9.31612 14.8709 10.0906ZM14.0564 5.78935C13.8659 6.2925 13.6619 6.79042 13.4592 7.28935L9.54793 7.69102C9.50138 7.62916 9.4526 7.56902 9.40168 7.5107C8.93982 6.98766 8.47497 6.46784 8.01087 5.94653C8.0151 5.94131 8.01932 5.93733 8.02355 5.93261C7.83627 5.74557 7.64849 5.55854 7.46121 5.37101L8.55008 2.0927C8.62453 2.07205 8.70044 2.05708 8.77716 2.04793C9.3691 1.98774 9.96179 1.91959 10.5552 1.88527C10.9186 1.86487 11.284 1.85318 11.6535 1.8793L14.3476 4.91586C14.2549 5.20885 14.1643 5.50258 14.0564 5.78935ZM14.9602 3.03955C15.6826 3.76063 16.2674 4.60744 16.6858 5.53839C16.1823 5.19398 15.6434 4.90441 15.0784 4.67461C14.9893 4.6386 14.8993 4.60526 14.8082 4.57462L12.1564 1.58581C12.1749 1.45673 12.1846 1.3274 12.1885 1.19707C13.2262 1.61996 14.1686 2.24645 14.9602 3.03955ZM6.30095 1.04013C6.3114 1.04784 6.31637 1.05431 6.32234 1.05605C6.92846 1.26547 7.47986 1.57388 7.99968 1.93974L6.98243 5.00316C6.97725 5.00453 6.97218 5.00627 6.96726 5.00838C6.75909 5.09444 6.54693 5.17154 6.34199 5.26481C5.4976 5.64857 4.67436 6.07363 3.89886 6.58324L1.89149 5.39563C1.89368 5.33317 1.90551 5.27142 1.92655 5.21258C2.06136 4.85343 2.19392 4.4923 2.34638 4.14037C2.46423 3.87031 2.59683 3.60694 2.74358 3.35144C3.71308 2.27477 4.94518 1.46788 6.31961 1.00954C6.31339 1.01924 6.30692 1.02944 6.30095 1.04013Z' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_131_3883'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.mt-match-timeline__icon--card {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg clip-path='url(%23clip0_131_3886)'%3E%3Cpath d='M11.6702 3.07735L10.2676 0L0.568359 4.42118L6.75843 18L6.77039 17.9938V18H17.43V3.07735H11.6702ZM1.4013 4.90138L10.0845 0.943234L11.0573 3.07735H6.77091V16.6806L1.4013 4.90138Z' fill='%23010002'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_131_3886'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.mt-match-timeline__icon--yellow-card {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg clip-path='url(%23clip0_131_3886)'%3E%3Cpath d='M11.6702 3.07735L10.2676 0L0.568359 4.42118L6.75843 18L6.77039 17.9938V18H17.43V3.07735H11.6702ZM1.4013 4.90138L10.0845 0.943234L11.0573 3.07735H6.77091V16.6806L1.4013 4.90138Z' fill='%23F3C316'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_131_3886'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.mt-match-timeline__icon--red-card {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg clip-path='url(%23clip0_131_3886)'%3E%3Cpath d='M11.6702 3.07735L10.2676 0L0.568359 4.42118L6.75843 18L6.77039 17.9938V18H17.43V3.07735H11.6702ZM1.4013 4.90138L10.0845 0.943234L11.0573 3.07735H6.77091V16.6806L1.4013 4.90138Z' fill='%23D83A34'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_131_3886'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.mt-match-timeline__icon--substitution {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg clip-path='url(%23clip0_764_5417)'%3E%3Cpath d='M14.0625 8.9H13.9625V9V13.4H4.0375V11.25V11.0085L3.86677 11.1793L1.05427 13.9935L0.983579 14.0642L1.05431 14.1349L3.86681 16.9457L4.0375 17.1163V16.875V14.725H15.1875H15.2875V14.625V9V8.9H15.1875H14.0625ZM13.9625 1.125V3.275H2.8125H2.7125V3.375V9V9.1H2.8125H3.9375H4.0375V9V4.6H13.9625V6.75V6.99152L14.1332 6.82069L16.9457 4.0065L17.0164 3.93577L16.9457 3.86508L14.1332 1.05427L13.9625 0.883681V1.125Z' fill='black' stroke='black' stroke-width='0.2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_764_5417'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.mt-lineup-card {
    padding: 24px 20px 22px;
    border: 1px solid #f0f0f0;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 40px -34px rgba(0, 0, 0, 0.32);
}

.mt-lineup-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.mt-lineup-card__head span {
    color: #7d7d7d;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
}

.mt-tabs button.is-empty {
    opacity: 0.55;
}

.page-live .mt-page-header h1,
.page-fixtures .mt-page-header h1,
.page-team .mt-page-header h1,
.page-player .mt-page-header h1,
.page-league .mt-page-header h1,
.page-standings .mt-page-header h1,
.page-match .mt-page-header h1,
.page-article .mt-page-header h1,
.page-static .mt-page-header h1,
.page-news-index .mt-page-header h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
}

.page-live .mt-page-header p,
.page-fixtures .mt-page-header p,
.page-team .mt-page-header p,
.page-player .mt-page-header p,
.page-league .mt-page-header p,
.page-standings .mt-page-header p,
.page-match .mt-page-header p,
.page-article .mt-page-header p,
.page-static .mt-page-header p,
.page-news-index .mt-page-header p {
    margin-top: 6px;
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.mt-lineup-card__coach {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #efefef;
}

.mt-lineup-card__coach span {
    color: #a0a0a0;
    font-size: 11px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-lineup-card__coach strong {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.mt-lineup-card__group strong {
    color: #000;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 800;
    line-height: 20px;
    letter-spacing: 0.08em;
}

.mt-lineup-card li {
    grid-template-columns: 48px 46px minmax(0, 1fr);
    gap: 12px;
    padding: 6px 0;
}

.mt-lineup-card__number {
    color: #000;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.mt-lineup-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f3f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8b8b8b;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-lineup-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mt-lineup-card__details {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.mt-lineup-card__player {
    color: #000;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    min-width: 0;
}

a.mt-lineup-card__player {
    transition: color 0.2s ease;
}

a.mt-lineup-card__player:hover {
    color: #666;
}

.mt-lineup-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
}

.mt-lineup-card li small {
    color: #8f8f8f;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}

.mt-lineup-card__badges {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mt-lineup-card__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    cursor: pointer;
    outline: none;
}

.mt-lineup-card__badge-icon {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.mt-lineup-card__badge-icon--goal {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg clip-path='url(%23clip0_131_3883)'%3E%3Cpath d='M5.6135 0.658605C4.49818 1.11066 3.48552 1.78309 2.63614 2.63564C1.79913 3.47051 1.13536 4.46255 0.682966 5.55476C0.230571 6.64697 -0.00152745 7.81781 7.56447e-06 9.00001C7.56447e-06 10.1687 0.221861 11.3083 0.659102 12.3863C1.1111 13.5016 1.78353 14.5143 2.63614 15.3636C3.48535 16.2164 4.49805 16.8889 5.6135 17.3407C6.68909 17.7776 7.83932 18.0013 9.00026 17.9995C10.1823 18.0009 11.353 17.7688 12.4451 17.3164C13.5372 16.8641 14.5292 16.2004 15.3641 15.3636C16.217 14.5145 16.8895 13.5018 17.3412 12.3863C17.7778 11.3108 18.0015 10.1607 17.9998 9.00001C17.9998 7.83105 17.7782 6.69144 17.3412 5.61301C16.8885 4.49678 16.2229 3.49445 15.3641 2.63564C14.5053 1.77683 13.504 1.11127 12.3868 0.658605C11.3111 0.222123 10.1611 -0.00154188 9.00026 8e-06C7.8313 8e-06 6.69193 0.221613 5.6135 0.658605ZM2.24939 12.7887C1.81588 12.5166 1.41644 12.2032 1.06277 11.8341C0.524568 10.316 0.429589 8.67611 0.788931 7.10604C0.957264 6.7735 1.14996 6.45385 1.36545 6.14973C1.43236 6.05547 1.49429 5.95723 1.56592 5.8657L3.59692 7.06749V7.11848C3.5924 8.20873 3.70184 9.29647 3.92349 10.364C3.92423 10.3689 3.92498 10.3717 3.92597 10.3761L2.35086 12.8459C2.31616 12.8284 2.2823 12.8093 2.24939 12.7887ZM8.28819 16.9639C8.6366 17.1419 8.99803 17.2932 9.36935 17.4165C7.77321 17.4875 6.18972 17.1039 4.80294 16.3105L8.2076 16.9171C8.23372 16.9338 8.26033 16.9497 8.28819 16.9639ZM8.27575 16.3493L4.25801 15.6332C3.78794 15.0624 3.36512 14.4586 3.00175 13.8131C2.90923 13.649 2.80601 13.4896 2.72766 13.3182L4.30128 10.8509C4.3361 10.8596 4.3749 10.8689 4.41893 10.8805C5.40334 11.1439 6.40516 11.3312 7.41395 11.478C7.4729 11.4862 7.52214 11.4934 7.56418 11.4979L9.45043 14.7593C9.1236 15.2199 8.79137 15.6768 8.45383 16.1297C8.39762 16.205 8.33793 16.2774 8.27575 16.3493ZM14.9602 14.96C14.6455 15.2751 14.3062 15.5646 13.9455 15.8257C13.8867 15.3562 13.7849 14.893 13.6413 14.4421L15.6539 10.6875C16.2083 10.4351 16.743 10.1488 17.2394 9.79391C17.3044 9.74789 17.3583 9.69641 17.4001 9.6402C17.2544 11.5804 16.4411 13.4794 14.9602 14.96ZM14.8709 10.0906C14.9458 10.2334 15.0197 10.3776 15.0938 10.5239L13.1498 14.1501C13.1386 14.1526 13.1279 14.1551 13.1167 14.1566C12.0686 14.3539 11.0049 14.4562 9.93841 14.4623L7.99843 11.1079C8.30027 10.547 8.59956 9.98487 8.89629 9.42133C9.09775 9.03931 9.29573 8.65479 9.49346 8.27053L13.5085 7.85816C14.0002 8.57943 14.466 9.31612 14.8709 10.0906ZM14.0564 5.78935C13.8659 6.2925 13.6619 6.79042 13.4592 7.28935L9.54793 7.69102C9.50138 7.62916 9.4526 7.56902 9.40168 7.5107C8.93982 6.98766 8.47497 6.46784 8.01087 5.94653C8.0151 5.94131 8.01932 5.93733 8.02355 5.93261C7.83627 5.74557 7.64849 5.55854 7.46121 5.37101L8.55008 2.0927C8.62453 2.07205 8.70044 2.05708 8.77716 2.04793C9.3691 1.98774 9.96179 1.91959 10.5552 1.88527C10.9186 1.86487 11.284 1.85318 11.6535 1.8793L14.3476 4.91586C14.2549 5.20885 14.1643 5.50258 14.0564 5.78935ZM14.9602 3.03955C15.6826 3.76063 16.2674 4.60744 16.6858 5.53839C16.1823 5.19398 15.6434 4.90441 15.0784 4.67461C14.9893 4.6386 14.8993 4.60526 14.8082 4.57462L12.1564 1.58581C12.1749 1.45673 12.1846 1.3274 12.1885 1.19707C13.2262 1.61996 14.1686 2.24645 14.9602 3.03955ZM6.30095 1.04013C6.3114 1.04784 6.31637 1.05431 6.32234 1.05605C6.92846 1.26547 7.47986 1.57388 7.99968 1.93974L6.98243 5.00316C6.97725 5.00453 6.97218 5.00627 6.96726 5.00838C6.75909 5.09444 6.54693 5.17154 6.34199 5.26481C5.4976 5.64857 4.67436 6.07363 3.89886 6.58324L1.89149 5.39563C1.89368 5.33317 1.90551 5.27142 1.92655 5.21258C2.06136 4.85343 2.19392 4.4923 2.34638 4.14037C2.46423 3.87031 2.59683 3.60694 2.74358 3.35144C3.71308 2.27477 4.94518 1.46788 6.31961 1.00954C6.31339 1.01924 6.30692 1.02944 6.30095 1.04013Z' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_131_3883'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.mt-lineup-card__badge-icon--card {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg clip-path='url(%23clip0_131_3886)'%3E%3Cpath d='M11.6702 3.07735L10.2676 0L0.568359 4.42118L6.75843 18L6.77039 17.9938V18H17.43V3.07735H11.6702ZM1.4013 4.90138L10.0845 0.943234L11.0573 3.07735H6.77091V16.6806L1.4013 4.90138Z' fill='%23010002'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_131_3886'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.mt-lineup-card__badge-icon--yellow-card {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg clip-path='url(%23clip0_131_3886)'%3E%3Cpath d='M11.6702 3.07735L10.2676 0L0.568359 4.42118L6.75843 18L6.77039 17.9938V18H17.43V3.07735H11.6702ZM1.4013 4.90138L10.0845 0.943234L11.0573 3.07735H6.77091V16.6806L1.4013 4.90138Z' fill='%23F3C316'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_131_3886'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.mt-lineup-card__badge-icon--red-card {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg clip-path='url(%23clip0_131_3886)'%3E%3Cpath d='M11.6702 3.07735L10.2676 0L0.568359 4.42118L6.75843 18L6.77039 17.9938V18H17.43V3.07735H11.6702ZM1.4013 4.90138L10.0845 0.943234L11.0573 3.07735H6.77091V16.6806L1.4013 4.90138Z' fill='%23D83A34'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_131_3886'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.mt-lineup-card__badge-icon--substitution {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cg clip-path='url(%23clip0_764_5417)'%3E%3Cpath d='M14.0625 8.9H13.9625V9V13.4H4.0375V11.25V11.0085L3.86677 11.1793L1.05427 13.9935L0.983579 14.0642L1.05431 14.1349L3.86681 16.9457L4.0375 17.1163V16.875V14.725H15.1875H15.2875V14.625V9V8.9H15.1875H14.0625ZM13.9625 1.125V3.275H2.8125H2.7125V3.375V9V9.1H2.8125H3.9375H4.0375V9V4.6H13.9625V6.75V6.99152L14.1332 6.82069L16.9457 4.0065L17.0164 3.93577L16.9457 3.86508L14.1332 1.05427L13.9625 0.883681V1.125Z' fill='black' stroke='black' stroke-width='0.2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_764_5417'%3E%3Crect width='18' height='18' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}

.mt-lineup-card__badge-count {
    display: inline-block;
    min-width: 6px;
}

.mt-lineup-card__badge-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 12px);
    z-index: 20;
    display: grid;
    gap: 3px;
    min-width: 124px;
    width: max-content;
    max-width: min(220px, calc(100vw - 32px));
    padding: 12px 14px 10px;
    border-radius: 0;
    background: #ffffff;
    color: #000;
    box-shadow: 0 20px 20px -5px rgba(192, 191, 190, 0.36);
    transform: translateX(-50%) translateY(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    text-align: left;
    white-space: normal;
    word-break: break-word;
}

.mt-lineup-card__badge-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 10px;
    height: 10px;
    background: #ffffff;
    transform: translateX(-50%) rotate(45deg);
}

.mt-lineup-card__badge-tooltip strong,
.mt-lineup-card__badge-tooltip span {
    position: relative;
    z-index: 1;
}

.mt-lineup-card__badge-tooltip strong {
    color: #000;
    font-size: 11px;
    font-weight: 700;
    line-height: 14px;
    text-transform: uppercase;
}

.mt-lineup-card__badge-tooltip span {
    color: #a0a0a0;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.mt-lineup-card__badge:hover .mt-lineup-card__badge-tooltip,
.mt-lineup-card__badge:focus-visible .mt-lineup-card__badge-tooltip,
.mt-lineup-card__badge.is-open .mt-lineup-card__badge-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.mt-lineup-card__badge.is-align-left .mt-lineup-card__badge-tooltip {
    left: 0;
    transform: translateX(0) translateY(6px);
}

.mt-lineup-card__badge.is-align-left .mt-lineup-card__badge-tooltip::after {
    left: 18px;
    transform: translateX(-50%) rotate(45deg);
}

.mt-lineup-card__badge.is-align-left:hover .mt-lineup-card__badge-tooltip,
.mt-lineup-card__badge.is-align-left:focus-visible .mt-lineup-card__badge-tooltip,
.mt-lineup-card__badge.is-align-left.is-open .mt-lineup-card__badge-tooltip {
    transform: translateX(0) translateY(0);
}

.mt-lineup-card__badge.is-align-right .mt-lineup-card__badge-tooltip {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(6px);
}

.mt-lineup-card__badge.is-align-right .mt-lineup-card__badge-tooltip::after {
    left: auto;
    right: 18px;
    transform: translateX(50%) rotate(45deg);
}

.mt-lineup-card__badge.is-align-right:hover .mt-lineup-card__badge-tooltip,
.mt-lineup-card__badge.is-align-right:focus-visible .mt-lineup-card__badge-tooltip,
.mt-lineup-card__badge.is-align-right.is-open .mt-lineup-card__badge-tooltip {
    transform: translateX(0) translateY(0);
}

.mt-lineup-card__badge:focus-visible {
    outline: 2px solid rgba(0, 0, 0, 0.12);
    outline-offset: 4px;
}

@media (max-width: 960px) {
    .mt-lineup-card__badge-tooltip {
        max-width: min(260px, calc(100vw - 24px));
    }

    .mt-lineup-card__badge-tooltip::after {
        left: 18px;
        transform: translateX(-50%) rotate(45deg);
    }

    .mt-lineup-card__badge:hover .mt-lineup-card__badge-tooltip,
    .mt-lineup-card__badge:focus-visible .mt-lineup-card__badge-tooltip,
    .mt-lineup-card__badge.is-open .mt-lineup-card__badge-tooltip {
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 640px) {
    .mt-lineup-card__badges {
        gap: 6px;
    }

    .mt-lineup-card__badge {
        gap: 4px;
        font-size: 11px;
        line-height: 14px;
    }

    .mt-lineup-card__badge-tooltip {
        min-width: 0;
        padding: 11px 12px 9px;
    }

    .mt-lineup-card__badge-tooltip strong {
        font-size: 10px;
        line-height: 13px;
    }

    .mt-lineup-card__badge-tooltip span {
        font-size: 12px;
        line-height: 17px;
    }
}

.mt-match-stats {
    border: 1px solid #efefef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 40px -34px rgba(0, 0, 0, 0.32);
    overflow: hidden;
}

.mt-match-stats__teams {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #efefef;
}

.mt-match-stats__team {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.mt-match-stats__team--away {
    justify-content: flex-end;
}

.mt-match-stats__team img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.mt-match-stats__rows {
    padding: 8px 24px 18px;
}

.mt-match-stats__row {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 54px;
    gap: 18px;
    align-items: center;
    padding: 12px 0;
}

.mt-match-stats__row + .mt-match-stats__row {
    border-top: 1px solid #f3f3f3;
}

.mt-match-stats__value {
    color: #000;
    font-family: "Nunito", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.mt-match-stats__value--away {
    text-align: right;
}

.mt-match-stats__body {
    display: grid;
    gap: 8px;
}

.mt-match-stats__label {
    color: #8f8f8f;
    text-align: center;
    font-family: "Nunito", sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-match-stats__bars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 10px;
}

.mt-match-stats__bars::before,
.mt-match-stats__bars::after {
    content: "";
    display: block;
    height: 7px;
    border-radius: 999px;
    background: #f1f1f1;
}

.mt-match-stats__bars {
    position: relative;
}

.mt-match-stats__bar {
    position: absolute;
    top: 0;
    height: 7px;
    border-radius: 999px;
}

.mt-match-stats__bar--home {
    left: 0;
    background: #000;
}

.mt-match-stats__bar--away {
    right: 0;
    background: #d7d7d7;
}

.mt-match-coaches,
.mt-player-stat-grid,
.mt-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mt-match-coach-card,
.mt-player-stat-card,
.mt-media-card {
    padding: 20px 22px;
    border: 1px solid #efefef;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 24px 40px -34px rgba(0, 0, 0, 0.32);
}

.mt-match-coach-card__team,
.mt-player-stat-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.mt-match-coach-card__team img,
.mt-player-stat-card__head img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.mt-match-coach-card p,
.mt-player-stat-card p {
    margin: 0;
    color: #7d7d7d;
}

.mt-player-stat-card__list {
    display: grid;
    gap: 12px;
}

.mt-player-stat-card__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid #f3f3f3;
}

.mt-player-stat-card__row:first-child {
    padding-top: 0;
    border-top: 0;
}

.mt-player-stat-card__row strong {
    display: block;
    margin-bottom: 4px;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
}

.mt-player-stat-card__metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 14px;
    color: #000;
    font-size: 13px;
    font-weight: 700;
    line-height: 18px;
}

.mt-h2h-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    margin-bottom: 26px;
    padding: 26px 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #efefef;
    box-shadow: 0 24px 40px -34px rgba(0, 0, 0, 0.32);
}

.mt-h2h-summary__team {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.mt-h2h-summary__team--away {
    justify-content: flex-end;
}

.mt-h2h-summary__team img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.mt-h2h-summary__center {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    justify-content: center;
    gap: 18px 36px;
    text-align: center;
}

.mt-h2h-summary__metric small {
    display: block;
    margin-bottom: 8px;
    color: #a0a0a0;
    font-size: 11px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-h2h-summary__metric strong {
    color: #000;
    font-family: "Mulish", sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
}

.mt-h2h-summary__totals {
    grid-column: 1 / -1;
    color: #7d7d7d;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}

.mt-media-card {
    display: grid;
    gap: 14px;
}

.mt-media-card__cover {
    position: relative;
    min-height: 160px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(44, 42, 37, 0) 0%, #2c2a25 100%), url("../images/video_cover.jpg") center/cover no-repeat;
    overflow: hidden;
}

.mt-media-card__kind {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mt-media-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    margin: -34px 0 0 -34px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.mt-media-card__play::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -4px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #fff;
}

.page-match .mt-lineup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-article .mt-article,
.page-static .mt-article {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.page-article .mt-article__cover,
.page-static .mt-article__cover {
    border-radius: 0;
    margin-bottom: 24px;
}

.page-article .mt-article__excerpt {
    margin-bottom: 22px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}

.page-article .mt-share-strip {
    padding-top: 24px;
}

@media (max-width: 1200px) {
    .mt-team-sheet,
    .mt-player-sheet,
    .mt-league-sheet {
        grid-template-columns: 1fr;
    }

    .mt-team-sheet__logo,
    .mt-player-sheet__media {
        width: 224px;
    }

    .mt-match-hero {
        gap: 18px;
        margin: 40px 0 48px;
    }

    .mt-match-hero__name,
    .mt-match-hero__scoreline {
        font-size: 24px;
        line-height: 32px;
    }
}

@media (max-width: 820px) {
    .mt-article-meta,
    .mt-match-meta {
        gap: 16px;
        margin-bottom: 28px;
    }

    .mt-match-meta__item {
        width: 100%;
        display: flex;
        justify-content: space-between;
        gap: 12px;
    }

    .mt-team-sheet__logo,
    .mt-player-sheet__media {
        width: 100%;
        height: 320px;
    }

    .mt-team-sheet__facts,
    .mt-player-sheet__facts {
        flex-direction: column;
        gap: 10px;
    }

    .mt-team-sheet__fact,
    .mt-player-sheet__facts li {
        justify-content: space-between;
    }

    .mt-league-sheet {
        padding: 20px;
    }

    .mt-match-hero {
        flex-direction: column;
        gap: 14px;
    }

    .mt-match-hero__team,
    .mt-match-hero__team--away {
        flex-direction: row;
    }

    .mt-match-shell__head,
    .mt-match-shell__section-top {
        align-items: flex-start;
    }

    .page-match .mt-lineup-grid {
        grid-template-columns: 1fr;
    }

    .mt-match-timeline::before {
        left: 21px;
        transform: none;
    }

    .mt-match-timeline__teams {
        display: none;
    }

    .mt-match-timeline__item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
    }

    .mt-match-timeline__col--home,
    .mt-match-timeline__col--away {
        grid-column: 2;
        justify-content: flex-start;
    }

    .mt-match-timeline__minute {
        grid-column: 1;
        grid-row: 1;
    }

    .mt-match-timeline__card {
        width: 100%;
    }

    .mt-match-stats__teams,
    .mt-h2h-summary,
    .mt-match-coaches,
    .mt-player-stat-grid,
    .mt-media-grid {
        grid-template-columns: 1fr;
    }

    .mt-h2h-summary__team,
    .mt-h2h-summary__team--away {
        justify-content: center;
        text-align: center;
    }

    .mt-h2h-summary__center {
        gap: 16px;
    }

    .mt-match-stats__row {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        gap: 12px;
    }

    .mt-player-stat-card__row {
        flex-direction: column;
        align-items: flex-start;
    }

    .mt-player-stat-card__metrics {
        justify-content: flex-start;
    }

    .page-match .mt-card-grid--compact {
        grid-template-columns: 1fr;
    }

    .page-match .mt-card-grid--related-league {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mt-match-card__compact-head {
        margin: 16px 16px 0;
    }

    .mt-match-card__compact-body {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 16px 16px;
    }

    .mt-match-card__compact-team,
    .mt-match-card__compact-team--home,
    .mt-match-card__compact-team--away {
        justify-content: center;
    }

    .mt-match-card__compact-score {
        margin: 0 auto;
    }

    .mt-match-card__compact-name {
        white-space: normal;
        text-align: center;
    }
}
