/*
 * MyLiverpool.ru — Матч-центр v2
 * Версия: 2026-08-15.2
 * Путь на uCoz: /css/match-center.css
 *
 * Зависимость: /css/myliverpool.css
 * Все компоненты изолированы префиксом mlmc-.
 */

/* 01. Страница и общая сетка */

body.mlmc-page {
  background:
    radial-gradient(circle at 50% 0, rgba(200, 16, 46, 0.055), transparent 420px),
    var(--ml-canvas, #f4f4f1);
}

.mlmc-page a {
  color: inherit;
}

.mlmc-main {
  min-width: 0;
}

.mlmc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--ml-sidebar, 376px);
  align-items: start;
  gap: 24px;
  padding: 18px 0 44px;
}

.mlmc-layout__aside,
.mlmc-layout__main {
  min-width: 0;
}

.mlmc-layout__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}

.mlmc-layout__aside > * {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.mlmc-layout__main {
  width: 100%;
}

.mlmc-panel {
  overflow: hidden;
  border: 1px solid var(--ml-line, #deded9);
  border-radius: var(--ml-radius, 14px);
  background: #fff;
  box-shadow: var(--ml-shadow-sm, 0 8px 24px rgba(23, 23, 23, 0.055));
}

.mlmc-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
}

.mlmc-section-head__copy {
  min-width: 0;
}

.mlmc-eyebrow {
  display: block;
  margin-bottom: 6px;
  color: var(--ml-red, #c8102e);
  font-size: 9px;
  font-weight: 950;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mlmc-section-head h2 {
  margin: 0;
  color: var(--ml-ink, #171717);
  font-size: clamp(22px, 3vw, 31px);
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.mlmc-section-head p {
  margin: 7px 0 0;
  color: var(--ml-muted, #6f706d);
  font-size: 12px;
  line-height: 1.5;
}

/* 02. Герой и хлебные крошки */

.mlmc-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 42px) 0 0 / 42px 42px,
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.13), transparent 250px),
    linear-gradient(135deg, #31040d 0%, #76091d 44%, var(--ml-red, #c8102e) 100%);
  color: #fff;
}

.mlmc-hero::after {
  position: absolute;
  right: -130px;
  bottom: -230px;
  width: 480px;
  height: 480px;
  border: 65px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.mlmc-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 250px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  padding-top: 46px;
  padding-bottom: 42px;
}

.mlmc-hero--compact .mlmc-hero__inner {
  min-height: 195px;
  padding-top: 34px;
  padding-bottom: 32px;
}

.mlmc-hero__copy {
  min-width: 0;
  max-width: 780px;
}

.mlmc-breadcrumbs {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.4;
}

.mlmc-breadcrumbs a {
  color: rgba(255, 255, 255, 0.72) !important;
  text-decoration: none !important;
}

.mlmc-breadcrumbs a:hover {
  color: #fff !important;
}

.mlmc-breadcrumbs span {
  color: rgba(255, 255, 255, 0.32);
}

.mlmc-hero__kicker {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(28, 0, 7, 0.18);
  color: rgba(255, 255, 255, 0.84);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mlmc-hero__kicker::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
  content: "";
}

.mlmc-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.mlmc-hero--compact h1 {
  font-size: clamp(32px, 4.8vw, 52px);
}

.mlmc-hero__description {
  max-width: 720px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.62;
}

.mlmc-hero__description > :first-child {
  margin-top: 0;
}

.mlmc-hero__description > :last-child {
  margin-bottom: 0;
}

.mlmc-hero__actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: stretch;
  gap: 9px;
  width: min(230px, 100%);
}

.mlmc-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: #fff;
  color: var(--ml-red, #c8102e) !important;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
  transition: transform 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.mlmc-button:hover {
  transform: translateY(-1px);
}

.mlmc-button--ghost {
  background: rgba(28, 0, 7, 0.18);
  color: #fff !important;
}

.mlmc-button--red {
  border-color: var(--ml-red, #c8102e);
  background: var(--ml-red, #c8102e);
  color: #fff !important;
}

.mlmc-button--red:hover {
  border-color: var(--ml-red-dark, #970c24);
  background: var(--ml-red-dark, #970c24);
}

.mlmc-pagebar {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.mlmc-pagebar__breadcrumbs {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: var(--ml-muted, #6f706d);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.4;
}

.mlmc-pagebar__breadcrumbs a {
  color: var(--ml-muted, #6f706d) !important;
  text-decoration: none !important;
}

.mlmc-pagebar__breadcrumbs a:hover {
  color: var(--ml-red, #c8102e) !important;
}

.mlmc-pagebar__breadcrumbs span {
  color: #b2b3ad;
}

.mlmc-pagebar__add {
  display: inline-flex;
  min-height: 32px;
  flex: 0 0 auto;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(200, 16, 46, 0.24);
  border-radius: 999px;
  background: #fff;
  color: var(--ml-red, #c8102e) !important;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
}

.mlmc-pagebar__add:hover {
  border-color: var(--ml-red, #c8102e);
  background: var(--ml-red, #c8102e);
  color: #fff !important;
}

/* 03. Навигация сезонов и турниров */

.mlmc-taxonomy {
  margin-bottom: 18px;
  padding: 20px;
}

.mlmc-taxonomy__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 13px;
}

.mlmc-taxonomy__title h2 {
  margin: 0;
  color: var(--ml-ink, #171717);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.mlmc-taxonomy__title span {
  color: var(--ml-muted, #6f706d);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mlmc-taxonomy__body {
  min-width: 0;
}

.mlmc-taxonomy__body :is(table, tbody, tr) {
  display: block !important;
  width: 100% !important;
  border: 0 !important;
}

.mlmc-taxonomy__body :is(.catsTable, .catsTable tbody, .catsTable tr) {
  margin: 0 !important;
  padding: 0 !important;
}

.mlmc-taxonomy__body :is(.catsTd, td) {
  display: inline-block !important;
  width: auto !important;
  margin: 0 7px 7px 0 !important;
  padding: 0 !important;
  border: 0 !important;
  vertical-align: top !important;
}

.mlmc-taxonomy__body :is(.catName, a) {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--ml-line, #deded9);
  border-radius: 10px;
  background: var(--ml-soft, #f8f8f5);
  color: #444541 !important;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none !important;
  transition: border-color 0.16s ease, color 0.16s ease, background-color 0.16s ease;
}

.mlmc-taxonomy__body :is(.catName, a):hover {
  border-color: rgba(200, 16, 46, 0.35);
  background: var(--ml-red-soft, #fff0f3);
  color: var(--ml-red, #c8102e) !important;
}

.mlmc-taxonomy__body .catNumData {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  margin-left: 6px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ecece8;
  color: #777872;
  font-size: 8px;
  font-weight: 900;
}

/* 04. Панель списка, фильтры, сортировка и поиск */

.mlmc-listing {
  min-width: 0;
}

.mlmc-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 12px;
  border: 1px solid var(--ml-line, #deded9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 6px 18px rgba(23, 23, 23, 0.035);
}

.mlmc-filters {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.mlmc-filter {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  color: #62635f;
  font-size: 10px;
  font-weight: 850;
  line-height: 1;
}

.mlmc-filter:hover {
  background: var(--ml-soft, #f8f8f5);
  color: var(--ml-ink, #171717);
}

.mlmc-filter.is-active {
  border-color: var(--ml-red, #c8102e);
  background: var(--ml-red, #c8102e);
  color: #fff;
}

.mlmc-sort {
  min-width: 0;
  color: var(--ml-muted, #6f706d);
  font-size: 10px;
  line-height: 1.45;
  text-align: right;
}

.mlmc-sort a {
  color: #555650 !important;
  font-weight: 800;
  text-decoration: none !important;
}

.mlmc-sort a:hover {
  color: var(--ml-red, #c8102e) !important;
}

.mlmc-sort :is(select, input) {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--ml-line, #deded9);
  border-radius: 8px;
  background: #fff;
  color: var(--ml-ink, #171717);
  font-size: 10px;
}

.mlmc-search-box {
  margin-bottom: 18px;
  padding: 20px;
}

.mlmc-search-box form {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.mlmc-search-box :is(input[type="text"], input[type="search"]) {
  width: 100% !important;
  min-width: 0;
  min-height: 44px;
  flex: 1 1 auto;
  padding: 10px 13px !important;
  border: 1px solid var(--ml-line, #deded9) !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: var(--ml-ink, #171717) !important;
  font-size: 13px !important;
}

.mlmc-search-box :is(input[type="submit"], button) {
  min-width: 110px;
  min-height: 44px;
  padding: 10px 16px !important;
  border: 1px solid var(--ml-red, #c8102e) !important;
  border-radius: 10px !important;
  background: var(--ml-red, #c8102e) !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 900 !important;
}

.mlmc-rating-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 13px;
}

.mlmc-rating-links a {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--ml-line, #deded9);
  border-radius: 8px;
  background: var(--ml-soft, #f8f8f5);
  color: #555650 !important;
  font-size: 9px;
  font-weight: 850;
  text-decoration: none !important;
}

.mlmc-rating-links a:hover {
  border-color: rgba(200, 16, 46, 0.35);
  color: var(--ml-red, #c8102e) !important;
}

/* 05. Нормализация $BODY$ и лента */

.mlmc-feed,
.mlmc-feed #allEntries,
.mlmc-feed .catAllEntries,
.mlmc-feed .catAllEntries > tbody,
.mlmc-feed .catAllEntries > tbody > tr,
.mlmc-feed .archiveEntries {
  display: block !important;
  width: 100% !important;
  min-width: 0;
}

.mlmc-feed .catAllEntries {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-spacing: 0 !important;
}

.mlmc-feed .archiveEntries {
  padding: 0 !important;
}

.mlmc-feed #allEntries > :is(div, article, table),
.mlmc-feed .archiveEntries > :is(div, article, table) {
  width: 100% !important;
  min-width: 0;
}

.mlmc-fixture {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0 0 13px;
  overflow: hidden;
  border: 1px solid var(--ml-line, #deded9);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(23, 23, 23, 0.045);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.mlmc-fixture:hover {
  border-color: rgba(200, 16, 46, 0.28);
  box-shadow: 0 15px 40px rgba(23, 23, 23, 0.075);
  transform: translateY(-1px);
}

.mlmc-fixture[hidden] {
  display: none !important;
}

.mlmc-fixture__top {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--ml-line-soft, #ecece8);
  background: linear-gradient(90deg, #fff, var(--ml-soft, #f8f8f5));
}

.mlmc-fixture__competition {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  color: #767772;
  font-size: 9px;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mlmc-fixture__competition a {
  color: var(--ml-red, #c8102e) !important;
  text-decoration: none !important;
}

.mlmc-fixture__competition span + span,
.mlmc-fixture__competition a + span {
  padding-left: 7px;
  border-left: 1px solid var(--ml-line, #deded9);
}

.mlmc-moder {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  font-size: 10px;
}

.mlmc-fixture__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 170px;
  padding: 25px clamp(18px, 4vw, 38px);
}

.mlmc-fixture__team {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.mlmc-fixture__team--away {
  flex-direction: row-reverse;
  text-align: right;
}

.mlmc-fixture__crest {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  place-items: center;
}

.mlmc-fixture__crest img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 7px 9px rgba(0, 0, 0, 0.1));
}

.mlmc-crest-fallback {
  display: none;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid var(--ml-line, #deded9);
  border-radius: 50%;
  background: var(--ml-soft, #f8f8f5);
  color: var(--ml-red, #c8102e);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.is-crest-missing .mlmc-crest-fallback {
  display: grid;
}

.is-crest-missing .mlmc-fixture__crest img,
.is-crest-missing .mlmc-scoreboard__crest img {
  display: none;
}

.mlmc-fixture__team-copy {
  min-width: 0;
}

.mlmc-fixture__team-copy small {
  display: block;
  margin-bottom: 5px;
  color: #969791;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mlmc-fixture__team-name {
  display: block;
  color: var(--ml-ink, #171717) !important;
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-decoration: none !important;
  overflow-wrap: anywhere;
}

.mlmc-fixture__team-name:hover {
  color: var(--ml-red, #c8102e) !important;
}

.mlmc-fixture__centre {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.mlmc-status {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #efefec;
  color: #666762;
  font-size: 8px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mlmc-status__label {
  display: none;
  align-items: center;
  gap: 6px;
}

[data-status="upcoming"] [data-status-label="upcoming"],
[data-status=""] [data-status-label="upcoming"],
[data-status="live"] [data-status-label="live"],
[data-status="finished"] [data-status-label="finished"],
[data-status="postponed"] [data-status-label="postponed"],
[data-status="cancelled"] [data-status-label="cancelled"] {
  display: inline-flex;
}

[data-status="live"] .mlmc-status {
  background: #ffedf0;
  color: var(--ml-red, #c8102e);
}

[data-status="live"] .mlmc-status__label::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.12);
  content: "";
  animation: mlmc-pulse 1.5s ease-in-out infinite;
}

[data-status="postponed"] .mlmc-status,
[data-status="cancelled"] .mlmc-status {
  background: #fff3df;
  color: #8a5712;
}

.mlmc-fixture__score,
.mlmc-scoreboard__score {
  color: var(--ml-ink, #171717);
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.mlmc-score--numbers {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: clamp(35px, 5vw, 49px);
  letter-spacing: -0.07em;
}

.mlmc-score--numbers b {
  color: #c3c3bd;
  font-size: 0.55em;
  font-weight: 700;
}

.mlmc-score--numbers span:empty::before {
  content: "—";
}

.mlmc-score--versus {
  font-size: 32px;
  letter-spacing: -0.055em;
}

.mlmc-score--dash {
  display: none;
  color: #a5a59f;
  font-size: 38px;
}

[data-status="live"] .mlmc-score--numbers,
[data-status="finished"] .mlmc-score--numbers {
  display: flex;
}

[data-status="live"] .mlmc-score--versus,
[data-status="finished"] .mlmc-score--versus,
[data-status="postponed"] .mlmc-score--versus,
[data-status="cancelled"] .mlmc-score--versus {
  display: none;
}

[data-status="postponed"] .mlmc-score--dash,
[data-status="cancelled"] .mlmc-score--dash {
  display: block;
}

.mlmc-fixture__note {
  margin-top: 7px;
  color: var(--ml-red, #c8102e);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.25;
}

.mlmc-fixture__datetime {
  display: block;
  margin-top: 10px;
  color: var(--ml-muted, #6f706d);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
  white-space: nowrap;
}

.mlmc-time-tbc {
  display: none;
}

[data-time-status="tbc"] .mlmc-time-confirmed {
  display: none;
}

[data-time-status="tbc"] .mlmc-time-tbc {
  display: inline;
}

.mlmc-fixture__bottom {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  border-top: 1px solid var(--ml-line-soft, #ecece8);
  background: var(--ml-soft, #f8f8f5);
}

.mlmc-fixture__facts {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  color: #787973;
  font-size: 9px;
  line-height: 1.4;
}

.mlmc-fixture__facts span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.mlmc-fixture__facts b {
  color: #50514c;
  font-weight: 850;
}

.mlmc-fixture__open {
  display: inline-flex;
  min-height: 30px;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--ml-red, #c8102e);
  color: #fff !important;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
}

.mlmc-fixture__open:hover {
  background: var(--ml-red-dark, #970c24);
}

.mlmc-filter-empty {
  display: none;
  padding: 38px 24px;
  border: 1px dashed #d6d6d0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ml-muted, #6f706d);
  font-size: 12px;
  text-align: center;
}

.mlmc-filter-empty.is-visible {
  display: block;
}

/* 06. Страница отдельного матча */

.mlmc-match {
  min-width: 0;
}

.mlmc-match__moder {
  margin-bottom: 10px;
  text-align: right;
}

.mlmc-scoreboard {
  overflow: hidden;
  border: 1px solid #d8d8d3;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(24, 24, 20, 0.08);
}

.mlmc-scoreboard__head {
  padding: 20px clamp(18px, 4vw, 36px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(125deg, #530715 0%, var(--ml-red, #c8102e) 65%, #dc2542 100%);
  color: #fff;
  text-align: center;
}

.mlmc-scoreboard__competition {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mlmc-scoreboard__competition a {
  color: #fff !important;
  text-decoration: none !important;
}

.mlmc-scoreboard__competition span {
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.mlmc-scoreboard h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 3.3vw, 35px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.mlmc-scoreboard__main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, auto) minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 3vw, 36px);
  min-height: 315px;
  padding: clamp(30px, 5vw, 52px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(200, 16, 46, 0.095), transparent 43%),
    #fff;
}

.mlmc-scoreboard__main::before,
.mlmc-scoreboard__main::after {
  position: absolute;
  width: 170px;
  height: 170px;
  border: 28px solid rgba(200, 16, 46, 0.035);
  border-radius: 50%;
  content: "";
}

.mlmc-scoreboard__main::before {
  top: -90px;
  left: -72px;
}

.mlmc-scoreboard__main::after {
  right: -72px;
  bottom: -96px;
}

.mlmc-scoreboard__team,
.mlmc-scoreboard__centre {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.mlmc-scoreboard__team {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.mlmc-scoreboard__crest {
  position: relative;
  display: grid;
  width: clamp(88px, 10vw, 122px);
  height: clamp(88px, 10vw, 122px);
  place-items: center;
  margin-bottom: 16px;
}

.mlmc-scoreboard__crest img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 9px 12px rgba(0, 0, 0, 0.11));
}

.mlmc-scoreboard__crest .mlmc-crest-fallback {
  width: 82%;
  height: 82%;
  font-size: clamp(22px, 3vw, 34px);
}

.mlmc-scoreboard__team-name {
  max-width: 100%;
  color: var(--ml-ink, #171717);
  font-size: clamp(17px, 2.2vw, 25px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.mlmc-scoreboard__role {
  margin-top: 6px;
  color: #92928c;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mlmc-scoreboard__centre {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.mlmc-scoreboard__score .mlmc-score--numbers {
  font-size: clamp(44px, 7vw, 72px);
}

.mlmc-scoreboard__score .mlmc-score--versus {
  font-size: clamp(35px, 5vw, 53px);
}

.mlmc-scoreboard__note {
  margin-top: 9px;
  color: var(--ml-red, #c8102e);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}

.mlmc-scoreboard__datetime {
  display: block;
  margin-top: 14px;
  color: var(--ml-muted, #6f706d);
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.4;
  white-space: nowrap;
}

.mlmc-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(40px, 1fr));
  gap: 6px;
  width: min(250px, 100%);
  margin-top: 15px;
}

.mlmc-countdown[hidden] {
  display: none !important;
}

.mlmc-countdown__part {
  padding: 8px 4px;
  border: 1px solid var(--ml-line-soft, #ecece8);
  border-radius: 9px;
  background: var(--ml-soft, #f8f8f5);
  text-align: center;
}

.mlmc-countdown__part b {
  display: block;
  color: var(--ml-ink, #171717);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  font-weight: 950;
  line-height: 1;
}

.mlmc-countdown__part span {
  display: block;
  margin-top: 4px;
  color: #92938e;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

[data-time-status="tbc"] .mlmc-countdown,
[data-status="live"] .mlmc-countdown,
[data-status="finished"] .mlmc-countdown,
[data-status="postponed"] .mlmc-countdown,
[data-status="cancelled"] .mlmc-countdown {
  display: none;
}

.mlmc-scoreboard__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  border-top: 1px solid var(--ml-line, #deded9);
  background: var(--ml-soft, #f8f8f5);
}

.mlmc-scoreboard__fact {
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid var(--ml-line, #deded9);
  border-bottom: 1px solid var(--ml-line, #deded9);
}

.mlmc-scoreboard__fact span {
  display: block;
  margin-bottom: 5px;
  color: #8a8b85;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mlmc-scoreboard__fact :is(strong, a) {
  display: block;
  color: var(--ml-ink, #171717) !important;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.4;
  text-decoration: none !important;
  overflow-wrap: anywhere;
}

.mlmc-scoreboard__fact a {
  color: var(--ml-red, #c8102e) !important;
}

.mlmc-content,
.mlmc-meta,
.mlmc-comments,
.mlmc-entry-nav {
  margin-top: 16px;
  border: 1px solid var(--ml-line, #deded9);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 9px 30px rgba(23, 23, 23, 0.045);
}

.mlmc-content {
  padding: clamp(22px, 4vw, 40px);
  overflow: hidden;
}

.mlmc-content__cover {
  margin: -40px -40px 30px;
  background: #181818;
}

.mlmc-content__cover img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

.mlmc-content__body {
  min-width: 0;
  color: #363733;
  font-size: 15px;
  line-height: 1.72;
}

.mlmc-content__body > :first-child {
  margin-top: 0;
}

.mlmc-content__body > :last-child {
  margin-bottom: 0;
}

.mlmc-content__body :is(h2, h3, h4) {
  color: var(--ml-ink, #171717);
  font-weight: 950;
  letter-spacing: -0.03em;
}

.mlmc-content__body h2 {
  margin: 34px 0 14px;
  font-size: clamp(22px, 3vw, 29px);
  line-height: 1.12;
}

.mlmc-content__body h3 {
  margin: 27px 0 11px;
  font-size: 19px;
  line-height: 1.18;
}

.mlmc-content__body p {
  margin: 0 0 17px;
}

.mlmc-content__body :is(ul, ol) {
  margin: 16px 0;
  padding-left: 24px;
}

.mlmc-content__body li {
  margin: 6px 0;
}

.mlmc-content__body a {
  color: var(--ml-red, #c8102e) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.mlmc-content__body blockquote {
  margin: 24px 0;
  padding: 17px 20px;
  border-left: 4px solid var(--ml-red, #c8102e);
  background: var(--ml-soft, #f8f8f5);
  color: #4c4d48;
}

.mlmc-content__body table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  -webkit-overflow-scrolling: touch;
}

.mlmc-content__body :is(th, td) {
  padding: 10px 12px;
  border: 1px solid var(--ml-line, #deded9);
  text-align: left;
  white-space: nowrap;
}

.mlmc-content__source {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 11px;
  margin: 30px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--ml-line, #deded9);
  font-size: 10px;
  line-height: 1.5;
}

.mlmc-content__source span {
  color: var(--ml-muted, #6f706d);
  font-weight: 900;
  text-transform: uppercase;
}

.mlmc-content__source a {
  min-width: 0;
  overflow: hidden;
  color: var(--ml-red, #c8102e) !important;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mlmc-meta {
  padding: 15px 17px;
  color: var(--ml-muted, #6f706d);
  font-size: 9px;
  line-height: 1.45;
}

.mlmc-meta__tags {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ml-line-soft, #ecece8);
}

.mlmc-meta__tags > span {
  flex: 0 0 auto;
  padding-top: 5px;
  font-weight: 900;
  text-transform: uppercase;
}

.mlmc-meta__tags > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mlmc-meta__tags a {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid var(--ml-line, #deded9);
  border-radius: 999px;
  background: var(--ml-soft, #f8f8f5);
  color: #555650 !important;
  text-decoration: none !important;
}

.mlmc-meta__details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 15px;
}

.mlmc-meta__details a {
  color: var(--ml-red, #c8102e) !important;
  text-decoration: none !important;
}

.mlmc-entry-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.mlmc-entry-nav > div {
  min-width: 0;
  padding: 15px 17px;
}

.mlmc-entry-nav > div + div {
  border-left: 1px solid var(--ml-line-soft, #ecece8);
  text-align: right;
}

.mlmc-entry-nav span {
  display: block;
  margin-bottom: 5px;
  color: #92938e;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mlmc-entry-nav a {
  color: var(--ml-ink, #171717) !important;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.35;
  text-decoration: none !important;
}

.mlmc-entry-nav a:hover {
  color: var(--ml-red, #c8102e) !important;
}

.mlmc-comments {
  overflow: hidden;
}

.mlmc-comments__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px clamp(19px, 4vw, 33px);
  border-bottom: 1px solid var(--ml-line, #deded9);
  background: linear-gradient(100deg, #fff, var(--ml-soft, #f8f8f5));
}

.mlmc-comments__head span {
  display: block;
  margin-bottom: 5px;
  color: var(--ml-red, #c8102e);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mlmc-comments__head h2 {
  margin: 0;
  color: var(--ml-ink, #171717);
  font-size: clamp(20px, 2.7vw, 27px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.mlmc-comments__count {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: #f7e6e9;
  color: var(--ml-red, #c8102e);
  font-size: 11px;
  font-weight: 900;
}

.mlmc-comments__list,
.mlmc-comments__form,
.mlmc-comments__login {
  min-width: 0;
  padding: 19px clamp(15px, 3vw, 29px);
}

.mlmc-comments__form {
  border-top: 1px solid var(--ml-line, #deded9);
}

.mlmc-comments__body {
  min-width: 0;
  overflow-x: auto;
}

.mlmc-comments__body img {
  max-width: 100%;
  height: auto;
}

.mlmc-comments__pages {
  text-align: right;
}

.mlmc-comments__pages--bottom {
  margin-top: 14px;
  text-align: center;
}

.mlmc-comments__login {
  text-align: center;
}

.mlmc-comments__login p {
  margin: 0 0 13px;
  color: var(--ml-muted, #6f706d);
  font-size: 11px;
}

.mlmc-comments__login div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.mlmc-comments__login a {
  display: inline-flex;
  min-height: 37px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid var(--ml-red, #c8102e);
  border-radius: 9px;
  background: var(--ml-red, #c8102e);
  color: #fff !important;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none !important;
}

.mlmc-comments__login a + a {
  background: #fff;
  color: var(--ml-red, #c8102e) !important;
}

/* 07. Страница и форма редактора */

.mlmc-editor-page__main {
  width: 100%;
}

.mlmc-editor-page__intro {
  margin-bottom: 14px;
  padding: 22px clamp(20px, 4vw, 36px);
  border-radius: 18px;
  background: linear-gradient(130deg, #39050f, var(--ml-red, #c8102e));
  color: #fff;
}

.mlmc-editor-page__intro h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 5vw, 47px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.05em;
}

.mlmc-editor-page__intro p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.mlmc-editor,
.mlmc-editor * {
  box-sizing: border-box;
}

.mlmc-editor {
  width: 100%;
  color: #3b3c37;
  font-size: 13px;
  line-height: 1.5;
}

.mlmc-editor :is(ul, li) {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mlmc-editor__notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 13px 15px;
  border: 1px solid #ead8b9;
  border-radius: 12px;
  background: #fff9ee;
  color: #6f5327;
  font-size: 10px;
}

.mlmc-editor__notice b {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  color: var(--ml-red, #c8102e);
  font-size: 11px;
}

.mlmc-editor__sections {
  display: grid;
  gap: 14px;
}

.mlmc-editor__section,
.mlmc-editor__details,
.mlmc-editor__footer {
  min-width: 0;
  border: 1px solid var(--ml-line, #deded9);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(23, 23, 23, 0.035);
}

.mlmc-editor__section {
  padding: clamp(19px, 3vw, 28px);
}

.mlmc-editor__section-head {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 22px;
}

.mlmc-editor__section-head > b {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 10px;
  background: #f9e8ec;
  color: var(--ml-red, #c8102e);
  font-size: 10px;
  font-weight: 950;
}

.mlmc-editor__section-head h2,
.mlmc-editor__section-head h3 {
  margin: 0;
  color: var(--ml-ink, #171717);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 950;
  line-height: 1.13;
  letter-spacing: -0.025em;
}

.mlmc-editor__section-head p {
  margin: 5px 0 0;
  color: var(--ml-muted, #6f706d);
  font-size: 11px;
  line-height: 1.45;
}

.mlmc-editor__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 21px;
  width: 100% !important;
}

.mlmc-editor__field {
  display: block !important;
  width: auto !important;
  min-width: 0;
}

.mlmc-editor__field--wide {
  grid-column: 1 / -1;
}

.mlmc-editor__field > label {
  display: block;
  margin: 0 0 7px;
  color: #484944;
  font-size: 10px;
  font-weight: 850;
  line-height: 1.35;
}

.mlmc-editor__field > small {
  display: block;
  margin-top: 6px;
  color: var(--ml-muted, #6f706d);
  font-size: 9px;
  line-height: 1.4;
}

.mlmc-editor__field > div {
  min-width: 0;
}

.mlmc-editor :is(input:not([type]), input[type="text"], input[type="url"], input[type="email"], input[type="number"], input[type="date"], input[type="time"], input[type="password"], select, textarea) {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 43px;
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 1px solid #d6d6d0 !important;
  border-radius: 10px !important;
  outline: 0;
  background: #fff !important;
  color: var(--ml-ink, #171717) !important;
  font-family: inherit !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.02) !important;
}

.mlmc-editor textarea {
  min-height: 120px;
  resize: vertical;
}

.mlmc-editor :is(input, select, textarea):focus {
  border-color: var(--ml-red, #c8102e) !important;
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.11) !important;
}

.mlmc-editor__score input {
  font-size: 22px !important;
  font-variant-numeric: tabular-nums;
  font-weight: 950 !important;
  text-align: center;
}

.mlmc-editor__datetime > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.mlmc-editor__datetime :is(input, select) {
  width: auto !important;
  min-width: 84px;
  flex: 1 1 180px;
}

.mlmc-editor__versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: -3px 0 17px;
  color: #989993;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.mlmc-editor__versus b {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border-radius: 50%;
  background: var(--ml-ink, #171717);
  color: #fff;
  font-size: 8px;
  letter-spacing: 0;
}

.mlmc-editor__editor-field {
  min-width: 0;
  overflow: hidden;
}

.mlmc-editor__editor-field :is(table, iframe, textarea, .bb-editor, .ucoz-editor) {
  max-width: 100% !important;
}

.mlmc-editor__editor-field iframe {
  width: 100% !important;
}

.mlmc-editor__details {
  overflow: hidden;
}

.mlmc-editor__details > summary {
  position: relative;
  display: block;
  min-height: 68px;
  padding: 16px 56px 16px 21px;
  cursor: pointer;
  list-style: none;
}

.mlmc-editor__details > summary::-webkit-details-marker {
  display: none;
}

.mlmc-editor__details > summary strong {
  display: block;
  color: var(--ml-ink, #171717);
  font-size: 13px;
  font-weight: 900;
}

.mlmc-editor__details > summary small {
  display: block;
  margin-top: 3px;
  color: var(--ml-muted, #6f706d);
  font-size: 9px;
}

.mlmc-editor__details > summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 11px;
  height: 11px;
  border-right: 2px solid var(--ml-red, #c8102e);
  border-bottom: 2px solid var(--ml-red, #c8102e);
  content: "";
  transform: translateY(-68%) rotate(45deg);
  transition: transform 0.18s ease;
}

.mlmc-editor__details[open] > summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.mlmc-editor__details-body {
  padding: 21px;
  border-top: 1px solid var(--ml-line, #deded9);
}

.mlmc-editor__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 21px;
}

.mlmc-editor__footer p {
  max-width: 600px;
  margin: 0;
  color: var(--ml-muted, #6f706d);
  font-size: 10px;
}

.mlmc-editor__footer strong {
  color: var(--ml-ink, #171717);
}

.mlmc-editor__actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.mlmc-editor__actions :is(input, button, a) {
  display: inline-flex !important;
  width: auto !important;
  min-width: 125px;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 10px 17px !important;
  border: 1px solid var(--ml-red, #c8102e) !important;
  border-radius: 10px !important;
  background: var(--ml-red, #c8102e) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.mlmc-editor__actions :is(input, button, a) + :is(input, button, a) {
  border-color: #d5d5cf !important;
  background: #fff !important;
  color: var(--ml-ink, #171717) !important;
}

/* 08. Пагинация и системные состояния uCoz */

.mlmc-pagination {
  margin-top: 18px;
  text-align: center;
}

.mlmc-pagination:empty {
  display: none;
}

.mlmc-pagination :is(.pagesBlockuz1, .pagesBlockuz2) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mlmc-pagination :is(a, span, .swchItem, .swchItemA) {
  display: inline-grid;
  min-width: 34px;
  min-height: 34px;
  place-items: center;
  padding: 7px 9px;
  border: 1px solid var(--ml-line, #deded9);
  border-radius: 8px;
  background: #fff;
  color: #555650 !important;
  font-size: 10px;
  font-weight: 850;
  text-decoration: none !important;
}

.mlmc-pagination :is(a:hover, .swchItemA) {
  border-color: var(--ml-red, #c8102e);
  background: var(--ml-red, #c8102e);
  color: #fff !important;
}

.mlmc-page .eMessage,
.mlmc-page .noEntries {
  padding: 28px !important;
  border: 1px dashed #d6d6d0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ml-muted, #6f706d);
  font-size: 12px;
  text-align: center;
}

@keyframes mlmc-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}

/* 09. Адаптивность */

@media (max-width: 1180px) and (min-width: 1021px) {
  .mlmc-layout {
    grid-template-columns: minmax(0, 1fr) 350px;
  }
}

@media (max-width: 1020px) {
  .mlmc-layout {
    grid-template-columns: minmax(0, 1fr);
    padding-top: 12px;
  }

  .mlmc-layout__aside {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .mlmc-layout__main {
    width: 100%;
  }

  .mlmc-hero__inner {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .mlmc-layout__aside {
    grid-template-columns: minmax(0, 1fr);
  }

  .mlmc-pagebar {
    display: block;
  }

  .mlmc-pagebar__add {
    margin-top: 9px;
  }

  .mlmc-hero__inner {
    display: block;
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .mlmc-hero__actions {
    width: 100%;
    margin-top: 24px;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mlmc-hero__actions .mlmc-button {
    flex: 1 1 170px;
  }

  .mlmc-toolbar {
    display: block;
  }

  .mlmc-sort {
    margin-top: 9px;
    text-align: left;
  }

  .mlmc-fixture__body {
    grid-template-columns: minmax(0, 1fr) minmax(92px, auto) minmax(0, 1fr);
    gap: 8px;
    min-height: 155px;
    padding: 22px 12px;
  }

  .mlmc-fixture__team,
  .mlmc-fixture__team--away {
    align-items: center;
    flex-direction: column;
    gap: 9px;
    text-align: center;
  }

  .mlmc-fixture__crest {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
  }

  .mlmc-crest-fallback {
    width: 50px;
    height: 50px;
  }

  .mlmc-fixture__team-copy small {
    display: none;
  }

  .mlmc-fixture__team-name {
    font-size: 14px;
  }

  .mlmc-fixture__bottom {
    align-items: flex-start;
  }

  .mlmc-fixture__facts {
    display: grid;
    gap: 4px;
  }

  .mlmc-scoreboard__main {
    grid-template-columns: minmax(0, 1fr) minmax(88px, auto) minmax(0, 1fr);
    gap: 8px;
    min-height: 245px;
    padding: 26px 11px;
  }

  .mlmc-scoreboard__crest {
    width: 74px;
    height: 74px;
    margin-bottom: 11px;
  }

  .mlmc-scoreboard__team-name {
    font-size: 15px;
  }

  .mlmc-scoreboard__role {
    font-size: 7px;
  }

  .mlmc-scoreboard__score .mlmc-score--numbers {
    gap: 4px;
    font-size: 39px;
  }

  .mlmc-scoreboard__score .mlmc-score--versus {
    font-size: 30px;
  }

  .mlmc-scoreboard__datetime {
    font-size: 9px;
    white-space: normal;
  }

  .mlmc-countdown {
    display: none;
  }

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

  .mlmc-content {
    padding: 22px 17px;
  }

  .mlmc-content__cover {
    margin: -22px -17px 23px;
  }

  .mlmc-meta__tags,
  .mlmc-entry-nav {
    display: block;
  }

  .mlmc-meta__tags > span {
    display: block;
    margin-bottom: 7px;
    padding: 0;
  }

  .mlmc-entry-nav > div + div {
    border-top: 1px solid var(--ml-line-soft, #ecece8);
    border-left: 0;
  }

  .mlmc-editor__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .mlmc-editor__field--wide {
    grid-column: 1;
  }

  .mlmc-editor__versus {
    display: none;
  }

  .mlmc-editor__footer {
    display: block;
  }

  .mlmc-editor__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 16px;
  }

  .mlmc-editor__actions :is(input, button, a) {
    width: 100% !important;
  }
}

@media (max-width: 430px) {
  .ml-shell {
    width: min(100% - 20px, var(--ml-container, 1180px));
  }

  .mlmc-hero h1 {
    font-size: 38px;
  }

  .mlmc-taxonomy,
  .mlmc-search-box {
    padding: 15px;
  }

  .mlmc-search-box form {
    display: block;
  }

  .mlmc-search-box :is(input[type="submit"], button) {
    width: 100% !important;
    margin-top: 8px !important;
  }

  .mlmc-fixture__top,
  .mlmc-fixture__bottom {
    padding-right: 11px;
    padding-left: 11px;
  }

  .mlmc-fixture__body {
    grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr);
    padding-inline: 7px;
  }

  .mlmc-fixture__crest {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .mlmc-crest-fallback {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }

  .mlmc-fixture__team-name {
    font-size: 12px;
  }

  .mlmc-score--numbers {
    font-size: 32px;
  }

  .mlmc-score--versus {
    font-size: 26px;
  }

  .mlmc-fixture__datetime {
    font-size: 8px;
    white-space: normal;
  }

  .mlmc-fixture__open {
    padding-inline: 8px;
  }

  .mlmc-scoreboard__main {
    grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
    padding-inline: 7px;
  }

  .mlmc-scoreboard__crest {
    width: 62px;
    height: 62px;
  }

  .mlmc-scoreboard__team-name {
    font-size: 13px;
  }

  .mlmc-scoreboard__score .mlmc-score--numbers {
    font-size: 33px;
  }

  .mlmc-scoreboard__facts {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mlmc-page *,
  .mlmc-page *::before,
  .mlmc-page *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

@media print {
  .mlmc-layout__aside,
  .mlmc-hero__actions,
  .mlmc-toolbar,
  .mlmc-comments,
  .mlmc-button,
  .mlmc-moder {
    display: none !important;
  }

  .mlmc-layout {
    display: block;
    width: 100%;
    padding: 0;
  }

  .mlmc-scoreboard,
  .mlmc-content,
  .mlmc-meta {
    box-shadow: none;
  }
}
