@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;700;800&display=swap');

:root {
    --bg: #050505;
    --bg-soft: #101010;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-strong: rgba(255, 255, 255, 0.08);
    --line: rgba(255, 255, 255, 0.12);
    --text: #f4f4f4;
    --muted: rgba(244, 244, 244, 0.7);
    --accent: #ffffff;
    --max-width: 1180px;
    --hero-width: 1468px;
    --desktop-scale: 0.9;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --section-y: clamp(2.35rem, 3.3vw, 3.1rem);
    --section-y-mobile: 2.25rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.055), transparent 24%),
        linear-gradient(180deg, #050505 0%, #030303 58%, #000000 100%);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-shell {
    min-height: 100vh;
    overflow: hidden;
}

@media (min-width: 821px) {
    .site-shell {
        width: 100%;
        min-height: auto;
        zoom: var(--desktop-scale);
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(2, 2, 2, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
    background: rgba(0, 0, 0, 0.95);
}

.site-nav {
    width: min(var(--hero-width), calc(100% - 4.35rem));
    margin: 0 auto;
    min-height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.site-brand-mark {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1px solid var(--line);
    padding: 0.2rem;
    background: rgba(255, 255, 255, 0.04);
}

.site-brand-copy strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.42rem;
    line-height: 0.9;
    letter-spacing: 0.02em;
}

.site-brand-copy span {
    color: #ffffff;
    font-size: 1rem;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-menu a {
    padding: 1.02rem 1.35rem;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    transition: 0.25s ease;
}

.site-menu a:hover,
.site-menu a.is-active {
    color: var(--bg);
    background: var(--accent);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--text);
}

.section {
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0 auto;
    padding: var(--section-y) 0;
}

.hero {
    width: min(var(--hero-width), calc(100% - 4.35rem));
    padding-top: 2.55rem;
    padding-bottom: 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 433px);
    align-items: stretch;
    gap: 1.85rem;
}

.hero-copy,
.hero-visual,
.hero-club-panel {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-copy {
    min-height: 720px;
    padding: clamp(2.75rem, 3.5vw, 3.35rem) clamp(2rem, 3.6vw, 3.6rem) 2.45rem;
    background:
        var(--hero-bg) 66% 38% / cover no-repeat,
        #080808;
}

.hero-copy > * {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--muted);
}

.eyebrow::before {
    content: '';
    width: 44px;
    height: 1px;
    background: currentColor;
}

.hero-title,
.section-title,
.card-title,
.story-title {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.03em;
}

.hero-title {
    margin: 1.2rem 0 1.15rem;
    max-width: 760px;
    font-size: clamp(4.15rem, 5.35vw, 5.8rem);
    line-height: 0.91;
    letter-spacing: 0.01em;
    overflow-wrap: normal;
    word-break: normal;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
}

.hero-text {
    max-width: 500px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.22rem;
    line-height: 1.55;
}

.hero-actions,
.page-actions,
.story-actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
    color: var(--bg);
}

.btn-secondary {
    background: transparent;
    border-color: var(--line);
    color: var(--text);
}

.hero-actions .btn {
    min-width: 190px;
    min-height: 56px;
    padding: 0.92rem 1.55rem;
    font-size: 1rem;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 1.75rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(7px);
}

.metric {
    min-height: 74px;
    padding: 0.3rem 2rem 0.25rem 1.6rem;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
}

.metric:first-child {
    padding-left: 0;
}

.metric:last-child {
    border-right: 0;
}

.metric strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #ffffff;
    font-size: 1.78rem;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.metric span {
    display: block;
    max-width: 155px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.45;
}

.hero-visual {
    min-height: 100%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%),
        #080808;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-club-panel {
    min-height: 720px;
    padding: 2.35rem 2rem 2.25rem;
    background:
        radial-gradient(circle at 50% 2%, rgba(255, 255, 255, 0.045), transparent 35%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
        #080808;
}

.club-hero-card {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.45rem;
    padding: 0;
}

.club-hero-logo {
    display: flex;
    justify-content: center;
    padding: 0.05rem 0 0.25rem;
}

.club-hero-logo img {
    width: clamp(152px, 50%, 188px);
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    opacity: 1;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.45));
}

.club-hero-facts {
    display: grid;
    gap: 0;
}

.club-hero-fact {
    display: grid;
    grid-template-columns: 2.35rem minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
    padding: 1.05rem 0 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.club-hero-fact:first-child {
    padding-top: 0;
}

.club-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    margin-top: 0.05rem;
    color: var(--text);
}

.club-hero-icon svg {
    width: 1.32rem;
    height: 1.32rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.club-hero-fact strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.03rem;
    font-weight: 800;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.club-hero-fact span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.48;
}

.club-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    margin-top: auto;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--bg);
    font-size: 1rem;
    font-weight: 800;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 14px 34px rgba(255, 255, 255, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.club-hero-button svg {
    position: absolute;
    right: 1.3rem;
    width: 1.55rem;
    height: 1.55rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.club-hero-button:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 18px 42px rgba(255, 255, 255, 0.16);
}

.hero-visual-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem;
    background:
        linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.86) 100%);
}

.visual-chip {
    padding: 0.85rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.55);
    font-size: 0.9rem;
    color: var(--muted);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.section-title {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 0.92;
}

.section-copy {
    max-width: 42rem;
    color: var(--muted);
    line-height: 1.7;
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.card-grid.columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card,
.story-card,
.contact-panel,
.match-panel,
.table-shell,
.empty-state,
.page-hero {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.content-card {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.content-card-image {
    height: 220px;
    background: #121212;
}

.content-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-card-body {
    padding: 1.35rem;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.meta-line {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.card-title {
    margin: 0.7rem 0 0.6rem;
    font-size: 2rem;
    line-height: 1;
}

.card-copy {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.content-card-body .page-actions,
.content-card-body .story-actions {
    margin-top: auto;
}

.story-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
}

.story-cover {
    min-height: 100%;
    background: #101010;
}

.story-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-copy {
    padding: 1.8rem;
}

.story-title {
    margin: 0.7rem 0;
    font-size: 3rem;
    line-height: 0.95;
}

body.page-home main > .section {
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
}

body.page-home main > .section.hero {
    padding-top: 1.8rem;
    padding-bottom: 0.9rem;
}

body.page-home .section-head {
    margin-bottom: 0.75rem;
}

body.page-home .story-copy,
body.page-home .content-card-body {
    padding: 1.15rem;
}

body.page-home .story-actions,
body.page-home .page-actions {
    margin-top: 1.05rem;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 1rem;
}

.team-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1rem;
    align-items: start;
}

.team-detail-page .section {
    padding: clamp(1.25rem, 2.2vw, 2rem) 0;
}

.team-detail-page .section-head {
    margin-bottom: 1rem;
}

.team-match-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 1rem;
    align-items: stretch;
}

.team-match-hero-copy,
.team-match-hero-image {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)), #080808;
}

.team-match-hero-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 370px;
    padding: clamp(1.5rem, 4vw, 3rem);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.58)),
        var(--team-info-bg) center / cover no-repeat,
        #080808;
}

.team-match-hero-copy > * {
    position: relative;
    z-index: 1;
}

.team-league-badge {
    display: inline-flex;
    width: fit-content;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.82rem;
    font-weight: 900;
}

.team-match-title {
    margin: 0.65rem 0 0.9rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.4rem, 6vw, 5.5rem);
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
}

.team-match-hero-copy p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    line-height: 1.55;
}

.team-match-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.45rem;
}

.team-match-actions .btn {
    min-height: 52px;
    padding: 0.85rem 1.15rem;
}

.team-match-actions svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.team-match-hero-image {
    display: grid;
    min-height: 370px;
    color: inherit;
}

.team-match-hero-image-frame {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #080808;
}

.team-match-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1.28);
    transform-origin: center;
}

.team-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 1rem;
    align-items: stretch;
}

.team-overview-panel {
    min-width: 0;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)), #080808;
}

.team-overview-panel h2 {
    margin: 0 0 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.team-next-content,
.team-training-list {
    display: grid;
    gap: 1rem;
}

.team-next-matchup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1.05rem;
    align-items: center;
    text-align: center;
    padding: 0.25rem 0 0.4rem;
}

.team-next-matchup > div {
    display: grid;
    justify-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.team-next-matchup > span {
    display: inline-grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    background: rgba(255, 255, 255, 0.04);
}

.team-next-logo {
    display: grid;
    place-items: center;
    width: clamp(84px, 9vw, 106px);
    height: clamp(84px, 9vw, 106px);
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.team-next-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-next-matchup strong {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.22;
    overflow-wrap: normal;
    word-break: normal;
}

.team-panel-highlight {
    margin: 0.2rem 0 0;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 900;
}

.team-panel-link {
    display: inline-flex;
    width: fit-content;
    color: #ffffff;
    font-weight: 900;
}

.team-panel-empty {
    display: grid;
    gap: 0.3rem;
    color: var(--muted);
}

.team-panel-empty strong {
    color: #ffffff;
}

.team-training-item {
    display: grid;
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 0.8rem;
    align-items: start;
}

.team-panel-icon {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    color: #ffffff;
}

.team-panel-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.team-training-item strong,
.team-training-item span,
.team-training-item small {
    display: block;
}

.team-training-item span,
.team-training-item small {
    color: var(--muted);
    line-height: 1.45;
}

.team-table-clickarea {
    display: block;
    color: inherit;
}

.team-table-overview .team-panel-link {
    margin-top: 0.6rem;
}

.team-table-mini--compact {
    margin-top: 0;
}

.team-table-mini--compact .team-table-mini-head,
.team-table-mini--compact .team-table-mini-row {
    grid-template-columns: 34px minmax(0, 1fr) 38px 42px;
}

.team-table-mini--compact .team-table-mini-row {
    padding: 0.58rem 0.6rem;
}

.team-coach-overview {
    padding: 1.35rem;
}

.team-coach-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.team-coach-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    min-width: 0;
    min-height: 124px;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
        #080808;
}

.team-coach-card img {
    width: 92px;
    height: 92px;
    border-radius: 8px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
}

.team-coach-card strong,
.team-coach-card span {
    display: block;
}

.team-coach-card span {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.25;
}

.team-coach-card strong {
    font-size: 1rem;
    line-height: 1.05;
}

.team-coach-card span {
    font-size: 0.92rem;
}

.team-coach-card .profile-contact-links.profile-contact-links--icons {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.55rem;
    margin-top: 0.45rem;
}

.team-coach-card .profile-contact-icon {
    width: 1.1rem;
    height: 1.1rem;
}

.team-coach-card .profile-contact-icon svg {
    width: 0.95rem;
    height: 0.95rem;
}

.has-trial-modal {
    overflow: hidden;
}

.trial-modal {
    position: fixed;
    inset: 0;
    z-index: 1900;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 2rem);
}

.trial-modal.is-open {
    display: flex;
}

.trial-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(8px);
}

.trial-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(88vh, 900px);
    overflow: auto;
    padding: clamp(1.1rem, 3vw, 1.6rem);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #090909;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.trial-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.trial-modal .member-form-head {
    padding-right: 2.6rem;
}

.team-main-stack {
    display: grid;
    gap: 0.8rem;
}

.team-sidebar {
    display: grid;
    gap: 1rem;
}

.team-sidebar .section-title {
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 1;
}

.contact-panel,
.match-panel,
.empty-state {
    padding: 1.4rem;
}

.list-clean {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.list-clean li + li {
    margin-top: 0.85rem;
}

.event-list {
    display: grid;
    gap: 0.85rem;
}

.event-item {
    display: grid;
    grid-template-columns: 108px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.event-date {
    padding: 0.95rem 0.65rem;
    border-radius: 18px;
    text-align: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.event-date strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
}

.event-meta {
    color: var(--muted);
    line-height: 1.65;
}

.page-hero {
    padding: 2rem;
}

.teams-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    gap: clamp(1rem, 3vw, 2.2rem);
    align-items: center;
    padding: clamp(1.35rem, 3vw, 2rem);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.teams-hero-stats {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.teams-hero-copy {
    min-width: 0;
    padding: 0;
}

.teams-hero-stats {
    padding: 1.55rem 1.65rem;
    align-self: center;
    min-width: 0;
}

.teams-hero-stats h2 {
    margin: 0 0 1.2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    line-height: 1;
    text-transform: uppercase;
}

.teams-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.teams-stat-item {
    display: grid;
    justify-items: center;
    gap: 0.35rem;
    min-width: 0;
    padding: 0.1rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.teams-stat-item:last-child {
    border-right: 0;
}

.teams-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.32rem;
    height: 1.32rem;
    color: var(--muted);
}

.teams-stat-icon svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.teams-stat-item strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.1rem, 3vw, 3.1rem);
    line-height: 0.95;
    overflow-wrap: anywhere;
}

.teams-stat-item span:last-child {
    color: var(--muted);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
}

.page-hero-title {
    margin: 0.8rem 0 0.55rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 0.95;
}

.page-hero p {
    max-width: 44rem;
    color: var(--muted);
    line-height: 1.75;
}

.teams-hero-copy .page-hero-title {
    margin-top: 0;
}

.teams-hero-copy p {
    max-width: 44rem;
    color: var(--muted);
    line-height: 1.75;
}

.teams-page .section {
    padding: clamp(1.15rem, 2vw, 1.65rem) 0;
}

.teams-spotlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.teams-spotlight-card {
    position: relative;
    min-height: 0;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #111111;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.teams-spotlight-card:hover,
.teams-overview-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.28);
}

.teams-spotlight-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.teams-spotlight-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.28) 38%, rgba(0, 0, 0, 0.9) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, transparent 58%);
}

.teams-spotlight-content {
    position: relative;
    z-index: 1;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
    padding: clamp(1.15rem, 2.5vw, 1.8rem);
}

.teams-card-kicker {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: 0.34rem 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.teams-spotlight-content h2 {
    margin: 0.55rem 0 0.35rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.35rem, 3.1vw, 3.15rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.teams-spotlight-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.teams-next-match {
    display: grid;
    gap: 0.32rem;
    padding: 0.85rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.teams-next-match span,
.teams-next-match small,
.teams-overview-body small {
    color: rgba(255, 255, 255, 0.72);
}

.teams-next-match span {
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.teams-next-match strong {
    font-size: 0.98rem;
    line-height: 1.35;
}

.teams-next-match small {
    line-height: 1.45;
}

.teams-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 46px;
    padding: 0.82rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: var(--accent);
    color: var(--bg);
    font-weight: 800;
}

.teams-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.teams-overview-card {
    min-width: 0;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.02));
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.teams-overview-image {
    display: block;
    aspect-ratio: 16 / 10;
    background: #121212;
    overflow: hidden;
}

.teams-overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teams-overview-body {
    min-width: 0;
    display: grid;
    gap: 0.5rem;
    padding: 1rem;
}

.teams-overview-body strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 0.95;
    letter-spacing: 0.03em;
    overflow-wrap: anywhere;
}

.teams-overview-body small {
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.table-shell {
    overflow-x: auto;
}

.site-table {
    width: 100%;
    border-collapse: collapse;
}

.site-table th,
.site-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.site-table th {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.team-banner {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 1rem;
    align-items: stretch;
}

.team-banner-copy,
.team-banner-visual {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.team-banner-copy {
    padding: 1.8rem;
}

.team-banner-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: rgba(255, 255, 255, 0.035);
}

.player-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.player-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.player-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    object-position: center center;
    background: rgba(255, 255, 255, 0.045);
}

.player-card-body {
    padding: 1rem;
}

.player-card-body strong {
    display: block;
    font-size: 1.02rem;
}

.player-card-body span,
.player-card-body small {
    color: var(--muted);
}

.player-stats-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.8rem;
}

.player-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    justify-content: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 0.78rem;
}

.player-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    background: rgba(255, 255, 255, 0.12);
}

.player-stat-icon svg {
    width: 0.92rem;
    height: 0.92rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.player-stat-icon img {
    display: block;
    width: 0.92rem;
    height: 0.92rem;
    max-width: none;
    aspect-ratio: auto;
    object-fit: contain;
    background: transparent;
}

.player-stat-pill.is-goals .player-stat-icon {
    background: #1f1f1f;
}

.player-stat-pill.is-yellow .player-stat-icon,
.player-stat-pill.is-yellow-red .player-stat-icon,
.player-stat-pill.is-red .player-stat-icon {
    width: 0.95rem;
    height: 1.2rem;
    border-radius: 0.15rem;
}

.player-stat-pill.is-yellow .player-stat-icon {
    background: #f3c623;
}

.player-stat-pill.is-yellow-red .player-stat-icon {
    background: linear-gradient(180deg, #f3c623 0 50%, #cf2027 50% 100%);
}

.player-stat-pill.is-red .player-stat-icon {
    background: #cf2027;
}

.roster-lower-section {
    padding-top: 0;
}

.roster-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 1rem;
    align-items: start;
}

.roster-main,
.roster-sidebar {
    min-width: 0;
}

.roster-section-head {
    margin-bottom: 1rem;
}

.roster-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1rem;
}

.roster-filter-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.62rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.roster-filter-button.is-active {
    border-color: #ffffff;
    background: #ffffff;
    color: #050505;
}

.roster-filter-button:disabled {
    cursor: not-allowed;
    opacity: 0.42;
}

.roster-player-grid {
    align-items: start;
}

.roster-player-card {
    min-width: 0;
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        #080808;
}

.player-card-image-link {
    display: block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.player-card-kicker {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    margin-bottom: 0.45rem;
}

.player-card-number {
    flex: 0 0 auto;
    color: #ffffff;
}

.player-card-position {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-name-link {
    display: inline-block;
    color: #ffffff;
}

.roster-sidebar {
    display: grid;
    gap: 1rem;
}

.roster-side-card {
    min-width: 0;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        #080808;
}

.roster-side-card h3 {
    margin: 0 0 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.85rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.roster-summary-list {
    display: grid;
    gap: 0;
    margin: 0;
}

.roster-summary-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.78rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.roster-summary-list div:first-child {
    padding-top: 0;
}

.roster-summary-list div:last-child {
    border-bottom: 0;
}

.roster-summary-list dt {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.roster-summary-list dd {
    margin: 0;
    color: #ffffff;
    font-weight: 900;
}

.roster-summary-list .is-total dt,
.roster-summary-list .is-total dd {
    color: #ffffff;
}

.roster-coach-list {
    display: grid;
    gap: 0.75rem;
}

.roster-coach-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
}

.roster-coach-item img {
    width: 58px;
    height: 58px;
    border-radius: 6px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
}

.roster-coach-item strong,
.roster-coach-item span {
    display: block;
}

.roster-coach-item span {
    color: var(--muted);
    font-size: 0.88rem;
}

.team-table-card {
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.team-table-card .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
}

.team-sidebar .team-table-card .section-title {
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 1;
}

.team-table-mini {
    display: grid;
    gap: 0.55rem;
    margin-top: 1rem;
}

.team-table-mini-head,
.team-table-mini-row {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) 48px 48px;
    gap: 0.5rem;
    align-items: center;
}

.team-table-mini-head {
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.team-table-mini-row {
    padding: 0.75rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
}

.team-table-mini-head span,
.team-table-mini-row span {
    min-width: 0;
}

.team-table-mini-head span:first-child,
.team-table-mini-row span:first-child,
.team-table-mini-head span:nth-child(3),
.team-table-mini-head span:nth-child(4),
.team-table-mini-row span:nth-child(3),
.team-table-mini-row span:nth-child(4) {
    text-align: center;
}

.team-table-mini-row span:nth-child(2) {
    overflow-wrap: anywhere;
    line-height: 1.25;
}

.team-table-mini-row.is-highlighted {
    background: rgba(255, 255, 255, 0.12);
}

.compact-note {
    margin: 1rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.coach-grid {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.coach-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coach-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    padding: 0.8rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
}

.coach-card img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 18px;
}

.coach-card strong {
    display: block;
}

.coach-card span {
    color: var(--muted);
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.profile-grid--coaches {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-coach-section {
    display: grid;
    gap: 1rem;
}

.profile-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.profile-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    object-position: center center;
    background: rgba(255, 255, 255, 0.045);
}

.profile-card-body {
    padding: 1rem;
    display: grid;
    gap: 0.45rem;
}

.profile-card-body strong {
    font-size: 1.05rem;
}

.profile-card-body span,
.profile-contact-links a {
    color: var(--muted);
}

.profile-contact-links {
    display: grid;
    gap: 0.25rem;
    margin-top: 0.3rem;
}

.profile-contact-links a {
    min-width: 0;
    overflow-wrap: anywhere;
    line-height: 1.35;
}

.profile-card-body .profile-contact-links.profile-contact-links--icons {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.45rem;
    margin-top: 0.1rem;
    width: auto;
}

.profile-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 1.12rem;
    height: 1.12rem;
    color: var(--muted);
    background: transparent;
    line-height: 1;
}

.profile-contact-icon svg {
    display: block;
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.profile-contact-icon:hover,
.profile-contact-icon:focus-visible {
    color: var(--accent);
}

.player-name-link {
    display: inline-block;
}

.player-name-link:hover strong {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.social-links a {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
}

.social-links a:hover {
    color: var(--bg);
    background: var(--accent);
}

.site-footer {
    padding: 2.4rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    background: rgba(0, 0, 0, 0.72);
}

.site-footer-inner {
    width: min(var(--max-width), calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    color: var(--muted);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1.2fr;
    gap: clamp(1.5rem, 5vw, 4.5rem);
    align-items: start;
}

.site-footer-column {
    min-width: 0;
}

.site-footer-brand,
.site-footer-heading {
    display: block;
    margin-bottom: 0.8rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--text);
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 0.5rem;
}

.footer-links a,
.footer-contact-item {
    color: rgba(244, 244, 244, 0.74);
    transition: color 0.22s ease;
}

.footer-links a:hover,
a.footer-contact-item:hover {
    color: #ffffff;
}

.footer-copy,
.footer-meta-line {
    margin: 0.35rem 0 0;
    color: var(--muted);
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.2rem;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--text);
}

.footer-social-links svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.footer-social-links svg rect,
.footer-social-links svg circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
}

.footer-social-links svg path {
    fill: currentColor;
}

.footer-contact-list {
    display: grid;
    gap: 0.52rem;
}

.footer-contact-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 0.55rem;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    margin-top: 0.16rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-newsletter-form {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.85rem;
}

.footer-newsletter-form input {
    width: 100%;
    min-height: 42px;
    padding: 0.75rem 0.95rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #242424;
    color: var(--text);
}

.filter-form input,
.filter-form select {
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #1b1b1b;
    color: var(--text);
}

.filter-form select,
.footer-newsletter-form input,
.filter-form input {
    appearance: none;
}

.filter-form select option {
    background: #1b1b1b;
    color: var(--text);
}

.footer-message {
    margin-top: 0.9rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--line);
}

.footer-message.is-success {
    background: rgba(70, 176, 107, 0.16);
}

.footer-message.is-error {
    background: rgba(207, 32, 39, 0.18);
}

.site-footer-bottom {
    padding: 0.95rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    color: rgba(244, 244, 244, 0.75);
    font-size: 0.86rem;
    text-align: center;
}

.filter-form {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.2rem;
}

.filter-form > * {
    flex: 1 1 220px;
}

.team-events-stack {
    display: grid;
    gap: 1rem;
}

.newsletter-preview-image {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 18px;
}

.newsletter-preview-body img {
    max-width: 100%;
    height: auto;
}

.legal-copy h2 {
    margin-top: 1.5rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
}

.stack-sm {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.empty-state {
    text-align: center;
}

.empty-state strong {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 1.15rem;
}

.content-card-image.is-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background:
        linear-gradient(180deg, rgba(248, 249, 250, 0.96), rgba(236, 240, 244, 0.98)),
        #eef2f5;
    box-shadow: inset 0 0 0 1px rgba(18, 27, 36, 0.08);
}

.content-card-image.is-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-partners {
    padding-top: 3rem;
}

.partner-strip-head {
    margin-bottom: 0.7rem;
}

.partner-strip-head .eyebrow {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 0.03em;
    color: #ffffff;
}

.partner-strip-head .eyebrow::before {
    display: none;
}

.partner-strip {
    display: flex;
    align-items: stretch;
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    scrollbar-width: none;
}

.partner-strip::-webkit-scrollbar {
    display: none;
}

.partner-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 168px;
    min-height: 106px;
    padding: 1.2rem 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        #080808;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 10px 26px rgba(0, 0, 0, 0.28);
    transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

a.partner-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.32);
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.12), transparent 64%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        #090909;
}

.partner-tile img {
    width: 100%;
    max-width: 142px;
    max-height: 58px;
    object-fit: contain;
    filter: grayscale(1) invert(1) contrast(1.15) brightness(1.6);
    mix-blend-mode: screen;
    opacity: 0.94;
}

.partner-tile--cta {
    flex: 0 0 225px;
    min-width: 190px;
    padding: 0.7rem;
}

.partner-tile--cta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 0.85rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;
}

.filter-bar {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 1.4rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.03);
    transition: 0.25s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
    color: var(--bg);
    background: var(--accent);
}

.map-embed-shell {
    margin-top: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.map-embed-frame {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.club-page {
    --club-card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
    background:
        radial-gradient(circle at 48% 0%, rgba(255, 255, 255, 0.05), transparent 24%),
        #020202;
}

.club-page .section {
    width: min(1180px, calc(100% - clamp(1.25rem, 4vw, 2.6rem)));
    padding: clamp(0.5rem, 1.5vw, 1rem) 0;
}

.club-hero-section {
    padding-top: clamp(1rem, 2.3vw, 2rem) !important;
}

.club-shell {
    width: 100%;
}

.club-card,
.club-hero-panel,
.club-stat-strip,
.club-map-frame {
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--radius-lg);
    background: var(--club-card-bg);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.club-hero-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 310px);
    gap: clamp(1.4rem, 5vw, 5rem);
    align-items: center;
    min-height: clamp(320px, 41vw, 500px);
    padding: clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 46%, rgba(255, 255, 255, 0.12), transparent 18%),
        linear-gradient(115deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.76) 58%, rgba(255, 255, 255, 0.035)),
        #050505;
}

.club-kicker {
    display: block;
    margin-bottom: 1.3rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
}

.club-page-title,
.club-section-title {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.club-page-title {
    max-width: 650px;
    font-size: clamp(3.4rem, 7vw, 6.7rem);
    line-height: 0.88;
}

.club-hero-copy p {
    max-width: 560px;
    margin: 1.35rem 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.55vw, 1.24rem);
    line-height: 1.65;
}

.club-hero-mark {
    display: grid;
    place-items: center;
}

.club-hero-mark img {
    width: min(100%, 280px);
    height: auto;
    aspect-ratio: 1;
    object-fit: contain;
    filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.48));
}

.club-stat-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 1rem;
    overflow: hidden;
}

.club-stat {
    display: grid;
    justify-items: center;
    gap: 0.35rem;
    min-width: 0;
    padding: clamp(1rem, 2.5vw, 1.45rem);
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.club-stat:last-child {
    border-right: 0;
}

.club-stat-icon,
.club-value span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.club-stat-icon {
    width: 2.25rem;
    height: 2.25rem;
}

.club-stat-icon svg,
.club-value svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;
}

.club-stat strong,
.club-value strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.35rem, 2.1vw, 1.85rem);
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.club-stat span:last-child,
.club-value p,
.club-section-head p,
.club-timeline-item p,
.club-campus-copy p {
    color: rgba(255, 255, 255, 0.68);
}

.club-stat span:last-child {
    font-size: 0.9rem;
    line-height: 1.35;
}

.club-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1rem;
    align-items: stretch;
}

.club-card {
    padding: clamp(1.1rem, 2.8vw, 1.65rem);
}

.club-section-title {
    font-size: clamp(2.25rem, 4.6vw, 4.05rem);
    line-height: 0.92;
}

.club-timeline {
    position: relative;
    display: grid;
    gap: 1.35rem;
    margin-top: 1.5rem;
    padding-left: 2.5rem;
}

.club-timeline::before {
    content: '';
    position: absolute;
    top: 0.28rem;
    bottom: 0.28rem;
    left: 0.72rem;
    width: 1px;
    background: rgba(255, 255, 255, 0.42);
}

.club-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 4.7rem minmax(0, 1fr);
    gap: 1rem;
}

.club-timeline-item::before {
    content: '';
    position: absolute;
    left: -2.08rem;
    top: 0.15rem;
    width: 0.82rem;
    height: 0.82rem;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #050505;
    box-shadow: 0 0 0 4px #050505;
}

.club-timeline-item strong,
.club-timeline-item h3 {
    color: #ffffff;
    font-weight: 800;
}

.club-timeline-item strong {
    font-size: 0.95rem;
}

.club-timeline-item h3 {
    margin: 0 0 0.22rem;
    font-size: 0.95rem;
}

.club-timeline-item p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.55;
}

.club-campus-card {
    position: relative;
    min-height: 470px;
    padding: 0;
    overflow: hidden;
    background: #070707;
}

.club-campus-copy {
    position: relative;
    z-index: 2;
    width: min(56%, 360px);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.club-campus-copy p {
    max-width: 220px;
    margin: 1.25rem 0 0;
    line-height: 1.55;
}

.club-campus-actions {
    display: grid;
    gap: 0.7rem;
    justify-items: start;
    margin-top: 1.5rem;
}

.club-campus-actions .btn {
    min-width: 140px;
    min-height: 44px;
    padding: 0.75rem 1rem;
}

.club-campus-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.62;
}

.club-campus-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.76) 42%, rgba(0, 0, 0, 0.12)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.75));
}

.club-map-frame {
    overflow: hidden;
}

.club-map-frame iframe {
    display: block;
    width: 100%;
    min-height: clamp(220px, 28vw, 330px);
    border: 0;
    filter: grayscale(0.18) contrast(1.05);
}

.club-values-grid,
.club-official-grid,
.club-partner-strip {
    display: grid;
    gap: 1rem;
}

.club-values-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 1.4rem;
}

.club-value {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
    min-width: 0;
    text-align: center;
}

.club-value span {
    width: 2.4rem;
    height: 2.4rem;
}

.club-value p {
    max-width: 190px;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
}

.club-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.club-section-head p {
    margin: 0.35rem 0 0;
}

.club-official-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.club-official-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
    min-width: 0;
    padding: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
}

.club-official-card img {
    width: 86px;
    height: 86px;
    border-radius: 14px;
    object-fit: cover;
    background: #121212;
}

.club-official-card strong,
.club-official-card span {
    display: block;
}

.club-official-card strong {
    font-weight: 800;
    line-height: 1.2;
}

.club-official-card span {
    margin-top: 0.22rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    line-height: 1.35;
}

.club-official-links {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    color: #ffffff;
}

.club-official-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    color: rgba(255, 255, 255, 0.74);
    transition: color 0.2s ease, transform 0.2s ease;
}

.club-official-links svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.club-official-links a:hover,
.club-official-links a:focus-visible {
    color: #ffffff;
    transform: translateY(-1px);
}

.club-partner-strip {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    align-items: center;
}

.club-partner-strip a,
.club-partner-strip span {
    display: grid;
    place-items: center;
    min-height: 76px;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
}

.club-partner-strip img {
    max-width: 150px;
    max-height: 46px;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .club-official-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .club-hero-panel,
    .club-story-grid {
        grid-template-columns: 1fr;
    }

    .club-hero-mark {
        order: -1;
        justify-content: start;
    }

    .club-hero-mark img {
        width: 160px;
    }

    .club-stat-strip,
    .club-values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .club-stat:nth-child(2) {
        border-right: 0;
    }

    .club-stat:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .club-campus-card {
        min-height: 420px;
    }

    .club-campus-copy {
        width: min(72%, 390px);
    }
}

@media (max-width: 680px) {
    .club-page .section {
        width: calc(100% - 1rem);
        padding-block: 0.5rem;
    }

    .club-hero-panel,
    .club-card {
        padding: 1rem;
    }

    .club-page-title {
        font-size: 3.35rem;
    }

    .club-section-title {
        font-size: 2.45rem;
    }

    .club-stat-strip,
    .club-values-grid,
    .club-official-grid,
    .club-partner-strip {
        grid-template-columns: 1fr;
    }

    .club-stat,
    .club-stat:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .club-stat:last-child {
        border-bottom: 0;
    }

    .club-timeline {
        padding-left: 2rem;
    }

    .club-timeline-item {
        grid-template-columns: 3.8rem minmax(0, 1fr);
        gap: 0.75rem;
    }

    .club-campus-card {
        min-height: 380px;
        padding: 0;
    }

    .club-campus-copy {
        width: 100%;
        padding: 1rem;
    }

    .club-campus-actions {
        max-width: 170px;
    }

    .club-campus-actions .btn,
    .club-section-head .btn {
        width: 100%;
    }

    .club-section-head {
        align-items: stretch;
        flex-direction: column;
    }

    .club-official-card {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .club-official-card img {
        width: 72px;
        height: 72px;
    }
}

@media (max-width: 1024px) {
    .hero-grid,
    .split-grid,
    .team-banner,
    .team-match-hero,
    .team-overview-grid,
    .roster-layout,
    .story-card,
    .team-page-layout {
        grid-template-columns: 1fr;
    }

    .card-grid.columns-3,
    .card-grid.columns-4,
    .player-grid,
    .profile-grid--coaches {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-coach-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .coach-grid-wide {
        grid-template-columns: 1fr;
    }

    .teams-spotlight-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-club-panel {
        min-height: 680px;
    }

    .hero-copy {
        min-height: 680px;
    }

    .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .metric:nth-child(2) {
        border-right: 0;
    }

    .metric:nth-child(n + 3) {
        padding-top: 1.1rem;
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-menu {
        position: absolute;
        top: calc(100% + 0.8rem);
        right: 1rem;
        left: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.8rem;
        border-radius: 24px;
        border: 1px solid var(--line);
        background: rgba(5, 5, 5, 0.98);
        box-shadow: var(--shadow);
    }

    .site-menu.is-open {
        display: flex;
    }

    .hero-metrics,
    .event-item {
        grid-template-columns: 1fr;
    }

    .metric,
    .metric:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .metric:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .section {
        padding: var(--section-y-mobile) 0;
    }

    .teams-page .section {
        padding: 1rem 0;
    }

    .site-nav {
        min-height: 76px;
    }

    .card-grid.columns-3,
    .card-grid.columns-4,
    .player-grid,
    .profile-grid--coaches {
        grid-template-columns: 1fr;
    }

    .teams-overview-grid {
        grid-template-columns: 1fr;
    }

    .team-match-hero-copy,
    .team-match-hero-image {
        min-height: auto;
    }

    .team-match-hero-copy {
        padding: 1.2rem;
    }

    .team-match-title {
        font-size: 3rem;
    }

    .team-match-actions .btn {
        width: 100%;
    }

    .team-match-hero-image img {
        max-height: 300px;
    }

    .team-overview-panel {
        padding: 1rem;
    }

    .roster-side-card {
        padding: 1rem;
    }

    .team-next-matchup {
        grid-template-columns: 1fr;
    }

    .team-next-matchup > span {
        line-height: 1;
    }

    .team-coach-list {
        grid-template-columns: 1fr;
    }

    .team-coach-card {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: auto;
        gap: 1rem;
    }

    .team-coach-card strong {
        font-size: 1.35rem;
    }

    .team-coach-card span {
        font-size: 1rem;
    }

    .teams-spotlight-card {
        aspect-ratio: 4 / 3;
    }

    .teams-spotlight-content h2 {
        font-size: clamp(2rem, 12vw, 2.7rem);
        white-space: normal;
    }

    .teams-card-button {
        width: 100%;
    }

    .story-copy,
    .content-card-body,
    .page-hero,
    .teams-hero-stats,
    .hero-copy {
        padding: 1.2rem;
    }

    .teams-hero {
        padding: 1.2rem;
    }
}

@media (max-width: 980px) {
    .teams-hero {
        grid-template-columns: 1fr;
    }

    .teams-hero-stats {
        align-self: stretch;
    }
}

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

    .teams-stat-item {
        grid-template-columns: 2rem minmax(0, 1fr);
        justify-items: start;
        align-items: center;
        padding: 0.85rem 0;
        text-align: left;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .teams-stat-item:last-child {
        border-bottom: 0;
    }

    .teams-stat-item strong,
    .teams-stat-item span:last-child {
        grid-column: 2;
    }
}

/* Mobile polish for the live Strato site. Keep this block last so it can tame
   older fixed desktop sizing without changing the page templates. */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
}

button,
input,
select,
textarea {
    font: inherit;
}

.section,
.site-footer-inner {
    width: min(var(--max-width), calc(100% - clamp(1.25rem, 5vw, 2.5rem)));
}

.site-nav {
    width: min(var(--hero-width), calc(100% - clamp(2.25rem, 4.8vw, 4.35rem)));
}

.section.hero {
    width: min(var(--hero-width), calc(100% - clamp(2.25rem, 4.8vw, 4.35rem)));
}

.site-brand,
.site-brand-copy,
.hero-copy,
.teams-hero-copy,
.teams-hero-stats,
.teams-stat-item,
.teams-spotlight-card,
.teams-spotlight-content,
.teams-overview-card,
.teams-overview-body,
.content-card,
.story-copy,
.team-banner-copy,
.match-panel,
.contact-panel,
.team-table-card,
.event-item > *,
.site-table th,
.site-table td {
    min-width: 0;
}

.section-title,
.page-hero-title,
.story-title,
.card-title,
.site-brand-copy strong,
.site-brand-copy span,
.card-copy,
.section-copy,
.teams-hero-copy p,
.teams-stat-item span,
.teams-spotlight-content p,
.teams-next-match strong,
.teams-next-match small,
.teams-overview-body strong,
.teams-overview-body small,
.compact-note,
.list-clean,
.event-meta {
    overflow-wrap: anywhere;
}

.btn,
.filter-chip,
.social-links a,
.site-menu a {
    min-height: 46px;
}

.site-menu a,
.btn {
    white-space: normal;
    text-align: center;
}

.table-shell {
    -webkit-overflow-scrolling: touch;
}

.site-table {
    min-width: 620px;
}

.map-embed-frame {
    min-height: clamp(300px, 55vh, 420px);
}

.partners-page .section {
    width: min(var(--max-width), calc(100% - clamp(1.25rem, 5vw, 2.5rem)));
}

.partners-page .partners-hero.section {
    width: min(var(--hero-width), calc(100% - clamp(2.25rem, 4.8vw, 4.35rem)));
}

.partners-hero {
    position: relative;
    min-height: 390px;
    margin-top: 2.5rem;
    padding: 2.65rem 5.4rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.35) 100%),
        var(--partners-hero-bg) center / cover no-repeat,
        #070707;
}

.partners-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(120deg, #000 0%, #000 28%, transparent 78%);
}

.partners-hero::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 2.3rem;
    width: min(18vw, 260px);
    height: 36px;
    background: rgba(255, 255, 255, 0.96);
    transform: skewX(-35deg) translateX(42px);
    opacity: 0.82;
}

.partners-hero-copy {
    position: relative;
    z-index: 1;
    min-width: 0;
    max-width: 520px;
}

.partners-hero-copy .eyebrow,
.partners-engagement-copy .eyebrow,
.partner-contact-copy .eyebrow,
.partner-pdf-card .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.partners-hero-copy .eyebrow::before,
.partners-engagement-copy .eyebrow::before,
.partner-contact-copy .eyebrow::before,
.partner-pdf-card .eyebrow::before {
    background: rgba(255, 255, 255, 0.82);
}

.partners-hero-title {
    margin: 0.65rem 0 1.35rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5.25rem;
    line-height: 0.92;
    letter-spacing: 0;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.partners-hero-copy p:last-child,
.partners-engagement-copy p,
.partner-contact-copy p,
.partner-card-body p {
    color: var(--muted);
    line-height: 1.65;
}

.partners-hero-copy p:last-child {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    overflow-wrap: anywhere;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
}

.partner-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 250px;
    padding: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
        #090909;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.partner-card-logo {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 78px;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
}

.partner-card-logo img {
    max-width: 170px;
    max-height: 58px;
    object-fit: contain;
}

.partner-card-body {
    display: grid;
    gap: 0.65rem;
}

.partner-card-body h3,
.partners-engagement-copy h2,
.partner-contact-copy h2,
.partner-pdf-card h2 {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: uppercase;
}

.partner-card-body h3 {
    font-size: 2rem;
}

.partner-card-body p {
    margin: 0;
    font-size: 0.94rem;
}

.partner-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    padding-top: 1rem;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
}

.partner-card-link span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.partner-card-link svg,
.partner-contact-links svg,
.partner-mail-button svg {
    flex: 0 0 auto;
    width: 1.05rem;
    height: 1.05rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.partners-engagement-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
    gap: 2rem;
    align-items: end;
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
        #080808;
}

.partners-engagement-copy h2,
.partner-contact-copy h2,
.partner-pdf-card h2 {
    font-size: 2.7rem;
}

.partners-engagement-copy p:last-child {
    max-width: 720px;
    margin: 0.8rem 0 0;
}

.partners-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.partners-benefits div {
    display: grid;
    gap: 0.65rem;
    min-width: 0;
}

.partners-benefits span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
}

.partners-benefits svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.partners-benefits strong {
    line-height: 1.25;
}

.partners-contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 1rem;
}

.partner-contact-card,
.partner-pdf-card {
    min-width: 0;
    border-radius: 8px;
}

.partner-contact-card {
    display: grid;
    grid-template-columns: 154px minmax(0, 1fr);
    gap: 1.35rem;
    align-items: center;
    padding: 1.2rem;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
        #080808;
}

.partner-contact-media {
    display: grid;
    place-items: center;
    width: 154px;
    height: 154px;
    overflow: hidden;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(210, 214, 220, 0.96)),
        #ffffff;
    color: #080808;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.4rem;
    line-height: 1;
}

.partner-contact-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-contact-copy p {
    margin: 0.25rem 0 0;
    font-size: 1.04rem;
}

.partner-contact-copy h2 {
    font-size: 3.1rem;
}

.partner-contact-links {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.95rem;
}

.partner-contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    min-width: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.04rem;
}

.partner-contact-links span {
    overflow-wrap: anywhere;
}

.partner-mail-button,
.partner-pdf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 48px;
    border-radius: 8px;
    font-weight: 900;
}

.partner-mail-button {
    width: min(100%, 260px);
    margin-top: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
}

.partner-pdf-card {
    display: grid;
    gap: 0.85rem;
    align-content: space-between;
    padding: 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
        #080808;
}

.partner-pdf-card .eyebrow,
.partner-pdf-card .eyebrow::before {
    color: #ffffff;
}

.partner-pdf-card .eyebrow::before {
    background: #ffffff;
}

.partner-pdf-card h2 {
    max-width: 280px;
    font-size: 2.35rem;
}

.partner-pdf-icon {
    justify-self: end;
    width: 62px;
    height: 62px;
    fill: none;
    stroke: #ffffff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.partner-pdf-button {
    width: 100%;
    background: #ffffff;
    color: #070707;
    text-align: center;
}

.partner-pdf-button.is-disabled {
    opacity: 0.72;
}

@media (max-width: 1320px) {
    .site-menu {
        gap: 0.65rem;
    }

    .site-menu a {
        padding-inline: 1rem;
    }
}

@media (max-width: 1100px) {
    .partners-grid,
    .partners-engagement-card,
    .partners-contact-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partners-engagement-card {
        align-items: start;
    }
}

@media (max-width: 820px) {
    .partners-page .partners-hero.section {
        width: min(var(--hero-width), calc(100% - 1.25rem));
    }

    .partners-hero {
        min-height: auto;
        margin-top: 1.25rem;
        padding: 2rem 1.35rem 4.8rem;
    }

    .partners-hero-copy {
        max-width: 340px;
    }

    .partners-hero::after {
        width: 180px;
        height: 28px;
        bottom: 1.45rem;
    }

    .partners-hero-title {
        font-size: 3.05rem;
    }

    .partners-grid,
    .partners-engagement-card,
    .partners-benefits,
    .partners-contact-section,
    .partner-contact-card {
        grid-template-columns: 1fr;
    }

    .partner-contact-media {
        width: 118px;
        height: 118px;
    }

    .partner-mail-button {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .partners-hero-copy {
        max-width: 100%;
    }

    .partners-hero-title {
        font-size: 2.65rem;
    }

    .partners-engagement-copy h2,
    .partner-contact-copy h2,
    .partner-pdf-card h2 {
        font-size: 2.25rem;
    }
}

.site-menu a.is-cta {
    background: var(--accent);
    color: var(--bg);
}

.member-page .section {
    width: min(var(--max-width), calc(100% - clamp(1.25rem, 5vw, 2.5rem)));
}

.member-page .member-hero.section {
    width: min(var(--hero-width), calc(100% - clamp(2.25rem, 4.8vw, 4.35rem)));
}

.member-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
    gap: clamp(1.2rem, 4vw, 3rem);
    align-items: center;
    min-height: 340px;
    margin-top: 2.5rem;
    padding: clamp(1.75rem, 4vw, 3rem) clamp(2rem, 7vw, 5.4rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.76) 42%, rgba(0, 0, 0, 0.45) 100%),
        var(--member-hero-bg) center / cover no-repeat,
        #070707;
}

.member-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(120deg, transparent 0%, #000 32%, transparent 100%);
}

.member-hero-copy,
.member-hero-mark {
    position: relative;
    z-index: 1;
}

.member-hero-title {
    max-width: 660px;
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 0.88;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.member-hero p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.22rem;
    line-height: 1.65;
}

.member-hero-mark {
    justify-self: center;
    width: min(100%, 230px);
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.member-hero-mark img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.58));
}

.member-form-section {
    padding-top: 3rem;
}

.member-form-card {
    width: min(920px, 100%);
    margin: 0 auto;
    position: relative;
    padding: clamp(1.25rem, 4vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        #101010;
    box-shadow: var(--shadow);
}

.member-form-head {
    margin-bottom: 1.2rem;
}

.member-form-intro {
    max-width: 620px;
    margin: 0.45rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.member-request-form [hidden] {
    display: none !important;
}

.required-star {
    color: var(--accent);
}

.member-request-form {
    display: grid;
    gap: 1rem;
}

.member-form-type {
    display: grid;
    gap: 0.45rem;
}

.member-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.member-request-form label {
    display: grid;
    gap: 0.45rem;
    min-width: 0;
}

.member-request-form label span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 800;
}

.member-request-form input,
.member-request-form select,
.member-request-form textarea {
    width: 100%;
    min-height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.24);
    color: var(--text);
    padding: 0.95rem 1rem;
    outline: none;
}

.member-request-form textarea {
    min-height: 148px;
    resize: vertical;
}

.member-request-form input:focus,
.member-request-form select:focus,
.member-request-form textarea:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.member-request-form select option {
    color: #050505;
}

.member-field-wide {
    grid-column: 1 / -1;
}

.member-submit {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: var(--bg);
    font-weight: 900;
    cursor: pointer;
}

.member-submit svg {
    position: absolute;
    right: 1.2rem;
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.member-form-note,
.member-section-note {
    margin: 0;
    color: var(--muted);
    text-align: center;
    font-size: 0.9rem;
}

.member-message {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.member-message.is-success {
    border-color: rgba(108, 214, 126, 0.45);
    background: rgba(108, 214, 126, 0.1);
}

.member-message.is-error {
    border-color: rgba(255, 77, 79, 0.5);
    background: rgba(255, 77, 79, 0.1);
}

.member-message.is-info {
    border-color: #ffb02e;
    background: #ffd166;
    color: #111111;
    font-weight: 800;
}

.trial-stop-message {
    margin: 0;
}

.member-process-card {
    padding: clamp(1.25rem, 4vw, 2rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    overflow: hidden;
}

.member-process-card .member-section-note {
    margin-top: 1.4rem;
}

.member-process-card .eyebrow::before {
    display: none;
}

.member-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.member-steps article {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.member-steps strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    background: #101010;
    font-size: 1.35rem;
}

.member-steps h3,
.member-benefits h3,
.member-team-card h3 {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    line-height: 0.95;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.member-steps p,
.member-benefits p,
.member-team-card p,
.member-faq-list p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.member-benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.member-benefits article,
.member-team-card,
.member-faq-list details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.member-benefits article {
    display: grid;
    gap: 0.8rem;
    padding: 1.25rem;
}

.member-benefits span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.member-benefits svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.member-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.member-team-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.member-team-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #151515;
}

.member-team-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
}

.member-team-actions {
    margin-top: auto;
}

.member-team-actions .btn {
    width: 100%;
}

.member-faq-list {
    display: grid;
    gap: 0.75rem;
}

.member-faq-list details {
    overflow: hidden;
}

.member-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 62px;
    padding: 0.95rem 1.1rem;
    cursor: pointer;
    list-style: none;
    font-weight: 800;
}

.member-faq-list summary::-webkit-details-marker {
    display: none;
}

.member-faq-list summary strong {
    flex: 0 0 auto;
    font-size: 1.25rem;
}

.member-faq-list details[open] summary strong {
    transform: rotate(45deg);
}

.member-faq-list p {
    padding: 0 1.1rem 1.1rem;
}

@media (max-width: 1024px) {
    .member-hero,
    .member-steps,
    .member-benefits,
    .member-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .member-hero {
        min-height: 500px;
    }
}

@media (max-width: 820px) {
    .member-page .member-hero.section {
        width: min(var(--hero-width), calc(100% - 1.25rem));
    }

    .member-hero,
    .member-steps,
    .member-benefits,
    .member-team-grid,
    .member-form-grid {
        grid-template-columns: 1fr;
    }

    .member-hero {
        margin-top: 1.25rem;
        min-height: auto;
    }

    .member-hero-mark {
        width: min(220px, 70%);
    }

}

@media (max-width: 1100px) {
    .site-nav {
        gap: 1rem;
    }

    .site-brand-copy strong {
        font-size: 1.65rem;
    }

    .site-menu a {
        padding-inline: 0.85rem;
    }

    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .site-header {
        position: sticky;
    }

    .site-nav {
        position: relative;
        min-height: 72px;
    }

    .site-brand {
        gap: 0.75rem;
        max-width: calc(100% - 62px);
    }

    .site-brand-mark {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
    }

    .site-brand-copy strong {
        font-size: 1.45rem;
        line-height: 1;
        letter-spacing: 0.03em;
    }

    .site-brand-copy span {
        display: block;
        max-width: 100%;
        font-size: 0.78rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-toggle {
        flex: 0 0 48px;
        position: relative;
        font-size: 0;
        cursor: pointer;
    }

    .nav-toggle::before,
    .nav-toggle::after {
        content: '';
        position: absolute;
        left: 14px;
        top: 20px;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        box-shadow: 0 6px 0 currentColor;
    }

    .nav-toggle::after {
        top: 28px;
        transform: none;
        box-shadow: none;
    }

    .site-menu {
        top: calc(100% + 0.5rem);
        right: 0;
        left: 0;
        gap: 0.35rem;
        max-height: calc(100vh - 92px);
        overflow-y: auto;
        border-radius: 20px;
    }

    .site-menu a {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1rem;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.04);
    }

    .section {
        padding: 2.6rem 0;
    }

    .hero {
        padding-top: 1.4rem;
    }

    .hero-grid {
        gap: 1rem;
    }

    .hero-title {
        font-size: 3.1rem;
        line-height: 0.95;
    }

    .section-title {
        font-size: 2.55rem;
        line-height: 0.98;
    }

    .page-hero-title {
        font-size: 3rem;
    }

    .story-title {
        font-size: 2.6rem;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-head > .btn {
        align-self: stretch;
    }

    .hero-visual {
        min-height: 320px;
    }

    .hero-club-panel {
        min-height: 640px;
    }

    .hero-visual-overlay {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-end;
    }

    .visual-chip {
        max-width: 100%;
    }

    .event-item {
        align-items: stretch;
    }

    .event-date {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 0.45rem;
    }

    .event-item .page-actions {
        margin-top: 0;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.65rem;
    }
}

@media (max-width: 640px) {
    :root {
        --radius-xl: 22px;
        --radius-lg: 18px;
    }

    .section {
        padding: var(--section-y-mobile) 0;
    }

    .site-nav,
    .section,
    .site-footer-inner {
        width: calc(100% - 1.25rem);
    }

    .site-brand-copy strong {
        font-size: 1.28rem;
    }

    .site-brand-copy span {
        display: none;
    }

    .hero-copy,
    .teams-hero-stats,
    .story-copy,
    .content-card-body,
    .team-banner-copy,
    .page-hero,
    .contact-panel,
    .match-panel,
    .team-table-card,
    .empty-state {
        padding: 1rem;
    }

    .hero-title {
        margin-top: 0.8rem;
        font-size: 3.2rem;
    }

    .hero-text,
    .section-copy,
    .card-copy,
    .teams-hero-copy p,
    .page-hero p {
        font-size: 0.98rem;
        line-height: 1.65;
    }

    .eyebrow {
        gap: 0.5rem;
        font-size: 0.73rem;
        letter-spacing: 0.12em;
    }

    .eyebrow::before {
        width: 24px;
    }

    .hero-actions,
    .page-actions,
    .story-actions,
    .filter-form,
    .stack-sm,
    .social-links {
        gap: 0.6rem;
    }

    .hero-actions .btn,
    .page-actions .btn,
    .story-actions .btn,
    .footer-newsletter-form .btn,
    .filter-form .btn,
    .social-links a {
        width: 100%;
    }

    .btn {
        min-height: 50px;
        padding: 0.85rem 1rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 1rem;
    }

    .metric {
        min-height: auto;
        padding: 0.8rem 0;
        text-align: left;
    }

    .metric:first-child {
        padding-left: 0;
    }

    .metric strong {
        font-size: 1.35rem;
    }

    .metric span {
        max-width: none;
        font-size: 0.86rem;
    }

    .hero-visual {
        min-height: 260px;
    }

    .hero-club-panel {
        min-height: 590px;
        padding: 1.35rem;
    }

    .club-hero-logo img {
        width: 160px;
    }

    .club-hero-facts {
        gap: 1.25rem;
    }

    .club-hero-fact {
        grid-template-columns: 2.25rem minmax(0, 1fr);
        gap: 0.75rem;
    }

    .club-hero-icon {
        width: 1.65rem;
        height: 1.65rem;
    }

    .club-hero-icon svg {
        width: 1.32rem;
        height: 1.32rem;
    }

    .club-hero-fact strong {
        font-size: 0.95rem;
    }

    .club-hero-fact span {
        font-size: 0.92rem;
    }

    .content-card-image {
        height: 190px;
    }

    .card-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .page-hero-title,
    .story-title {
        font-size: 2.45rem;
    }

    .team-banner-visual {
        min-height: 230px;
    }

    .coach-card {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .coach-card img {
        width: 58px;
        height: 58px;
        border-radius: 14px;
    }

    .team-table-mini-head,
    .team-table-mini-row {
        grid-template-columns: 34px minmax(0, 1fr) 38px 42px;
        gap: 0.35rem;
        font-size: 0.86rem;
    }

    .team-table-mini-head {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .filter-chip {
        flex: 1 1 calc(50% - 0.35rem);
        padding-inline: 0.75rem;
    }

    .roster-filter-button {
        flex: 1 1 calc(50% - 0.35rem);
    }

    .footer-links {
        display: grid;
        gap: 0.55rem;
    }
}

@media (max-width: 420px) {
    .site-nav,
    .section,
    .site-footer-inner {
        width: calc(100% - 1rem);
    }

    .site-brand-mark {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .site-brand-copy strong {
        font-size: 1.12rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .section-title,
    .page-hero-title,
    .story-title {
        font-size: 2.1rem;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .filter-chip {
        flex-basis: 100%;
    }

    .roster-filter-button {
        flex-basis: 100%;
    }
}

.agenda-page .section {
    width: min(1060px, calc(100% - clamp(1.25rem, 5vw, 2.5rem)));
}

.agenda-hero-section {
    padding-top: 2.4rem;
    padding-bottom: 1.25rem;
}

.agenda-section {
    padding-top: 0;
}

.agenda-hero {
    min-height: 405px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.45rem, 4vw, 2.45rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72) 46%, rgba(0, 0, 0, 0.22)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(5, 5, 5, 0.52)),
        var(--agenda-hero-bg) center / cover no-repeat,
        #050505;
}

.agenda-hero .page-hero-title {
    margin: 0.65rem 0 0.45rem;
}

.agenda-hero p {
    max-width: 34rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
}

.agenda-filter-form {
    align-items: center;
    gap: 0.55rem;
    margin: 1.45rem 0 0;
    padding: 0;
    border-bottom: 0;
}

.agenda-filter-form > * {
    flex: 0 1 auto;
}

.agenda-filter-form select {
    width: auto;
    min-width: 142px;
    max-width: 215px;
    min-height: 42px;
    padding: 0.68rem 1rem;
    border-radius: 999px;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.96);
    color: #090909;
    font-size: 0.9rem;
    font-weight: 700;
}

.agenda-filter-form select option {
    color: #090909;
    background: #ffffff;
}

.agenda-filter-form .btn {
    min-height: 42px;
    border-radius: 999px;
    padding: 0.68rem 1.05rem;
    font-size: 0.9rem;
}

.agenda-controls {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px 44px;
    gap: 0.65rem;
    align-items: stretch;
    margin-bottom: 1.45rem;
}

.agenda-arrow,
.agenda-calendar-toggle,
.agenda-calendar-head button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.agenda-arrow,
.agenda-calendar-toggle {
    width: 44px;
    min-height: 64px;
    border-radius: 8px;
    font-size: 1.35rem;
}

.agenda-arrow:hover,
.agenda-calendar-toggle:hover,
.agenda-calendar-head button:hover {
    background: #ffffff;
    color: #050505;
    border-color: #ffffff;
}

.agenda-date-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(78px, 1fr);
    gap: 0.65rem;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding-bottom: 0.2rem;
    cursor: grab;
    user-select: none;
}

.agenda-date-rail::-webkit-scrollbar {
    display: none;
}

.agenda-date-rail.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.agenda-date-rail.is-empty {
    display: flex;
    align-items: center;
    padding: 0.9rem 1rem;
    border: 1px dashed var(--line);
    border-radius: 8px;
    color: var(--muted);
}

.agenda-date-chip {
    min-height: 64px;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    text-align: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.agenda-date-chip span,
.agenda-date-chip strong {
    display: block;
}

.agenda-date-chip span {
    margin-bottom: 0.22rem;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
}

.agenda-date-chip strong {
    font-size: 0.92rem;
}

.agenda-date-chip.is-active,
.agenda-date-chip:hover {
    background: #ffffff;
    color: #050505;
    border-color: #ffffff;
}

.agenda-date-chip.is-active span,
.agenda-date-chip:hover span {
    color: rgba(5, 5, 5, 0.72);
}

.agenda-calendar-wrap {
    position: relative;
}

.agenda-calendar-toggle span {
    width: 18px;
    height: 18px;
    display: block;
    border: 2px solid currentColor;
    border-radius: 3px;
    position: relative;
}

.agenda-calendar-toggle span::before,
.agenda-calendar-toggle span::after {
    content: '';
    position: absolute;
    left: 3px;
    right: 3px;
    height: 2px;
    background: currentColor;
}

.agenda-calendar-toggle span::before {
    top: 3px;
}

.agenda-calendar-toggle span::after {
    top: 8px;
}

.agenda-calendar {
    position: absolute;
    z-index: 20;
    top: calc(100% + 0.65rem);
    right: 0;
    width: min(360px, calc(100vw - 2rem));
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #080808;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58);
}

.agenda-calendar-head {
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    gap: 0.65rem;
    align-items: center;
    margin-bottom: 1.2rem;
}

.agenda-calendar-head strong {
    text-align: center;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.agenda-calendar-head button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.agenda-calendar-weekdays,
.agenda-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.35rem;
}

.agenda-calendar-weekdays {
    margin-bottom: 0.55rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.66rem;
    font-weight: 800;
    text-align: center;
}

.agenda-calendar-day {
    position: relative;
    min-height: 38px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 800;
    cursor: pointer;
}

.agenda-calendar-day.is-muted {
    color: rgba(255, 255, 255, 0.28);
}

.agenda-calendar-day.is-selected {
    background: #ffffff;
    color: #050505;
}

.agenda-calendar-day.has-items::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    transform: translateX(-50%);
}

.agenda-all-actions {
    display: flex;
    justify-content: flex-end;
    margin: -0.55rem 0 1.45rem;
}

.agenda-all-button {
    min-height: 44px;
    border-radius: 8px;
    padding-inline: 1.15rem;
}

.agenda-all-button.is-active {
    background: #ffffff;
    color: #050505;
    border-color: #ffffff;
}

.agenda-selected-head {
    margin-bottom: 1rem;
}

.agenda-selected-head .section-title {
    margin: 0.45rem 0 0;
}

.agenda-days,
.agenda-day,
.agenda-block {
    display: grid;
    gap: 1rem;
}

.agenda-day[hidden],
.agenda-empty[hidden] {
    display: none !important;
}

.agenda-block + .agenda-block {
    margin-top: 1.35rem;
}

.agenda-block-title {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    letter-spacing: 0.04em;
}

.agenda-match-grid,
.agenda-event-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.agenda-match-card,
.agenda-event-card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
        #0b0b0b;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.agenda-match-card {
    display: grid;
    gap: 0.85rem;
    padding: 1rem;
}

.agenda-league-label {
    justify-self: center;
    max-width: 100%;
    padding: 0.24rem 0.58rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.64rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    overflow-wrap: anywhere;
}

.agenda-card-meta,
.agenda-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.agenda-card-meta span:last-child {
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.86);
}

.agenda-card-meta--match {
    justify-content: center;
    text-align: center;
}

.agenda-matchup {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
    gap: 0.85rem;
    align-items: center;
}

.agenda-team {
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 0.65rem;
    text-align: center;
}

.agenda-team strong {
    width: 100%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    line-height: 1;
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
}

.agenda-logo,
.agenda-event-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.agenda-logo {
    width: 64px;
    height: 64px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.agenda-event-icon {
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.agenda-logo img,
.agenda-event-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.agenda-score {
    min-height: 76px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 0.18rem;
    padding: 0.55rem 0.35rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    text-align: center;
}

.agenda-score strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.65rem;
    line-height: 1;
}

.agenda-score span {
    color: var(--muted);
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
}

.agenda-card-foot {
    justify-content: flex-start;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.76rem;
}

.agenda-card-foot a {
    margin-left: auto;
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.22em;
}

.agenda-card-foot .agenda-map-link {
    margin-left: 0;
}

.agenda-event-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    padding: 1rem;
}

.agenda-event-icon {
    width: 58px;
    height: 58px;
    padding: 0.5rem;
}

.agenda-event-card .card-title {
    margin-top: 0.65rem;
    font-size: 1.75rem;
}

.agenda-empty {
    margin-top: 1rem;
}

.agenda-club-events {
    display: grid;
    gap: 1rem;
    margin-top: 3.2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.agenda-club-events-head {
    display: grid;
    gap: 0.45rem;
}

.agenda-club-event-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.agenda-club-event-card {
    min-height: 150px;
}

.agenda-club-event-icon {
    border: 0;
    border-radius: 0;
    background: transparent;
}

@media (max-width: 860px) {
    .agenda-event-grid,
    .agenda-club-event-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .agenda-hero {
        min-height: 360px;
    }

    .agenda-filter-form {
        display: flex;
        align-items: center;
    }

    .agenda-filter-form > *,
    .agenda-filter-form .btn {
        width: auto;
    }

    .agenda-controls {
        grid-template-columns: 40px minmax(0, 1fr) 40px 40px;
        gap: 0.45rem;
    }

    .agenda-arrow,
    .agenda-calendar-toggle {
        width: 40px;
        min-height: 58px;
    }

    .agenda-date-rail {
        grid-auto-columns: 72px;
    }

    .agenda-date-chip {
        min-height: 58px;
        padding-inline: 0.55rem;
    }

    .agenda-calendar {
        right: -40px;
        width: calc(100vw - 1.25rem);
        padding: 1rem;
    }

    .agenda-all-actions {
        justify-content: stretch;
        margin-top: -0.25rem;
    }

    .agenda-all-button {
        width: 100%;
    }

    .teams-hero {
        padding: 1rem;
    }

    .agenda-match-grid {
        grid-template-columns: 1fr;
    }

    .agenda-match-card {
        padding: 0.9rem;
    }

    .agenda-matchup {
        grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr);
        gap: 0.65rem;
    }

    .agenda-logo {
        width: 52px;
        height: 52px;
    }

    .agenda-team strong {
        font-size: 1.08rem;
    }

    .agenda-score {
        min-height: 64px;
    }

    .agenda-score strong {
        font-size: 1.35rem;
    }
}

@media (max-width: 420px) {
    .agenda-matchup {
        grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
        gap: 0.45rem;
    }

    .agenda-logo {
        width: 48px;
        height: 48px;
    }

    .agenda-team strong {
        font-size: 1rem;
    }

    .agenda-score {
        min-height: 60px;
    }
}

.player-profile-page {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 22rem), var(--bg);
}

.player-profile-section {
    display: grid;
    gap: 1rem;
    padding-top: 2.4rem;
}

.player-profile-hero {
    display: grid;
    grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
    gap: clamp(1.2rem, 4vw, 3.4rem);
    align-items: center;
}

.player-profile-card {
    position: relative;
    min-height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)), #111111;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
}

.player-profile-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid rgba(230, 91, 151, 0.7);
    border-radius: inherit;
    pointer-events: none;
}

.player-profile-card-image {
    position: absolute;
    inset: 0.65rem;
    width: calc(100% - 1.3rem);
    height: calc(100% - 1.3rem);
    object-fit: contain;
    object-position: center center;
}

.player-profile-kicker {
    margin: 0 0 0.9rem;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.player-profile-title {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.7rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 6rem;
    line-height: 0.88;
    letter-spacing: 0;
    text-transform: uppercase;
}

.player-profile-title span {
    font-size: 2.25rem;
    color: #e65b97;
}

.player-profile-facts {
    display: grid;
    gap: 0.78rem;
    margin: 1.8rem 0 0;
}

.player-profile-facts div {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
}

.player-profile-facts dt {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

.player-profile-facts dd {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
}

.player-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.65rem;
}

.btn-share svg {
    flex: 0 0 auto;
}

.player-profile-stat-card,
.player-profile-panel {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)), rgba(8, 8, 8, 0.92);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.player-profile-stat-card--compact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.7rem;
}

.player-profile-stat {
    min-width: 0;
    padding: 1.5rem 1.1rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.player-profile-stat:last-child {
    border-right: 0;
}

.player-profile-stat strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.2rem;
    line-height: 0.9;
    color: #ffffff;
}

.player-profile-stat span {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.player-profile-stat.is-yellow strong {
    color: #f1d556;
}

.player-profile-stat.is-red strong {
    color: #f06d75;
}

.player-profile-season {
    padding: 1.25rem 1.4rem 1.45rem;
}

.player-profile-season h2,
.player-profile-panel h2 {
    margin: 0 0 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.player-profile-season-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.player-profile-lower {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 1rem;
}

.player-profile-lower.is-single {
    grid-template-columns: 1fr;
}

.player-profile-panel {
    padding: 1.4rem;
}

.player-profile-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.player-profile-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.player-profile-gallery-grid a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    cursor: zoom-in;
}

.player-profile-gallery-grid img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.player-profile-gallery-grid a:hover img {
    transform: scale(1.04);
}

.has-player-lightbox {
    overflow: hidden;
}

.player-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(0, 0, 0, 0.9);
}

.player-lightbox.is-open {
    display: flex;
}

.player-lightbox figure {
    width: min(100%, 1180px);
    margin: 0;
    display: grid;
    gap: 0.8rem;
    justify-items: center;
}

.player-lightbox img {
    max-width: 100%;
    max-height: min(78vh, 820px);
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.55);
}

.player-lightbox figcaption {
    min-height: 1.2rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.player-lightbox-close,
.player-lightbox-nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: #fff;
    background: rgba(12, 12, 12, 0.82);
    cursor: pointer;
}

.player-lightbox-close {
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    line-height: 1;
}

.player-lightbox-nav {
    top: 50%;
    width: 52px;
    height: 52px;
    transform: translateY(-50%);
    font-size: 2.6rem;
    line-height: 0.8;
}

.player-lightbox-nav--prev {
    left: 1rem;
}

.player-lightbox-nav--next {
    right: 1rem;
}

.player-lightbox-close:hover,
.player-lightbox-nav:hover {
    background: #ffffff;
    color: #050505;
}

.player-profile-teammate-list {
    width: 100%;
    min-width: 0;
    display: flex;
    gap: 1rem;
    margin-inline: -0.15rem;
    padding: 0.15rem 0.15rem 0.4rem;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
    cursor: grab;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.player-profile-teammate-list::-webkit-scrollbar {
    display: none;
}

.player-profile-teammate-list.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.player-profile-teammate {
    flex: 0 0 clamp(128px, 15vw, 164px);
    min-width: 0;
    display: grid;
    justify-items: center;
    gap: 0.45rem;
    text-align: center;
    scroll-snap-align: start;
    user-select: none;
    -webkit-user-drag: none;
}

.player-profile-teammate img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    object-fit: contain;
    object-position: center center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    -webkit-user-drag: none;
}

.player-profile-teammate span {
    max-width: 100%;
    overflow: hidden;
    color: #ffffff;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.player-profile-teammate small {
    color: var(--muted);
}

@media (max-width: 1024px) {
    .player-profile-hero,
    .player-profile-lower {
        grid-template-columns: 1fr;
    }

    .player-profile-season-grid,
    .player-profile-teammate-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .player-profile-card {
        min-height: 600px;
        max-width: 460px;
    }

    .player-profile-title {
        font-size: 4.8rem;
    }
}

@media (max-width: 640px) {
    .player-profile-section {
        gap: 0.8rem;
        padding-top: 1.25rem;
    }

    .player-profile-card {
        min-height: 480px;
        border-radius: 14px;
    }

    .player-profile-title {
        font-size: 3.85rem;
    }

    .player-profile-facts div {
        grid-template-columns: 1fr;
        gap: 0.2rem;
        padding-bottom: 0.7rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .player-profile-stat-card--compact,
    .player-profile-season-grid,
    .player-profile-gallery-grid,
    .player-profile-teammate-list {
        grid-template-columns: 1fr;
    }

    .player-profile-stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .player-profile-stat:last-child {
        border-bottom: 0;
    }

    .player-profile-actions .btn {
        width: 100%;
    }

    .player-lightbox {
        padding: 4.5rem 0.8rem 1.5rem;
    }

    .player-lightbox-nav {
        top: auto;
        bottom: 1rem;
        width: 46px;
        height: 46px;
        transform: none;
    }
}
