:root {
    --mp-green: #14C400;
    --mp-green-bright: #74D600;
    --mp-green-header: #5A9C3A;
    --mp-green-dark: #2E3B22;
    --mp-green-deep: #1F2617;
    --mp-bg: #F5F5F5;
    --mp-surface: #FFFFFF;
    --mp-surface-soft: #FAFBF8;
    --mp-text: #101014;
    --mp-text-muted: #607D8B;
    --mp-border: rgba(31, 38, 23, .1);
    --mp-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    --mp-green-shadow: 0 8px 18px rgba(116, 214, 0, .32);
    --mp-font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Roboto, "Segoe UI", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root {
        --mp-bg: #101014;
        --mp-surface: #1E1E1E;
        --mp-surface-soft: #17191A;
        --mp-text: #F4F7F1;
        --mp-text-muted: #9BAAB0;
        --mp-border: rgba(255, 255, 255, .1);
        --mp-shadow: 0 14px 36px rgba(0, 0, 0, .34);
    }
}

:root[data-theme="light"] {
    --mp-bg: #F5F5F5;
    --mp-surface: #FFFFFF;
    --mp-surface-soft: #FAFBF8;
    --mp-text: #101014;
    --mp-text-muted: #607D8B;
    --mp-border: rgba(31, 38, 23, .1);
    --mp-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

:root[data-theme="dark"] {
    --mp-bg: #101014;
    --mp-surface: #1E1E1E;
    --mp-surface-soft: #17191A;
    --mp-text: #F4F7F1;
    --mp-text-muted: #9BAAB0;
    --mp-border: rgba(255, 255, 255, .1);
    --mp-shadow: 0 14px 36px rgba(0, 0, 0, .34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--mp-bg);
    color: var(--mp-text);
    font-family: var(--mp-font);
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.5;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.skip-link:focus {
    position: fixed;
    z-index: 20;
    top: 12px;
    left: 12px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    clip: auto;
    background: var(--mp-green-bright);
    color: #101014;
    border-radius: 12px;
}

.mp-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.mp-app-header,
.site-header {
    position: sticky;
    z-index: 10;
    top: 0;
    color: #fff;
    background: linear-gradient(180deg, var(--mp-green-header) 0%, rgba(90, 156, 58, .92) 58%, rgba(90, 156, 58, .04) 100%);
    backdrop-filter: blur(16px);
}

:root[data-theme="dark"] .mp-app-header,
:root[data-theme="dark"] .site-header {
    background: linear-gradient(180deg, #4A5C3A 0%, #3D4D2F 34%, #2E3B22 68%, rgba(31, 38, 23, .04) 100%);
}

.mp-header-inner {
    display: grid;
    grid-template-columns: auto 44px;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding-block: 12px 18px;
}

.mp-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    font-weight: 900;
}

.mp-logo-mark {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    color: var(--mp-green);
    box-shadow: var(--mp-green-shadow);
}

.mp-logo-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.mp-logo-text {
    font-size: 1.05rem;
}

.mp-icon-button {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 16px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    cursor: pointer;
}

.mp-menu-toggle {
    gap: 4px;
}

.mp-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.mp-theme-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff 0 50%, var(--mp-green-deep) 50% 100%);
}

.mp-nav,
.mp-header-actions {
    display: none;
}

.mp-nav.is-open {
    display: block;
    grid-column: 1 / -1;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 18px;
    background: rgba(31, 38, 23, .5);
}

.mp-menu {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mp-menu a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 12px;
    border-radius: 14px;
    font-weight: 800;
}

.mp-menu a:hover,
.mp-menu a:focus-visible {
    background: rgba(255, 255, 255, .14);
}

.sub-menu {
    display: grid;
    gap: 2px;
    margin: 0 0 6px 12px;
    padding: 0;
    list-style: none;
}

.sub-menu a {
    min-height: 38px;
    color: rgba(255, 255, 255, .88);
    font-size: .92rem;
}

.mp-search {
    display: flex;
    align-items: center;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    overflow: hidden;
}

.mp-search input {
    width: 190px;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 11px 4px 11px 14px;
    background: transparent;
    color: #fff;
}

.mp-search input::placeholder {
    color: rgba(255, 255, 255, .74);
}

.mp-search button {
    width: 42px;
    min-height: 42px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.mp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--mp-green-header), var(--mp-green-bright));
    color: #fff;
    box-shadow: var(--mp-green-shadow);
    font-weight: 900;
    cursor: pointer;
}

.mp-main {
    min-height: 60vh;
}

.mp-section {
    padding-block: 26px;
}

.mp-section-heading {
    margin-bottom: 16px;
}

.mp-section-heading span,
.mp-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(116, 214, 0, .16);
    color: var(--mp-green-dark);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

:root[data-theme="dark"] .mp-section-heading span,
:root[data-theme="dark"] .mp-kicker {
    color: var(--mp-green-bright);
}

.mp-section-heading h1,
.mp-section-heading h2,
.mp-article-header h1,
.mp-hero-overlay h2,
.mp-news-body h2,
.mp-match-summary h1 {
    margin: 6px 0 0;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.02;
}

.mp-section-heading h1 {
    max-width: 760px;
    font-size: clamp(2.1rem, 7vw, 5.4rem);
}

.mp-section-heading h2 {
    font-size: clamp(1.7rem, 4vw, 3rem);
}

.mp-section-heading p {
    max-width: 680px;
    color: var(--mp-text-muted);
    font-weight: 650;
}

.mp-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.mp-link {
    color: var(--mp-green);
    font-weight: 900;
}

.mp-card {
    border: 1px solid var(--mp-border);
    border-radius: 20px;
    background: var(--mp-surface);
    box-shadow: var(--mp-shadow);
}

.mp-chip-row,
.mp-tabs {
    display: flex;
    gap: 10px;
    margin: 12px -16px 0;
    padding: 2px 16px 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.mp-chip-row::-webkit-scrollbar,
.mp-tabs::-webkit-scrollbar,
.mp-prediction-strip::-webkit-scrollbar {
    display: none;
}

.mp-chip {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 14px;
    border: 1px solid var(--mp-border);
    border-radius: 16px;
    background: var(--mp-surface);
    color: var(--mp-text);
    font-weight: 900;
    white-space: nowrap;
}

:root[data-theme="dark"] .mp-chip {
    background: #2A2A2A;
}

.mp-chip.is-active,
.mp-chip:hover,
.mp-chip:focus-visible {
    border-color: transparent;
    background: var(--mp-green-bright);
    color: #101014;
    box-shadow: var(--mp-green-shadow);
}

.mp-chip-logo {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    background: rgba(16, 16, 20, .08);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mp-chip-row.is-compact .mp-chip {
    min-height: 38px;
    padding: 6px 10px;
    font-size: .88rem;
}

.mp-ticker {
    margin-top: -4px;
    background: #101014;
    color: #fff;
}

.mp-ticker-track {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 42px;
    overflow: hidden;
}

.mp-ticker strong {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 26px;
    align-items: center;
    padding: 2px 9px;
    border-radius: 999px;
    background: var(--mp-green-bright);
    color: #101014;
    font-size: .78rem;
    text-transform: uppercase;
}

.mp-ticker-items {
    display: flex;
    gap: 26px;
    min-width: max-content;
    animation: mpTicker 28s linear infinite;
    font-size: .92rem;
    font-weight: 800;
}

@keyframes mpTicker {
    from { transform: translateX(0); }
    to { transform: translateX(-45%); }
}

.mp-today-section {
    background: linear-gradient(180deg, transparent, rgba(116, 214, 0, .08), transparent);
}

.mp-prediction-strip {
    display: grid;
    grid-auto-columns: minmax(288px, 360px);
    grid-auto-flow: column;
    gap: 14px;
    margin: 12px -16px 0;
    padding: 4px 16px 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.mp-prediction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.mp-prediction-card {
    scroll-snap-align: start;
}

.mp-prediction-link {
    display: grid;
    gap: 14px;
    padding: 16px;
}

.mp-match-teams,
.mp-match-big {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
}

.mp-team {
    display: grid;
    justify-items: center;
    gap: 8px;
    min-width: 0;
    text-align: center;
}

.mp-team strong {
    max-width: 100%;
    overflow: hidden;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mp-team-logo {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    overflow: hidden;
    border: 1px solid var(--mp-border);
    border-radius: 18px;
    background: var(--mp-surface-soft);
}

.mp-team-logo img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.mp-team-initials {
    color: var(--mp-green);
    font-weight: 900;
}

.mp-match-time {
    display: grid;
    place-items: center;
    min-width: 66px;
    color: var(--mp-text-muted);
}

.mp-match-time span {
    color: var(--mp-text);
    font-size: 1.2rem;
    font-weight: 900;
}

.mp-match-time small {
    font-weight: 800;
    text-transform: uppercase;
}

.mp-match-prediction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    margin-top: 4px;
    border-radius: 999px;
    padding: 4px 10px;
    background: var(--mp-green-header);
    color: #fff;
    font-size: .9rem;
    font-weight: 900;
    white-space: nowrap;
}

:root[data-theme="dark"] .mp-match-prediction {
    background: #9CEB4A;
    color: #101014;
}

.mp-prediction-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mp-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--mp-green-header);
    color: #fff;
    font-weight: 900;
    white-space: nowrap;
}

.mp-badge.is-goal {
    background: var(--mp-green-header);
}

.mp-badge.is-over {
    background: var(--mp-green-header);
}

.mp-badge.is-under {
    background: var(--mp-green-header);
}

.mp-badge.is-result {
    background: #5A9C3A;
    color: #fff;
}

.mp-badge.is-default {
    background: var(--mp-green-header);
    color: #fff;
}

:root[data-theme="dark"] .mp-badge,
:root[data-theme="dark"] .mp-badge.is-goal,
:root[data-theme="dark"] .mp-badge.is-over,
:root[data-theme="dark"] .mp-badge.is-under,
:root[data-theme="dark"] .mp-badge.is-result,
:root[data-theme="dark"] .mp-badge.is-default {
    background: #9CEB4A;
    color: #101014;
}

.mp-odds {
    color: var(--mp-text-muted);
    font-weight: 900;
}

.mp-card-cta {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--mp-surface-soft);
    color: var(--mp-green);
    font-weight: 900;
}

.mp-prediction-editorial {
    display: grid;
    gap: 10px;
}

.mp-prediction-editorial .mp-kicker {
    width: fit-content;
}

.mp-prediction-editorial h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.08;
}

.mp-prediction-editorial p {
    margin: 0;
    color: var(--mp-text-muted);
    font-weight: 650;
}

.mp-brand-media {
    display: grid;
    place-items: center;
    min-height: inherit;
    background: var(--mp-surface-soft);
}

.mp-brand-media img {
    width: min(72%, 220px);
    height: auto;
    min-height: 0;
    object-fit: contain;
}

.mp-hero-article {
    position: relative;
    min-height: min(72vh, 620px);
    overflow: hidden;
    border-radius: 20px;
    background: #101014;
    box-shadow: var(--mp-shadow);
}

.mp-hero-article img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.mp-hero-brand {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: #101014;
    z-index: 0;
}

.mp-hero-brand img {
    position: static;
    width: min(58%, 420px);
    height: auto;
    object-fit: contain;
}

.mp-hero-overlay {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    padding: clamp(22px, 5vw, 56px);
    background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .86));
    color: #fff;
}

.mp-hero-overlay .mp-kicker {
    width: fit-content;
    color: #101014;
}

.mp-hero-overlay h2 {
    max-width: 860px;
    font-size: clamp(2rem, 7vw, 5.2rem);
    text-shadow: 0 2px 18px rgba(0, 0, 0, .42);
}

.mp-hero-overlay p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .86);
    font-size: 1.05rem;
    font-weight: 700;
}

.mp-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.mp-news-list {
    display: grid;
    gap: 14px;
}

.mp-news-card {
    border: 1px solid var(--mp-border);
    border-radius: 20px;
    background: var(--mp-surface);
    box-shadow: var(--mp-shadow);
    overflow: hidden;
}

.mp-news-card > a {
    display: grid;
}

.mp-news-card.is-default > a {
    grid-template-columns: 128px 1fr;
}

.mp-news-media {
    position: relative;
    min-height: 132px;
    background-size: cover;
    background-position: center;
}

.mp-news-media img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
}

.mp-news-media .mp-kicker {
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.mp-news-body {
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 14px;
}

.mp-news-body h2 {
    font-size: clamp(1.05rem, 3vw, 1.45rem);
}

.mp-news-body p {
    margin: 0;
    color: var(--mp-text-muted);
    font-weight: 650;
}

.mp-news-meta,
.mp-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--mp-text-muted);
    font-size: .88rem;
    font-weight: 800;
}

.mp-content-sidebar {
    display: grid;
    gap: 18px;
}

.mp-sidebar {
    display: grid;
    align-content: start;
    gap: 14px;
}

.mp-standings,
.mp-most-commented {
    padding: 16px;
}

.mp-section-heading.compact {
    margin-bottom: 10px;
}

.mp-section-heading.compact h2 {
    font-size: 1.25rem;
}

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

.mp-table th {
    color: var(--mp-text-muted);
    font-size: .72rem;
    text-align: left;
    text-transform: uppercase;
}

.mp-table th,
.mp-table td {
    padding: 10px 6px;
    border-bottom: 1px solid var(--mp-border);
}

.mp-table td {
    font-weight: 850;
}

.mp-table-team {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.mp-table-team img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.mp-table td:last-child {
    color: var(--mp-green-bright);
    font-weight: 900;
}

.mp-widget-note {
    margin: 12px 0 0;
    color: var(--mp-text-muted);
    font-size: .88rem;
    font-weight: 650;
}

.mp-most-commented ol {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
}

.mp-most-commented li {
    color: var(--mp-green);
    font-weight: 900;
}

.mp-league-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.mp-league-card {
    display: grid;
    align-content: end;
    gap: 8px;
    min-height: 190px;
    padding: 18px;
    border-radius: 20px;
    background: var(--league-bg);
    color: #fff;
    overflow: hidden;
}

.mp-league-card span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .22);
    font-weight: 900;
}

.mp-league-card strong {
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.mp-league-card em {
    font-style: normal;
    font-weight: 800;
    opacity: .82;
}

.mp-footer {
    margin-top: 36px;
    padding-block: 34px 18px;
    background: #101014;
    color: #fff;
}

.mp-footer-grid {
    display: grid;
    gap: 24px;
}

.mp-footer h2 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.mp-footer p,
.mp-disclaimer {
    color: rgba(255, 255, 255, .72);
    font-weight: 650;
}

.mp-socials {
    display: flex;
    gap: 8px;
}

.mp-socials a {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .12);
    font-weight: 900;
}

.mp-newsletter {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.mp-newsletter div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mp-newsletter input {
    min-height: 44px;
    min-width: 0;
    flex: 1 1 180px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.mp-disclaimer {
    margin-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 16px;
    font-size: .85rem;
}

.mp-filter-bar {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--mp-border);
    border-radius: 20px;
    background: var(--mp-surface);
    box-shadow: var(--mp-shadow);
}

.mp-archive-hero .mp-chip-row,
.mp-archive-hero .mp-tabs {
    position: sticky;
    z-index: 6;
    top: 76px;
    background: linear-gradient(180deg, var(--mp-bg) 70%, rgba(245, 245, 245, 0));
}

:root[data-theme="dark"] .mp-archive-hero .mp-chip-row,
:root[data-theme="dark"] .mp-archive-hero .mp-tabs {
    background: linear-gradient(180deg, var(--mp-bg) 70%, rgba(16, 16, 20, 0));
}

.mp-filter-bar label {
    display: grid;
    gap: 5px;
    color: var(--mp-text-muted);
    font-weight: 900;
}

.mp-filter-bar input,
.mp-filter-bar select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--mp-border);
    border-radius: 14px;
    padding: 9px 12px;
    background: var(--mp-surface-soft);
    color: var(--mp-text);
}

.mp-empty {
    grid-column: 1 / -1;
    padding: 34px;
    border: 1px dashed var(--mp-border);
    border-radius: 20px;
    color: var(--mp-text-muted);
    text-align: center;
}

.mp-single-grid,
.mp-article-layout {
    display: grid;
    gap: 18px;
}

.mp-match-summary,
.mp-article-body {
    padding: clamp(18px, 4vw, 34px);
}

.mp-match-summary h1,
.mp-article-header h1 {
    font-size: clamp(2rem, 7vw, 4.8rem);
}

.mp-match-big {
    margin-block: 22px;
}

.mp-match-big .mp-team-logo {
    width: 74px;
    height: 74px;
    border-radius: 24px;
}

.mp-article-header {
    padding-top: 10px;
}

.mp-article-media {
    margin: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--mp-shadow);
}

.mp-article-media img {
    width: 100%;
}

.mp-article-body {
    font-size: 1.06rem;
}

.mp-article-body > *:first-child {
    margin-top: 0;
}

.mp-article-body a {
    color: var(--mp-green);
    font-weight: 800;
}

.mp-match-line {
    scroll-margin-top: 112px;
    margin: 22px 0 12px;
    border: 1px solid rgba(116, 214, 0, .28);
    border-radius: 16px;
    padding: 12px 14px;
    background: rgba(116, 214, 0, .1);
    color: var(--mp-text);
}

.mp-match-line strong,
.mp-match-line b {
    color: var(--mp-green-header);
    font-size: 1.08rem;
}

:root[data-theme="dark"] .mp-match-line strong,
:root[data-theme="dark"] .mp-match-line b {
    color: #9CEB4A;
}

.navigation.pagination {
    margin-top: 24px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-numbers {
    display: grid;
    place-items: center;
    min-width: 44px;
    min-height: 44px;
    padding: 8px 12px;
    border-radius: 14px;
    background: var(--mp-surface);
    font-weight: 900;
}

.page-numbers.current {
    background: var(--mp-green-bright);
    color: #101014;
}

@media (max-width: 720px) {
    .mp-header-actions {
        grid-column: 1 / -1;
    }

    .mp-nav.is-open + .mp-header-actions,
    .mp-header-inner:has(.mp-nav.is-open) .mp-header-actions {
        display: grid;
        gap: 8px;
    }

    .mp-login {
        width: 100%;
    }

    .mp-news-card.is-default > a {
        grid-template-columns: 1fr;
    }

    .mp-news-card.is-default .mp-news-media {
        min-height: 210px;
    }

    .mp-heading-row {
        align-items: start;
        flex-direction: column;
    }
}

@media (min-width: 760px) {
    .mp-container {
        width: min(1180px, calc(100% - 48px));
    }

    .mp-header-inner {
        grid-template-columns: auto 1fr auto;
        min-height: 88px;
    }

    .mp-archive-hero .mp-chip-row,
    .mp-archive-hero .mp-tabs {
        position: static;
        background: transparent;
    }

    .mp-menu-toggle {
        display: none;
    }

    .mp-nav,
    .mp-header-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mp-menu {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .menu-item-has-children {
        position: relative;
    }

    .menu-item-has-children:hover .sub-menu,
    .menu-item-has-children:focus-within .sub-menu {
        display: grid;
    }

    .sub-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        display: none;
        min-width: 220px;
        margin: 0;
        padding: 8px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 18px;
        background: rgba(31, 38, 23, .94);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
    }

    .mp-section {
        padding-block: 38px;
    }

    .mp-content-sidebar {
        grid-template-columns: minmax(0, 1fr) 320px;
        align-items: start;
    }

    .mp-footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .mp-filter-bar {
        grid-template-columns: 1fr 1fr auto;
        align-items: end;
    }

    .mp-single-grid {
        grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
        align-items: start;
    }
}

@media (min-width: 1080px) {
    .mp-news-card.is-default > a {
        grid-template-columns: 210px 1fr;
    }
}
