/* ===========================================================
   TJ Moravský Žižkov — frontend design
   Port React/JSX design 1:1 (grafika/page-*.jsx, kontakty-page.jsx, o-nas-page.jsx)
   =========================================================== */

/* === RESET / BASE === */
html, body {
    margin: 0;
    padding: 0;
    background: #f3f5f1;
    font-family: 'Barlow', system-ui, sans-serif;
    color: #0a2417;
    overflow-x: hidden;
}
*, *::before, *::after { box-sizing: border-box; }
a { color: inherit; }
img { max-width: 100%; }

/* ====================================================
   UTILITY BAR (homepage = větší, slim header = menší)
   ==================================================== */
.util-bar {
    background: #0a2417;
    color: rgba(255,255,255,0.7);
    font-size: 12px;
    padding: 8px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.util-bar-left { display: flex; gap: 24px; align-items: center; }
.util-bar-dot { opacity: 0.5; }
.util-bar-right { display: flex; gap: 20px; align-items: center; }
.util-bar.is-slim {
    color: rgba(255,255,255,0.65);
    font-size: 11px;
    padding: 6px 48px;
}
.util-bar.is-slim .util-bar-left { gap: 20px; }

/* ====================================================
   HLAVNÍ NAVIGACE
   ==================================================== */
.main-nav {
    background: #0d3320;
    padding: 0 48px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(244,196,48,0.2);
    position: relative;
    z-index: 5;
}
.main-nav.is-slim {
    height: 64px;
    border-bottom: 2px solid #f4c430;
}
.main-nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}
.main-nav.is-slim .main-nav-brand { gap: 12px; }
.main-nav-logo { display: block; width: 34px; height: 48px; object-fit: contain; }
.main-nav.is-slim .main-nav-logo { width: 27px; height: 38px; }
.main-nav-brand-text {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 19px;
    letter-spacing: 0.02em;
    line-height: 1;
}
.main-nav.is-slim .main-nav-brand-text { font-size: 16px; }
.main-nav-brand-sub {
    font-family: 'Barlow Condensed', sans-serif;
    color: #f4c430;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 3px;
}
.main-nav.is-slim .main-nav-brand-sub { font-size: 10px; margin-top: 2px; letter-spacing: 0.18em; }
.main-nav-links {
    display: flex;
    gap: 28px;
}
.main-nav.is-slim .main-nav-links { gap: 24px; }
.main-nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: color .15s, border-color .15s;
}
.main-nav.is-slim .main-nav-links a { font-size: 12px; padding: 6px 0; }
.main-nav-links a:hover { color: #f4c430; }
.main-nav-links a.is-active {
    color: #f4c430;
    border-bottom-color: #f4c430;
}

.hamburger-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(244,196,48,0.4);
    color: #f4c430;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}
.hamburger-btn .bar {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.hamburger-btn .bar span {
    display: block;
    width: 18px;
    height: 2px;
    background: #f4c430;
    transition: all .2s;
}
.hamburger-btn.is-open .bar span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger-btn.is-open .bar span:nth-child(2) { opacity: 0; }
.hamburger-btn.is-open .bar span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ====================================================
   HERO (homepage)
   ==================================================== */
.hero-section {
    position: relative;
    height: 720px;
    overflow: hidden;
    background: #0a2417;
}
.hero-photos { position: absolute; inset: 0; }
.hero-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    animation: kb-classic 22s ease-in-out infinite alternate;
}
.hero-photo.is-active { opacity: 1; }

@keyframes kb-classic {
    0% { transform: scale(1.06) translate(0, 0); }
    100% { transform: scale(1.18) translate(-2%, -1.5%); }
}

.hero-overlay-1 {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,36,23,0.72) 0%, rgba(13,51,32,0.6) 40%, rgba(10,36,23,0.92) 100%);
}
.hero-overlay-2 {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(10,36,23,0.6) 100%);
}
.hero-grid-overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mix-blend-mode: screen;
}
.hero-side-line {
    position: absolute; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(244,196,48,0.5), transparent);
}
.hero-side-line.is-left { left: 48px; }
.hero-side-line.is-right { right: 48px; }

.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-particles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(244,196,48,0.25);
    animation: pf-drift 12s infinite ease-in-out;
}
@keyframes pf-drift {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    50% { transform: translate(20px, -30px); opacity: 1; }
}

.hero-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 48px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(244,196,48,0.12);
    border: 1px solid rgba(244,196,48,0.4);
    color: #f4c430;
    padding: 6px 16px;
    border-radius: 999px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 32px;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #f4c430;
    box-shadow: 0 0 8px #f4c430;
}
.hero-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 92px;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 0.95;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-sub {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.hero-sub-line { width: 60px; height: 1px; background: #f4c430; }
.hero-sub-text {
    font-family: 'Barlow Condensed', sans-serif;
    color: #f4c430;
    font-size: 18px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 500;
}
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}
.hero-dots .dot {
    width: 8px; height: 3px;
    background: rgba(255,255,255,0.4);
    transition: all .4s;
}
.hero-dots .dot.is-active {
    width: 28px;
    background: #f4c430;
}

/* ====================================================
   MATCH-DAY STRIP
   ==================================================== */
.match-strip {
    background: #0d3320;
    color: #fff;
    padding: 28px 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    border-top: 3px solid #f4c430;
}
.match-strip-info-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #f4c430;
    font-weight: 600;
    margin-bottom: 4px;
}
.match-strip-when {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.01em;
}
.match-strip-meta {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}
.match-strip-divider { width: 1px; height: 60px; background: rgba(244,196,48,0.3); }
.match-strip-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}
.match-strip-team { flex: 1; }
.match-strip-team.is-home { text-align: right; }
.match-strip-team.is-away { text-align: left; }
.match-strip-team-name {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 600;
}
.match-strip-team-side {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.match-strip-vs {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #f4c430;
    letter-spacing: 0.05em;
}
.match-strip-cd-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #f4c430;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: right;
}
.match-strip-cd { display: flex; gap: 16px; justify-content: flex-end; }
.match-strip-cd-cell { text-align: center; min-width: 52px; }
.match-strip-cd-num {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    font-variant-numeric: tabular-nums;
}
.match-strip-cd-l {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.2em;
    margin-top: 4px;
}

/* ====================================================
   AKTUALITY (news section)
   ==================================================== */
.news-section { background: #f3f5f1; padding: 88px 48px 48px; }
.news-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 32px;
}
.eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #0d3320;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.eyebrow.is-center { display: inline-flex; }
.eyebrow.is-light { color: #f4c430; }
.eyebrow .line {
    width: 32px;
    height: 1px;
    background: #f4c430;
    display: block;
}
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #0a2417;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1;
}
.section-title.is-light { color: #fff; }
.section-lead {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    color: #5a6e63;
    margin-top: 12px;
    max-width: 840px;
    line-height: 1.5;
}
.section-lead.is-center { margin-left: auto; margin-right: auto; }
.section-lead.is-light { color: rgba(255,255,255,0.6); }

.btn-outline-dark {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0d3320;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 24px;
    border: 2px solid #0d3320;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.btn-outline-dark:hover { background: #0d3320; color: #f4c430; }

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.news-card {
    background: #fff;
    box-shadow: 0 4px 24px rgba(10,36,23,0.06);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.04);
    text-decoration: none;
    color: inherit;
}
.news-card-photo {
    position: relative;
    aspect-ratio: 16 / 10;
    background-size: cover;
    background-position: center;
    background-color: #0d3320;
}
.news-card-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #f4c430;
    color: #0a2417;
    padding: 6px 12px;
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
}
.news-card-date {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(10,36,23,0.85);
    color: #fff;
    padding: 6px 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    backdrop-filter: blur(4px);
}
.news-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.news-card-title {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    color: #0a2417;
    letter-spacing: 0.005em;
}
.news-card-excerpt {
    font-family: 'Barlow', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: #5a6e63;
    margin: 14px 0 0;
    text-wrap: pretty;
}
.news-card-footer {
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #5a6e63;
    font-weight: 600;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.news-card-readmore {
    color: #0d3320;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ====================================================
   MATCH CENTER
   ==================================================== */
.matchcenter-section {
    background: #0a2417;
    padding: 88px 48px;
    color: #fff;
    position: relative;
}
.matchcenter-bg {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.matchcenter-header {
    position: relative;
    text-align: center;
    margin-bottom: 56px;
}
.matchcenter-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    position: relative;
}
.mc-table {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(244,196,48,0.18);
}
.mc-table-head {
    padding: 20px 28px;
    border-bottom: 1px solid rgba(244,196,48,0.18);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mc-table-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 12px;
}
.mc-table-title::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    background: #f4c430;
}
.mc-table-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mc-table-body table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Barlow', sans-serif;
}
.mc-table-body thead tr {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
}
.mc-table-body th {
    padding: 14px 8px;
    text-align: center;
    font-weight: 600;
}
.mc-table-body th.is-pos { padding-left: 28px; text-align: left; width: 50px; }
.mc-table-body th.is-team { text-align: left; }
.mc-table-body th.is-pts { padding-right: 28px; text-align: right; width: 60px; }
.mc-table-body td {
    padding: 12px 8px;
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-variant-numeric: tabular-nums;
}
.mc-table-body td.is-pos { padding-left: 28px; text-align: left; font-family: 'Oswald', sans-serif; font-weight: 600; }
.mc-table-body td.is-team {
    padding-left: 8px;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.01em;
}
.mc-table-body td.is-pts { padding-right: 28px; text-align: right; font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 17px; color: #fff; }
.mc-table-body td.is-w { color: #7ec585; }
.mc-table-body td.is-d { color: #f4c430; }
.mc-table-body td.is-l { color: #e08585; }

.mc-table-body tr { border-top: 1px solid rgba(255,255,255,0.05); }
.mc-table-body tr.is-us {
    background: rgba(244,196,48,0.08);
    color: #fff;
    font-weight: 600;
}
.mc-table-body tr.is-us td { color: #fff; }
.mc-table-body tr.is-us td.is-w { color: #7ec585; }
.mc-table-body tr.is-us td.is-d { color: #f4c430; }
.mc-table-body tr.is-us td.is-l { color: #e08585; }
.mc-table-body tr.is-us td.is-pts { color: #f4c430; }
.mc-table-body tr.is-us td.is-team { font-weight: 700; }

.mc-pos-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px; height: 26px;
    font-size: 13px;
}
.mc-pos-chip.is-medal { background: rgba(244,196,48,0.18); color: #f4c430; }
.mc-pos-chip.is-us { background: #f4c430; color: #0a2417; }
.mc-team-us-tag {
    margin-left: 8px;
    font-size: 10px;
    font-family: 'Barlow Condensed', sans-serif;
    color: #f4c430;
    letter-spacing: 0.2em;
}

.mc-table-foot {
    padding: 14px 28px;
    border-top: 1px solid rgba(244,196,48,0.18);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.1em;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
}
.mc-table-foot a { color: #f4c430; text-decoration: none; }

.mc-side { display: flex; flex-direction: column; gap: 32px; }
.mc-block-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.mc-block-title::before {
    content: '';
    display: inline-block;
    width: 8px; height: 8px;
    background: #f4c430;
}
.mc-result-list { display: flex; flex-direction: column; gap: 8px; }
.mc-result-row {
    background: rgba(255,255,255,0.04);
    padding: 12px 16px;
    display: grid;
    grid-template-columns: 50px 1fr auto;
    align-items: center;
    gap: 12px;
    border-left: 3px solid #f4c430;
}
.mc-result-row.is-win { border-left-color: #7ec585; }
.mc-result-row.is-draw { border-left-color: #f4c430; }
.mc-result-row.is-loss { border-left-color: #e08585; }
.mc-result-date {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.1em;
}
.mc-result-teams { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 500; }
.mc-result-teams .away { color: rgba(255,255,255,0.7); }
.mc-result-teams .us { font-weight: 700; }
.mc-result-score {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #f4c430;
    font-variant-numeric: tabular-nums;
}

.mc-fixture-list { display: flex; flex-direction: column; gap: 8px; }
.mc-fixture-row {
    background: rgba(255,255,255,0.04);
    border: 1px solid transparent;
    padding: 12px 16px;
}
.mc-fixture-row.is-next {
    background: rgba(244,196,48,0.1);
    border-color: rgba(244,196,48,0.4);
}
.mc-fixture-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
}
.mc-fixture-row.is-next .mc-fixture-meta { color: #f4c430; }
.mc-fixture-teams {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    margin-top: 2px;
    font-weight: 500;
}
.mc-fixture-teams .vs { color: rgba(255,255,255,0.5); margin: 0 6px; }
.mc-fixture-teams .us { font-weight: 700; }

.mc-scorer-list { display: flex; flex-direction: column; }
.mc-scorer-row {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mc-scorer-num {
    width: 26px; height: 26px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mc-scorer-num.is-top { background: #f4c430; color: #0a2417; }
.mc-scorer-name { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 500; }
.mc-scorer-goals {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #f4c430;
    font-variant-numeric: tabular-nums;
}
.mc-scorer-goals .lbl {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-left: 4px;
    font-weight: 400;
}

.table-toggle { display: none; }
.news-show-more { display: none; }

/* ====================================================
   CLUB / EVENTS / STATS
   ==================================================== */
.club-section { background: #f3f5f1; padding: 88px 48px; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.event-date {
    background: #0d3320;
    color: #fff;
    padding: 14px 18px;
    text-align: center;
    min-width: 76px;
}
.event-day {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: #f4c430;
}
.event-month {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    margin-top: 4px;
}
.event-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #5a6e63;
    font-weight: 600;
    margin-bottom: 6px;
}
.event-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0a2417;
    line-height: 1.2;
}
.event-sub {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    color: #5a6e63;
    margin-top: 6px;
    line-height: 1.5;
}

.stats-strip {
    background: #0d3320;
    padding: 48px;
    position: relative;
    border-top: 3px solid #f4c430;
}
.stats-strip::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(244,196,48,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.stats-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}
.stat-cell {
    text-align: center;
    padding: 0 16px;
    border-left: 1px solid rgba(244,196,48,0.18);
    min-width: 0;
}
.stat-cell:first-child { border-left: none; }
.stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 72px;
    font-weight: 700;
    color: #f4c430;
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat-label {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-top: 12px;
    letter-spacing: 0.1em;
}
.stat-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ====================================================
   PARTNERS
   ==================================================== */
.partners-section {
    background: #fff;
    padding: 64px 48px;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.partners-eyebrow {
    text-align: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #5a6e63;
    font-weight: 600;
    margin-bottom: 28px;
}
.partners-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
}
.partner-link {
    border: 1px solid rgba(0,0,0,0.08);
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #3a4a42;
    letter-spacing: 0.02em;
    min-height: 80px;
    text-decoration: none;
    transition: all .2s;
    background: transparent;
}
.partner-link:hover {
    border-color: #0d3320;
    color: #0d3320;
    background: rgba(244,196,48,0.05);
}

/* ====================================================
   FOOTER
   ==================================================== */
.site-footer {
    background: #0a1f14;
    color: rgba(255,255,255,0.7);
}
.footer-simple {
    padding: 72px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
}
.footer-social { display: flex; gap: 14px; align-items: center; }
.footer-social a { color: #f4c430; opacity: 0.85; transition: opacity .2s; }
.footer-social a:hover { opacity: 1; }
.footer-brand-name {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: 28px;
    letter-spacing: 0.02em;
    line-height: 1;
}
.footer-brand-sub {
    font-family: 'Barlow Condensed', sans-serif;
    color: #f4c430;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 600;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom-links a:hover { color: #f4c430; }

/* ====================================================
   PAGE HEADER (subpages)
   ==================================================== */
.page-header {
    background: #0a2417;
    color: #fff;
    padding: 56px 48px 64px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.page-header::after {
    content: '';
    position: absolute;
    right: 0; top: 0; bottom: 0;
    width: 4px;
    background: #f4c430;
}
.page-header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: flex-end;
}
.breadcrumb {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 18px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.breadcrumb a, .breadcrumb span.current {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: #f4c430; font-weight: 600; }
.page-header h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 72px;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 0.95;
}
.page-header-tag {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}
.page-header-tag .line { width: 48px; height: 2px; background: #f4c430; display: block; }
.page-header-tag .text {
    font-family: 'Barlow Condensed', sans-serif;
    color: #f4c430;
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
}
.page-header-intro {
    font-family: 'Barlow', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin: 0;
    text-wrap: pretty;
}

/* ====================================================
   SUBPAGE BODY (sticky sidebar + rich text)
   ==================================================== */
.subpage-section { background: #f3f5f1; padding: 72px 48px 88px; }
.subpage-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 64px;
    align-items: flex-start;
}
.subpage-aside { position: sticky; top: 32px; }
.subpage-aside-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #5a6e63;
    font-weight: 600;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.subpage-toc { display: flex; flex-direction: column; gap: 4px; }
.subpage-toc a {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #0a2417;
    text-decoration: none;
    padding: 10px 0 10px 16px;
    border-left: 3px solid transparent;
    transition: all .15s;
}
.subpage-toc a.is-active, .subpage-toc a:hover {
    border-left-color: #f4c430;
}
.subpage-toc a.is-sub {
    padding-left: 28px;
    font-size: 13px;
    font-weight: 400;
    color: #3a4a42;
}
.subpage-aside-card {
    margin-top: 32px;
    padding: 20px;
    background: #0d3320;
    color: #fff;
}
.subpage-aside-card-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #f4c430;
    font-weight: 600;
    margin-bottom: 8px;
}
.subpage-aside-card-num {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #f4c430;
    line-height: 1;
}
.subpage-aside-card-num + .subpage-aside-card-num { margin-top: 16px; }
.subpage-aside-card-text {
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    opacity: 0.8;
    margin-top: 4px;
}

.subpage-article { max-width: 760px; }

/* Rich text — globální styling pro CMS-edited obsah */
.rich-text {
    font-family: 'Barlow', system-ui, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #2a3a32;
}
.rich-text h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #0a2417;
    line-height: 1.1;
    margin: 56px 0 24px;
}
.rich-text h1:first-child { margin-top: 0; }
.rich-text h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #0a2417;
    letter-spacing: -0.005em;
    line-height: 1.15;
    margin: 56px 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f4c430;
    display: inline-block;
}
.rich-text h2:first-child { margin-top: 0; }
.rich-text h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #0d3320;
    letter-spacing: 0.005em;
    margin: 32px 0 12px;
}
.rich-text p { margin: 0 0 18px; text-wrap: pretty; }
.rich-text strong, .rich-text b { color: #0a2417; font-weight: 700; }
.rich-text em, .rich-text i { font-style: italic; }
.rich-text ul { margin: 12px 0 24px; padding-left: 24px; list-style: none; }
.rich-text ul li { position: relative; padding: 4px 0 4px 20px; }
.rich-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 2px;
    background: #f4c430;
}
.rich-text ol { margin: 12px 0 24px; padding-left: 24px; }
.rich-text a {
    color: #0d3320;
    text-decoration: underline;
    text-decoration-color: #f4c430;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}
.rich-text a:hover { color: #f4c430; }
.rich-text blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    background: #fff;
    border-left: 4px solid #f4c430;
    font-style: italic;
    color: #3a4a42;
}
.rich-text img { display: block; max-width: 100%; height: auto; margin: 24px 0; }

/* Timeline list (variant pro chronologie) */
.timeline-list { list-style: none; padding: 0; margin: 16px 0; }
.timeline-list li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(13,51,32,0.08);
    align-items: baseline;
}
.timeline-list li::before { content: none; }
.timeline-list li:last-child { border-bottom: none; }
.timeline-list .year {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0d3320;
    letter-spacing: 0.02em;
}
.timeline-list .item {
    font-family: 'Barlow', sans-serif;
    font-size: 15.5px;
    color: #2a3a32;
}

/* CTA card pod článkem */
.subpage-cta {
    margin-top: 56px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-top: 3px solid #f4c430;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.subpage-cta-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0a2417;
}
.subpage-cta-sub {
    font-family: 'Barlow', sans-serif;
    font-size: 14.5px;
    color: #5a6e63;
    margin-top: 4px;
}
.subpage-cta-actions { display: flex; gap: 12px; }
.btn-primary {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: #0d3320;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 22px;
    border: 2px solid #0d3320;
    cursor: pointer;
    transition: background .2s, color .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary:hover { background: #f4c430; color: #0a2417; border-color: #f4c430; }
.btn-secondary {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0d3320;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 22px;
    border: 2px solid #0d3320;
    background: transparent;
    cursor: pointer;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-secondary:hover { background: #0d3320; color: #f4c430; }

/* ====================================================
   EMPTY STATE
   ==================================================== */
.subpage-empty {
    padding: 64px 24px;
    background: #fff;
    border: 1px dashed rgba(0,0,0,0.12);
    text-align: center;
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: #5a6e63;
}

/* ====================================================
   GALERIE — list a detail
   ==================================================== */
.gallery-grid-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gallery-tile {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.gallery-tile:hover {
    box-shadow: 0 12px 30px rgba(10,36,23,0.12);
    transform: translateY(-2px);
}
.gallery-tile-thumb {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: #0d3320;
}
.gallery-tile-thumb.is-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(244,196,48,0.6);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.gallery-tile-body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.gallery-tile-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #5a6e63;
    font-weight: 600;
}
.gallery-tile-name {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #0a2417;
    margin: 0;
    letter-spacing: 0.005em;
    line-height: 1.2;
}
.gallery-tile-desc {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    color: #5a6e63;
    margin: 4px 0 0;
    line-height: 1.5;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.photo-tile {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    background: #0d3320;
}
.photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}
.photo-tile:hover img { transform: scale(1.05); }
.photo-tile .gallery-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,36,23,0.85), transparent);
    color: #fff;
    padding: 24px 12px 10px;
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    line-height: 1.3;
    opacity: 0;
    transition: opacity .2s;
}
.photo-tile:hover .gallery-caption { opacity: 1; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,15,12,0.96);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: 92vw;
    max-height: 86vh;
    object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: transparent;
    border: 1px solid rgba(244,196,48,0.3);
    color: #f4c430;
    width: 48px;
    height: 48px;
    font-size: 24px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-caption {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    background: rgba(10,36,23,0.7);
    padding: 8px 16px;
    max-width: 80vw;
    text-align: center;
}

/* ====================================================
   ZÁPASY
   ==================================================== */
.match-highlight {
    background: #0d3320;
    color: #fff;
    padding: 32px 28px;
    border-top: 3px solid #f4c430;
    margin-bottom: 32px;
    text-align: center;
}
.match-highlight.is-win { border-top-color: #7ec585; }
.match-highlight.is-loss { border-top-color: #e08585; }
.match-highlight.is-draw { border-top-color: #f4c430; }
.match-highlight-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #f4c430;
    font-weight: 600;
    margin-bottom: 14px;
}
.match-highlight-score {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    max-width: 760px;
    margin: 0 auto;
}
.match-highlight-team {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 600;
}
.match-highlight-team:first-child { text-align: right; }
.match-highlight-team:last-child { text-align: left; color: rgba(255,255,255,0.85); }
.match-highlight-result {
    font-family: 'Oswald', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #f4c430;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.match-highlight-meta {
    margin-top: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}

.match-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border-bottom: 2px solid rgba(13,51,32,0.1);
}
.match-tab {
    background: transparent;
    border: none;
    padding: 16px 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #5a6e63;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .2s, border-color .2s;
}
.match-tab:hover { color: #0d3320; }
.match-tab.is-active {
    color: #0a2417;
    border-bottom-color: #f4c430;
}
.match-tab-content { display: none; }
.match-tab-content.is-active { display: block; }

.match-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.match-filter {
    background: transparent;
    border: 1px solid rgba(13,51,32,0.2);
    color: #0d3320;
    padding: 8px 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s;
}
.match-filter:hover { border-color: #0d3320; }
.match-filter.is-active {
    background: #0d3320;
    color: #f4c430;
    border-color: #0d3320;
}

.match-list { display: flex; flex-direction: column; gap: 8px; }
.match-row {
    background: #fff;
    border-left: 3px solid rgba(13,51,32,0.15);
    padding: 14px 20px;
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    align-items: center;
    gap: 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 14.5px;
}
.match-row.is-win { border-left-color: #7ec585; }
.match-row.is-loss { border-left-color: #e08585; }
.match-row.is-draw { border-left-color: #f4c430; }
.match-row.is-upcoming { border-left-color: #0d3320; }
.match-row.is-hidden { display: none; }
.match-date {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #5a6e63;
    font-weight: 600;
}
.match-teams {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    color: #0a2417;
    display: flex;
    align-items: center;
    gap: 8px;
}
.match-teams .vs { color: #5a6e63; font-weight: 400; font-size: 13px; }
.match-teams .us { font-weight: 700; }
.match-score {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a2417;
    font-variant-numeric: tabular-nums;
}
.match-row.is-win .match-score { color: #2c8a35; }
.match-row.is-loss .match-score { color: #b03a3a; }
.match-row.is-draw .match-score { color: #a07900; }
.match-location, .match-desc {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5a6e63;
    font-weight: 600;
}
.match-expand-btn { margin-top: 16px; }

/* Flash zprávy uvnitř designu */
.flash {
    margin: 16px 48px;
    padding: 14px 20px;
    background: #fff;
    border-left: 4px solid #f4c430;
    font-family: 'Barlow', sans-serif;
    font-size: 14.5px;
    color: #2a3a32;
}
.flash.success { border-left-color: #7ec585; }
.flash.error { border-left-color: #e08585; }
.flash.warning { border-left-color: #f4c430; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
.mb-only { display: none !important; }

@media (max-width: 768px) {
    .mb-only { display: flex !important; }
    .mb-hide { display: none !important; }

    .util-bar { padding: 6px 16px; font-size: 11px; }
    .util-bar-left { gap: 10px; }

    .main-nav { padding: 0 16px; height: 64px; }
    .main-nav-brand-text { font-size: 15px; }
    .main-nav-brand-sub { font-size: 9px; letter-spacing: 0.12em; }
    .main-nav-links { display: none; }
    .main-nav-links.is-open {
        display: flex;
        position: absolute;
        top: 64px;
        left: 0; right: 0;
        background: #0a2417;
        flex-direction: column;
        padding: 16px 16px 24px;
        gap: 0;
        border-top: 1px solid rgba(244,196,48,0.2);
        box-shadow: 0 12px 24px rgba(0,0,0,0.3);
        z-index: 50;
    }
    .main-nav-links.is-open a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        font-size: 15px;
    }
    .hamburger-btn { display: flex; }

    .hero-section { height: 540px; padding: 0 20px; }
    .hero-title { font-size: 40px; line-height: 1; }
    .hero-side-line { display: none; }
    .hero-badge { padding: 5px 12px; font-size: 10px; margin-bottom: 18px; letter-spacing: 0.15em; }
    .hero-sub { gap: 10px; margin-top: 14px; }
    .hero-sub-line { width: 30px; }
    .hero-sub-text { font-size: 13px; letter-spacing: 0.25em; }

    .match-strip {
        grid-template-columns: 1fr;
        padding: 22px 20px;
        gap: 18px;
        text-align: center;
    }
    .match-strip-divider { display: none; }
    .match-strip-teams { gap: 14px; }
    .match-strip-vs { font-size: 22px; }
    .match-strip-team-name { font-size: 19px; }
    .match-strip-cd { justify-content: center; gap: 12px; }
    .match-strip-cd-label { text-align: center; }
    .match-strip-when { font-size: 18px; }
    .match-strip-info { text-align: center; }

    .news-section, .matchcenter-section, .club-section, .partners-section { padding: 56px 20px; }
    .news-header { flex-direction: column; align-items: flex-start; gap: 18px; }
    .section-title { font-size: 36px; }

    .news-grid { grid-template-columns: 1fr; gap: 22px; }
    .news-grid > .news-card:nth-child(n+2) { display: none; }
    .news-grid.show-all > .news-card { display: flex; }
    .news-show-more {
        display: block;
        margin: 22px auto 0;
        background: #0d3320;
        color: #f4c430;
        border: none;
        padding: 14px 28px;
        font-family: 'Oswald', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        cursor: pointer;
    }

    .matchcenter-grid { grid-template-columns: 1fr; gap: 24px; }
    .matchcenter-section h2 { font-size: 36px; }

    .mc-table-body.is-collapsed .table-row-other { display: none; }
    .mc-table-body.is-collapsed thead { display: none; }
    .mc-table-body.is-collapsed .table-row-us td { padding: 18px 8px; }
    .mc-table-body.is-collapsed .table-row-us td.is-pos { padding-left: 20px; }
    .mc-table-body.is-collapsed .table-row-us td.is-pts { padding-right: 20px; }
    .table-toggle {
        display: block;
        width: 100%;
        padding: 14px;
        background: rgba(244,196,48,0.1);
        border: none;
        border-top: 1px solid rgba(244,196,48,0.2);
        color: #f4c430;
        font-family: 'Oswald', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        cursor: pointer;
    }

    .events-grid { grid-template-columns: 1fr; gap: 18px; }
    .stats-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stats-strip { padding: 32px 16px; }
    .stat-cell { padding: 0 8px; }
    .stat-cell:nth-child(3) { border-left: none; }
    .stat-num { font-size: 48px; }
    .stat-label { font-size: 11px; letter-spacing: 0.12em; }
    .stat-sub { font-size: 10px; letter-spacing: 0.1em; word-break: break-word; }

    .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .footer-simple { padding: 48px 20px; }
    .footer-bottom { padding: 18px 20px; flex-direction: column; gap: 10px; text-align: center; }

    .page-header { padding: 40px 20px 48px; }
    .page-header-inner { grid-template-columns: 1fr; gap: 24px; }
    .page-header h1 { font-size: 44px; }
    .page-header-intro { font-size: 15px; }

    .subpage-section { padding: 48px 20px 64px; }
    .subpage-grid { grid-template-columns: 1fr; gap: 32px; }
    .subpage-aside { position: static; }

    .subpage-cta { flex-direction: column; align-items: flex-start; }
    .subpage-cta-actions { width: 100%; }

    .gallery-grid-list { grid-template-columns: 1fr; gap: 18px; }
    .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }

    .match-highlight { padding: 24px 16px; }
    .match-highlight-score { grid-template-columns: 1fr; gap: 8px; max-width: none; }
    .match-highlight-team:first-child, .match-highlight-team:last-child { text-align: center; }
    .match-highlight-result { font-size: 44px; }
    .match-tabs { overflow-x: auto; }
    .match-row { grid-template-columns: 1fr auto; gap: 8px; padding: 12px 14px; }
    .match-date { grid-column: 1 / -1; }
    .match-location, .match-desc { grid-column: 1 / -1; }
}
