:root {
    --bg: #f7f8fc;
    --surface: #ffffff;
    --surface2: #f0f2f9;
    --border: #e2e6f0;
    --blue: #003F9C;
    --blue2: #2450d8;
    --blue3: #3b6ef5;
    --blue-pale: #eef2ff;
    --blue-pale2: #dde5ff;
    --red: #c51b2f;
    --red-pale: #fff0f1;
    --gold: #c28a00;
    --gold-bright: #f0ac00;
    --gold-pale: #fff8e6;
    --text: #0c1228;
    --text2: #2d3555;
    --muted: #8892b0;
    --muted2: #606887;
    --shadow-sm: 0 1px 4px rgba(22,54,160,0.06), 0 2px 8px rgba(22,54,160,0.04);
    --shadow: 0 2px 8px rgba(22,54,160,0.07), 0 6px 20px rgba(22,54,160,0.05);
    --shadow-md: 0 4px 16px rgba(22,54,160,0.1), 0 12px 32px rgba(22,54,160,0.07);
    --shadow-lg: 0 8px 24px rgba(22,54,160,0.12), 0 20px 48px rgba(22,54,160,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', sans-serif; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 75px; width: auto; object-fit: contain; }
.nav-logo-name { font-size: 17px; font-weight: 800; letter-spacing: -0.03em; color: var(--blue); }
.nav-logo-name em { font-style: normal; color: var(--red); }
.nav-logo-tagline { font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-top: 1px; }

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

.nav-link {
    padding: 8px 16px;
    font-size: 12.5px; font-weight: 600;
    color: var(--muted2);
    border-radius: 8px;
    transition: all 0.15s;
    letter-spacing: -0.01em;
}

.nav-link:hover { background: var(--blue-pale); color: var(--blue2); }
.nav-link.active { background: var(--blue-pale2); color: var(--blue2); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-switch {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 7px 14px;
    font-size: 11px; font-weight: 700;
    color: #c04800;
    background: #fff3ec;
    border: 1.5px solid #ffd4b0;
    border-radius: 8px;
    transition: all .15s;
    white-space: nowrap;
}
.nav-switch:hover { background: #ffe5d0; color: #a03600; }

.mobile-switch-link {
    display: flex; align-items: center; gap: 8px;
    padding: 13px 0;
    font-size: 14px; font-weight: 700;
    color: #c04800 !important;
    border-bottom: 1px solid var(--border);
    border-top: 2px solid var(--border);
    margin-top: 4px;
}
.mobile-switch-link:hover { color: #a03600 !important; }

.lang-group { display: flex; background: var(--surface2); border-radius: 8px; padding: 3px; gap: 2px; border: 1px solid var(--border); }

.lang-btn {
    padding: 5px 11px;
    font-size: 11px; font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.06em;
    border-radius: 6px;
    color: var(--muted);
    border: none; cursor: pointer;
    background: none;
    transition: all 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.lang-btn.active { background: var(--surface); color: var(--blue2); box-shadow: var(--shadow-sm); }
.lang-btn:hover:not(.active) { color: var(--text); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; border-radius: 8px; transition: background 0.15s; }
.hamburger:hover { background: var(--blue-pale); }
.hamburger span { width: 20px; height: 2px; background: var(--muted2); border-radius: 2px; transition: all 0.3s; }

.mobile-menu {
    display: none; position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 199; padding: 16px 24px 28px;
    flex-direction: column;
    box-shadow: var(--shadow-md);
}

.mobile-menu.open { display: flex; }
.mobile-menu > a,
.mobile-menu > .mobile-dropdown > a { padding: 13px 0; font-size: 14px; font-weight: 600; color: var(--muted2); border-bottom: 1px solid var(--border); display: block; }
.mobile-menu > a:last-of-type { border-bottom: none; }
.mobile-menu > a:hover,
.mobile-menu > .mobile-dropdown > a:hover { color: var(--blue2); }
.mobile-dropdown { border-bottom: 1px solid var(--border); }
.mobile-dropdown > a { border-bottom: none !important; }
.mobile-dropdown-menu { display: none; flex-direction: column; padding-left: 12px; padding-bottom: 8px; }
.mobile-dropdown-menu.open { display: flex; }
.mobile-dropdown-menu a { padding: 9px 0; font-size: 13px; font-weight: 500; color: var(--muted2); border-bottom: none !important; }
.mobile-dropdown-menu a:hover { color: var(--blue2); }
.mobile-lang { display: flex; gap: 8px; margin-top: 16px; }

/* ══════════════════════════════════════
   NAV DROPDOWN
══════════════════════════════════════ */
.nav-dropdown { position: relative; }

.nav-link-arrow { display: flex; align-items: center; gap: 4px; }

.nav-link-arrow .arrow {
    font-size: 10px;
    transition: transform 0.2s;
    color: var(--muted);
}

.nav-dropdown:hover .arrow,
.nav-dropdown.open .arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    min-width: 220px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-6px);
    transition: all 0.18s ease;
    z-index: 300;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 9px 14px;
    font-size: 13px; font-weight: 500;
    color: var(--text2);
    border-radius: 8px;
    transition: all 0.12s;
    white-space: nowrap;
}

.nav-dropdown-item:hover { background: var(--blue-pale); color: var(--blue2); }

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px; left: 50%;
    width: 10px; height: 10px;
    background: var(--surface);
    border-left: 1.5px solid var(--border);
    border-top: 1.5px solid var(--border);
    transform: translateX(-50%) rotate(45deg);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding-top: 68px;
    display: grid;
    grid-template-rows: 1fr auto;
    position: relative;
    overflow: hidden;
    background: url('/images/banner.webp') center/cover no-repeat;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px 40px;
    position: relative;
    z-index: 2;
    max-width: 1160px;
}

.hero-shape1 {
    position: absolute;
    right: -80px; top: 10%;
    width: 560px; height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,110,245,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-shape2 {
    position: absolute;
    right: 5%; top: 8%;
    width: 420px; height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(22,54,160,0.08);
    pointer-events: none;
}

.hero-shape2::after {
    content: '';
    position: absolute; inset: 32px;
    border-radius: 50%;
    border: 1px solid rgba(22,54,160,0.05);
}

.hero-court {
    position: absolute;
    right: 2%; top: 50%;
    transform: translateY(-48%);
    width: 46%; max-width: 620px;
    opacity: 0.04;
    pointer-events: none;
}

.hero-court svg { width: 100%; height: 100%; }

.hero-flag {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue) 33.3%, var(--gold-bright) 33.3%, var(--gold-bright) 66.6%, var(--red) 66.6%);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--blue-pale2);
    border: 1px solid var(--blue-pale2);
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
    color: var(--blue2);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
    width: fit-content;
}

.hero-pill-dot {
    width: 6px; height: 6px;
    background: var(--blue2);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.6); }
}

.hero h1 {
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    color: var(--blue);
    margin-bottom: 8px;
}

.hero h1 .red { color: var(--red); }

.hero-desc {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--muted);
    margin-top: 16px; margin-bottom: 24px;
}

.hero-sub {
    font-size: 15px; font-weight: 400;
    color: var(--muted2);
    line-height: 1.7; max-width: 480px;
    margin-bottom: 36px;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 13px; font-weight: 700;
    border-radius: 10px;
    border: none; cursor: pointer;
    transition: all 0.18s;
    letter-spacing: -0.01em;
}

.btn-blue { background: var(--blue2); color: #fff; box-shadow: 0 4px 16px rgba(36,80,216,0.3); }
.btn-blue:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(36,80,216,0.35); }

.btn-red { background: var(--red); color: #fff; box-shadow: 0 4px 16px rgba(197,27,47,0.22); }
.btn-red:hover { background: #a8152a; transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--text2); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.btn-outline:hover { border-color: var(--blue2); color: var(--blue2); background: var(--blue-pale); }

.hero-stats {
    display: flex; gap: 32px;
    margin-top: 40px; padding-top: 32px;
    border-top: 1px solid var(--border);
}

.hero-stat-num { font-size: 32px; font-weight: 900; letter-spacing: -0.04em; color: var(--blue); line-height: 1; }
.hero-stat-num span { color: var(--red); }
.hero-stat-label { font-size: 11px; font-weight: 500; color: var(--muted); margin-top: 4px; }

.ticker-wrap {
    background: var(--blue);
    height: 40px;
    display: flex; align-items: center;
    overflow: hidden;
    position: relative; z-index: 2;
}

.ticker-track { display: flex; animation: ticker 38s linear infinite; white-space: nowrap; }

.ticker-item {
    display: flex; align-items: center; gap: 16px;
    padding: 0 48px;
    font-size: 10.5px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: rgba(255,255,255,0.88);
}

.ticker-sep { color: var(--gold-bright); font-size: 14px; }

@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════════════
   SHARED SECTION
══════════════════════════════════════ */
.section { max-width: 1240px; margin: 0 auto; padding: 72px 48px; }

.sec-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 32px; flex-wrap: wrap; gap: 12px;
}

.sec-title {
    font-size: 22px; font-weight: 800;
    letter-spacing: -0.03em; color: var(--text);
    display: flex; align-items: center; gap: 12px;
}

.sec-title-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.sec-title-dot.blue { background: var(--blue2); }
.sec-title-dot.red  { background: var(--red); }
.sec-title-dot.gold { background: var(--gold-bright); }

.sec-link {
    font-size: 12px; font-weight: 600;
    color: var(--blue2);
    display: flex; align-items: center; gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1.5px solid var(--blue-pale2);
    transition: all 0.15s;
}

.sec-link:hover { background: var(--blue-pale); }

.divider { border: none; border-top: 1px solid var(--border); }

/* ══════════════════════════════════════
   MATCH CARDS
══════════════════════════════════════ */
.matches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.match-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: all 0.2s;
    overflow: hidden;
    position: relative;
}

.match-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-pale2); }

.match-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}

.match-card.live::before     { background: var(--red); }
.match-card.upcoming::before { background: var(--gold-bright); }
.match-card.finished::before { background: var(--border); }

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

.badge-live {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--red-pale); color: var(--red);
    font-size: 10px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    padding: 4px 10px; border-radius: 100px;
    border: 1px solid rgba(197,27,47,0.15);
}

.live-dot {
    width: 6px; height: 6px;
    background: var(--red); border-radius: 50%;
    animation: livepulse 1s infinite;
}

@keyframes livepulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197,27,47,0.5); }
    50%       { box-shadow: 0 0 0 4px rgba(197,27,47,0); }
}

.badge-upcoming {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--gold-pale); color: var(--gold);
    font-size: 10px; font-weight: 700;
    padding: 4px 10px; border-radius: 100px;
    border: 1px solid rgba(194,138,0,0.15);
}

.badge-finished { font-size: 10px; font-weight: 600; color: var(--muted); padding: 4px 0; }

.match-comp {
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--blue2);
    background: var(--blue-pale);
    padding: 4px 10px; border-radius: 100px;
}

.match-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.match-team { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.team-logo-wrap {
    width: 60px; height: 60px;
    background: var(--surface2);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--border);
    font-size: 11px; font-weight: 800;
    color: var(--blue2);
    overflow: hidden;
    position: relative;
}

.team-logo-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.team-logo-placeholder { font-size: 15px; font-weight: 900; color: var(--blue2); letter-spacing: -0.02em; }
.team-name-short { font-size: 11px; font-weight: 700; color: var(--text2); text-align: center; }
.team-city { font-size: 10px; font-weight: 500; color: var(--muted); text-align: center; }

.match-center { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.score { font-size: 36px; font-weight: 900; letter-spacing: -0.05em; line-height: 1; color: var(--text); }
.score-detail { font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; text-align: center; }
.vs-time { font-size: 28px; font-weight: 900; letter-spacing: -0.04em; color: var(--blue2); }

.match-footer {
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between;
    font-size: 11px; font-weight: 500; color: var(--muted);
    flex-wrap: wrap; gap: 4px;
}

/* ══════════════════════════════════════
   STANDINGS
══════════════════════════════════════ */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.standings-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.standings-thead {
    display: grid;
    grid-template-columns: 36px 1fr 40px 40px 40px 40px 60px;
    gap: 4px;
    padding: 12px 20px;
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--muted);
    background: var(--surface2);
    border-bottom: 1px solid var(--border);
}

.standings-tr {
    display: grid;
    grid-template-columns: 36px 1fr 40px 40px 40px 40px 60px;
    gap: 4px;
    padding: 13px 20px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: background 0.12s;
}

.standings-tr:last-child { border-bottom: none; }
.standings-tr:hover { background: var(--bg); }

.standings-tr.pos1 { background: linear-gradient(90deg, rgba(36,80,216,0.06) 0%, transparent 80%); border-left: 3px solid var(--blue2); }
.standings-tr.pos2 { border-left: 3px solid var(--gold-bright); }
.standings-tr.pos3 { border-left: 3px solid var(--red); }

.rank-num { font-size: 13px; font-weight: 800; text-align: center; color: var(--muted); }
.rank-num.r1 { color: var(--blue2); }
.rank-num.r2 { color: var(--gold); }
.rank-num.r3 { color: var(--red); }

.team-row { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--text2); }

.team-logo-sm {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--surface2);
    border: 1.5px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 9px; font-weight: 800;
    color: var(--blue2);
    flex-shrink: 0;
    overflow: hidden;
}

.team-logo-sm img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }

.td-stat { text-align: center; font-size: 12px; font-weight: 500; color: var(--muted); }
.td-pts { text-align: center; font-size: 15px; font-weight: 800; color: var(--blue2); }

/* ══════════════════════════════════════
   NEWS — homepage widget only
   Full blog styles → blog.css
══════════════════════════════════════ */
.news-card-sm {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 15px 18px;
    box-shadow: var(--shadow-sm);
    display: flex; align-items: flex-start; gap: 14px;
    transition: all 0.15s;
}

.news-card-sm:hover { border-color: var(--blue-pale2); background: var(--blue-pale); transform: translateX(3px); }

.news-sm-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--blue-pale2);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}

.news-sm-cat { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--red); margin-bottom: 4px; }
.news-sm-title { font-size: 13px; font-weight: 600; line-height: 1.35; color: var(--text2); margin-bottom: 4px; }
.news-sm-date { font-size: 10px; font-weight: 500; color: var(--muted); }

.news-img-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue2), var(--gold-bright), var(--red));
}

/* ══════════════════════════════════════
   TEAMS
══════════════════════════════════════ */
.teams-bg { background: var(--blue); padding: 56px 0; }
.teams-bg .sec-title { color: #fff; }
.teams-bg .sec-link { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); }
.teams-bg .sec-link:hover { background: rgba(255,255,255,0.1); color: #fff; }

.teams-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; }

.team-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 20px 12px 16px;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    cursor: pointer;
    transition: all 0.18s;
    text-align: center;
}

.team-card:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.28);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.team-card-logo {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 900;
    color: rgba(255,255,255,0.9);
    overflow: hidden;
}

.team-card-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.team-card-name { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.88); line-height: 1.3; }
.team-card-city { font-size: 9px; font-weight: 500; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer-wrap { background: var(--blue); border-top: 1px solid var(--border); }

.footer-flag { height: 4px; background: linear-gradient(90deg, var(--blue) 33.3%, var(--gold-bright) 33.3%, var(--gold-bright) 66.6%, var(--red) 66.6%); }

footer { max-width: 1240px; margin: 0 auto; padding: 52px 48px 32px; }

.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }

.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand img { height: 75px; width: auto; object-fit: contain; }
.footer-brand-name { font-size: 20px; font-weight: 900; letter-spacing: -0.03em; color: var(--blue); }
.footer-brand-name em { font-style: normal; color: var(--red); }
.footer-about { font-size: 13px; color: #e7dada; line-height: 1.65; max-width: 260px; }
.footer-partners { margin-top: 20px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); margin-bottom: 8px; }
.partner-badges { display: flex; gap: 8px; }
.partner-badge {
    padding: 5px 12px; border-radius: 6px;
    background: var(--surface2); border: 1px solid var(--border);
    font-size: 11px; font-weight: 800; color: var(--blue2);
    letter-spacing: 0.04em;
}

.footer-col-title { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: #FFC205; margin-bottom: 16px; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; font-weight: 500; color: #e7dada; transition: color 0.15s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: #FFC205; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    font-size: 12px; font-weight: 500; color: var(--muted);
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--muted); transition: color 0.15s; }
.footer-bottom-links a:hover { color: #FFC205; }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-pill  { animation: fadeUp 0.45s ease both; }
.hero h1    { animation: fadeUp 0.45s 0.07s ease both; }
.hero-desc  { animation: fadeUp 0.45s 0.12s ease both; }
.hero-sub   { animation: fadeUp 0.45s 0.17s ease both; }
.hero-cta   { animation: fadeUp 0.45s 0.22s ease both; }
.hero-stats { animation: fadeUp 0.45s 0.27s ease both; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
    .teams-grid { grid-template-columns: repeat(4, 1fr); }
    .split-section { grid-template-columns: 1fr; }
    .matches-grid { grid-template-columns: repeat(2, 1fr); }
    .standings-thead, .standings-tr { grid-template-columns: 32px 1fr 36px 36px 54px; }
    .standings-thead > *:nth-child(4),
    .standings-thead > *:nth-child(5),
    .standings-thead > *:nth-child(6),
    .standings-tr > *:nth-child(4),
    .standings-tr > *:nth-child(5),
    .standings-tr > *:nth-child(6) { display: none; }
}

@media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-center { display: none; }
    .hamburger { display: flex; }
    .nav-switch span { display: none; }
    .hero { background-image: url('/images/banner-mobile.webp');
        background-color: white;
    }
    .hero-inner { padding: 32px 20px 32px; }
    .hero-shape2, .hero-court { display: none; }
    .section { padding: 52px 20px; }
    .matches-grid { grid-template-columns: 1fr; }
    .teams-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    footer { padding: 36px 20px 24px; }
}

@media (max-width: 520px) {
    .hero h1 { font-size: clamp(40px, 11vw, 64px); }
    .hero-stats { gap: 20px; }
    .hero-cta { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .teams-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr; }
    .team-logo-wrap { width: 52px; height: 52px; }
    .score { font-size: 28px; }
}


/* ══════════════════════════════════════
   TEAM HERO BANNER
══════════════════════════════════════ */
.team-hero {
    background: var(--blue);
    position: relative;
    overflow: hidden;
}

.team-hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(59,110,245,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(197,27,47,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.team-hero-flag {
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue) 33.3%, var(--gold-bright) 33.3%, var(--gold-bright) 66.6%, var(--red) 66.6%);
}

.team-hero-inner {
    max-width: 1240px; margin: 0 auto;
    padding: 48px 48px 40px;
    position: relative; z-index: 2;
    display: flex; align-items: center; gap: 36px;
    flex-wrap: wrap;
}

.team-hero-logo {
    width: 110px; height: 110px;
    border-radius: 22px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.team-hero-logo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }

.team-hero-logo-placeholder {
    font-size: 36px; font-weight: 900;
    color: rgba(255,255,255,0.9); letter-spacing: -0.03em;
}

.team-hero-info { flex: 1; min-width: 0; }

.team-hero-tournament {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 14px;
}

.team-hero-name {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900; letter-spacing: -0.04em;
    color: #fff; line-height: 1;
    margin-bottom: 10px;
}

.team-hero-meta {
    display: flex; align-items: center; gap: 16px;
    flex-wrap: wrap;
}

.team-hero-meta-item {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 500;
    color: rgba(255,255,255,0.65);
}

.team-hero-meta-item i { font-size: 11px; color: rgba(255,255,255,0.4); }

/* Stats row */
.team-hero-stats {
    display: flex; gap: 0;
    margin-left: auto; flex-shrink: 0;
}

.team-hero-stat {
    display: flex; flex-direction: column; align-items: center;
    padding: 16px 28px;
    border-left: 1px solid rgba(255,255,255,0.12);
    min-width: 90px;
}

.team-hero-stat:first-child { border-left: none; }

.team-hero-stat-num {
    font-size: 32px; font-weight: 900;
    letter-spacing: -0.04em; color: #fff; line-height: 1;
}

.team-hero-stat-num.gold { color: var(--gold-bright); }
.team-hero-stat-num.red  { color: #ff6b7a; }

.team-hero-stat-label {
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: rgba(255,255,255,0.45);
    margin-top: 5px; text-align: center;
}

/* ══════════════════════════════════════
   TOURNAMENT TABS (inside hero)
══════════════════════════════════════ */
.team-tabs-bar {
    max-width: 1240px; margin: 0 auto;
    padding: 0 48px;
    position: relative; z-index: 2;
    display: flex; align-items: flex-end; gap: 4px;
    margin-top: 28px;
}

.team-tab {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px;
    font-size: 12.5px; font-weight: 700;
    color: rgba(255,255,255,0.55);
    border-radius: 10px 10px 0 0;
    border: 1px solid transparent; border-bottom: none;
    cursor: pointer; transition: all 0.18s;
    background: transparent;
    font-family: 'Inter', sans-serif; letter-spacing: -0.01em;
}

.team-tab:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.08); }
.team-tab.active { background: var(--bg); color: var(--text); border-color: var(--border); }

.team-tab-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.team-tab-dot.blue { background: var(--blue-pale2); }
.team-tab-dot.red  { background: #ff6b7a; }
.team-tab-dot.gold { background: var(--gold-bright); }
.team-tab.active .team-tab-dot.blue { background: var(--blue2); }
.team-tab.active .team-tab-dot.red  { background: var(--red); }
.team-tab.active .team-tab-dot.gold { background: #a87000; }

/* ══════════════════════════════════════
   TAB PANELS
══════════════════════════════════════ */
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ══════════════════════════════════════
   PAGE LAYOUT
══════════════════════════════════════ */
.team-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

/* ══════════════════════════════════════
   SECTION TITLE
══════════════════════════════════════ */
.team-sec-title {
    font-size: 14px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text2);
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
}

.team-sec-title::after {
    content: '';
    flex: 1; height: 1px;
    background: var(--border);
}

/* ══════════════════════════════════════
   MATCH CARD (compact)
══════════════════════════════════════ */
/* ══════════════════════════════════════
   MATCH CARD — centered hero style
══════════════════════════════════════ */
.match-compact {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.18s;
    position: relative; overflow: hidden;
    overflow: visible; /* was: hidden */
}

.match-compact::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
}

.match-compact.upcoming::before { background: var(--gold-bright); }
.match-compact.finished::before { background: var(--border); }
.match-compact.win::before      { background: #1a7f4b; }
.match-compact.loss::before     { background: var(--red); }

.match-compact:hover { border-color: var(--blue-pale2); box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* ── Meta bar (location + date) ── */
.match-compact-meta {
    display: flex; flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap;
    gap: 8px;
    padding: 14px 20px 0;
}

.match-compact-location {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700;
    color: var(--red);
    background: var(--red-pale);
    border: 1px solid rgba(197,27,47,.15);
    padding: 4px 10px; border-radius: 100px;
}

.match-compact-location i { font-size: 9px; }

.match-compact-date {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700;
    color: var(--blue2);
    background: var(--blue-pale);
    border: 1px solid var(--blue-pale2);
    padding: 4px 10px; border-radius: 100px;
}

.match-compact-date i { font-size: 9px; }

.match-compact-tournament {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11px; font-weight: 700;
    color: var(--muted);
    background: var(--surface2);
    border: 1px solid var(--border);
    padding: 4px 10px; border-radius: 100px;
}

/* ── Main body: logo — score — logo ── */
.match-compact-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    padding: 20px 24px 22px;
}

/* ── Team side ── */
.match-team-side {
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; text-align: center;
}

.match-team-logo-lg {
    width: 64px; height: 64px;
    border-radius: 14px;
    background: var(--surface2);
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: border-color 0.18s;
}

.match-compact:hover .match-team-logo-lg { border-color: var(--blue-pale2); }

.match-team-logo-lg img {
    width: 100%; height: 100%;
    object-fit: contain; padding: 6px;
}

.match-team-logo-placeholder {
    font-size: 18px; font-weight: 900;
    color: var(--blue2); letter-spacing: -0.02em;
}

.match-team-name-lg {
    font-size: 13px; font-weight: 700;
    color: var(--text2);
    line-height: 1.25;
}

.match-team-side.highlight .match-team-name-lg {
    font-weight: 800;
    color: var(--text);
}

/* ── Score center ── */
.match-score-center {
    display: flex; flex-direction: column;
    align-items: center; gap: 4px;
    min-width: 80px;
}

.match-score-main {
    font-size: 36px; font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--text);
    display: flex; align-items: center; gap: 6px;
}

.match-score-main .score-home { }
.match-score-main .score-sep  { font-size: 28px; color: var(--muted); font-weight: 300; }

.match-score-main .win  { color: #1a7f4b; }
.match-score-main .loss { color: var(--red); }

.match-score-label {
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--muted);
}

.match-badge-upcoming-center {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: var(--gold-pale); color: #a87000;
    border: 1px solid rgba(194,138,0,0.2);
    border-radius: 100px;
    font-size: 11px; font-weight: 700;
}

.match-badge-live-center {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: var(--red-pale); color: var(--red);
    border: 1px solid rgba(197,27,47,0.15);
    border-radius: 100px;
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── Set scores footer ── */
.match-expand-panel {
    padding: 12px 24px 16px;
    background: var(--surface2);
    border-top: 1.5px solid var(--border);
    border-radius: 0 0 14px 14px; /* match card border-radius */
    display: flex; align-items: center; justify-content: center;
    gap: 8px; flex-wrap: wrap;
}

.match-expand-set {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 12px; font-weight: 700; color: var(--text2);
    box-shadow: var(--shadow-sm);
}

.match-expand-set-label {
    font-size: 10px; font-weight: 700;
    color: var(--muted);
    text-transform: uppercase; letter-spacing: .1em;
    margin-right: 2px;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .match-team-logo-lg { width: 52px; height: 52px; }
    .match-score-main   { font-size: 28px; }
    .match-team-name-lg { font-size: 12px; }
}

/* ══════════════════════════════════════
   PLAYERS ROSTER
══════════════════════════════════════ */
.roster-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
}

.roster-header {
    display: grid;
    grid-template-columns: 40px 1fr 1fr;
    gap: 8px; padding: 10px 20px;
    background: var(--surface2);
    border-bottom: 1px solid var(--border);
    font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--muted);
}

.roster-row {
    display: grid;
    grid-template-columns: 40px 1fr 1fr;
    gap: 8px; padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: background 0.12s;
}

.roster-row:last-child { border-bottom: none; }
.roster-row:hover { background: var(--bg); }

.roster-num { font-size: 14px; font-weight: 900; color: var(--blue2); letter-spacing: -0.02em; text-align: center; }
.roster-name { font-size: 13px; font-weight: 600; color: var(--text2); }
.roster-pos { font-size: 11px; font-weight: 600; color: var(--muted2); display: flex; align-items: center; }

.pos-badge {
    display: inline-block;
    padding: 2px 9px; border-radius: 100px;
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.06em;
}

.pos-badge.setter   { background: var(--blue-pale2); color: var(--blue2); }
.pos-badge.outside  { background: #e8f9f0; color: #1a7f4b; }
.pos-badge.middle   { background: var(--red-pale); color: var(--red); }
.pos-badge.opposite { background: var(--gold-pale); color: #a87000; }
.pos-badge.libero   { background: var(--surface2); color: var(--muted2); border: 1px solid var(--border); }

/* ══════════════════════════════════════
   SIDEBAR CARDS
══════════════════════════════════════ */
.sidebar-info-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.sidebar-card-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--blue2);
}

/* Mini standings */
.mini-standings { padding: 8px 0; }

.mini-standings-group-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--blue2);
    background: var(--surface2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.mini-standings-group-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.mini-standing-row {
    display: grid;
    grid-template-columns: 28px 1fr 36px;
    gap: 6px; padding: 9px 20px;
    align-items: center;
    border-bottom: 1px solid var(--border);
    transition: background 0.12s;
    font-size: 13px;
}

.mini-standing-row:last-child { border-bottom: none; }
.mini-standing-row:hover { background: var(--bg); }
.mini-standing-row.current-team { background: var(--blue-pale); }

.mini-rank { font-weight: 800; color: var(--muted); text-align: center; font-size: 12px; }
.mini-name { font-weight: 500; color: var(--text2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-pts  { font-weight: 800; color: var(--blue2); text-align: right; font-size: 14px; }

.mini-standing-row.current-team .mini-rank,
.mini-standing-row.current-team .mini-name { font-weight: 800; color: var(--blue2); }

/* Team info list */
.team-info-list { padding: 4px 0; }

.team-info-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 13px; gap: 12px;
}

.team-info-row:last-child { border-bottom: none; }
.team-info-key { font-weight: 500; color: var(--muted); flex-shrink: 0; }
.team-info-val { font-weight: 700; color: var(--text2); text-align: right; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .team-layout { grid-template-columns: 1fr; }
    .team-hero-stats {
        margin-left: 0; width: 100%;
        justify-content: flex-start;
        border-top: 1px solid rgba(255,255,255,0.12);
        padding-top: 20px;
    }
    .team-hero-stat:first-child { border-left: none; }
}

@media (max-width: 768px) {
    .team-hero-inner { padding: 32px 20px 0; gap: 24px; }
    .team-tabs-bar { padding: 0 20px; }
    .team-hero-logo { width: 80px; height: 80px; border-radius: 16px; }
    .team-hero-stat { padding: 12px 18px; }
    .team-hero-stat-num { font-size: 24px; }
    .roster-header, .roster-row { grid-template-columns: 36px 1fr 1fr; padding: 10px 14px; }
    .team-tab { padding: 9px 14px; font-size: 12px; }
}

@media (max-width: 520px) {
    .team-hero-stats { flex-wrap: wrap; }
    .team-hero-stat { min-width: calc(50% - 1px); }
    .team-tabs-bar { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; }
    .team-tab { white-space: nowrap; }
    .team-tab-dot { display: none; }
}

/* ── DESKTOP: match set scores shown inline inside the match row ── */
@media (min-width: 1025px) {
    .match-compact { flex-direction: row; align-items: stretch; }
    .match-compact-body { align-items: center; }
    .match-expand-panel {
        display: flex;
        align-items: center;
        border-top: none;
        background: transparent;
        margin: -16px -20px -16px 0;
        padding: 0 20px;
    }
    .match-expand-sets { flex-wrap: nowrap; }
}
/* ══ TOURNAMENTS HOME GRID ══ */
.tournaments-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tournament-home-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.2s;
    color: inherit;
}

.tournament-home-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-pale2);
}

.tournament-home-banner {
    height: 90px;
    display: flex; align-items: flex-end;
    padding: 14px 18px;
    position: relative; overflow: hidden;
}

.tournament-home-banner::after {
    content: '🏆';
    position: absolute; right: 14px; top: 50%;
    transform: translateY(-50%);
    font-size: 44px; opacity: .18;
}

.tournament-home-banner--blue { background: linear-gradient(135deg, #1636a0, #2450d8, #3b6ef5); }
.tournament-home-banner--red  { background: linear-gradient(135deg, #a8152a, #c51b2f, #e03348); }
.tournament-home-banner--gold { background: linear-gradient(135deg, #a87000, #c28a00, #f0ac00); }

.tournament-home-name {
    font-size: 15px; font-weight: 800;
    letter-spacing: -0.02em; color: #fff;
    position: relative; z-index: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,.2);
    line-height: 1.2;
}

.tournament-home-body { padding: 16px 18px; }

.tournament-home-meta { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }

.tournament-home-row {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--muted2);
}

.tournament-home-row i { color: var(--blue2); font-size: 11px; width: 14px; }

.tournament-home-btn {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 9px;
    background: var(--blue-pale);
    border: 1.5px solid var(--blue-pale2);
    border-radius: 9px;
    font-size: 12px; font-weight: 700; color: var(--blue2);
    transition: all .15s;
}

.tournament-home-card:hover .tournament-home-btn {
    background: var(--blue2); color: #fff; border-color: var(--blue2);
}

@media (max-width: 900px) {
    .tournaments-home-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .tournaments-home-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   PARTNERS SLIDER
══════════════════════════════════════ */
.partners-track-wrap {
    overflow: hidden;
    position: relative;
    padding: 12px 0;
}

/* fade edges */
.partners-track-wrap::before,
.partners-track-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 1;
    pointer-events: none;
}
.partners-track-wrap::before { left: 0;  background: linear-gradient(to right, var(--bg), transparent); }
.partners-track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }

.partners-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: partners-scroll 28s linear infinite;
}

.partners-track:hover { animation-play-state: paused; }

@keyframes partners-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 80px;
    padding: 8px 20px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.partner-logo-item:hover {
    border-color: var(--blue-pale2);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.partner-logo-item img {
    height: 50px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.65);
    transition: filter .2s;
}

.partner-logo-item:hover img {
    filter: grayscale(0) opacity(1);
}
