/* Unations matchday chrome and homepage */

:root {
    --club-red: #da020e;
    --club-red-deep: #9e0010;
    --club-ink: #111111;
    --club-muted: #5c5c5c;
    --club-line: #e6e6e6;
    --club-mist: #f3f3f3;
    --club-paper: #ffffff;
    --club-header: 118px;
}

body.is-home {
    background: var(--club-paper) !important;
    color: var(--club-ink) !important;
}

.club-header,
.club-footer,
.club-menu,
.club-home {
    font-family: Barlow, "Segoe UI", sans-serif;
}

.club-display,
.club-hero-title,
.club-nav-link,
.club-brand-name,
.club-menu-link,
.club-feature-title,
.club-player-name,
.club-video-title,
.club-ground-title,
.club-score-num {
    font-family: "Barlow Condensed", Barlow, sans-serif;
}

/* ── Header ── */
.club-header {
    background: #070707;
    z-index: 1030;
}

.club-sponsorbar {
    background:
        repeating-linear-gradient(-55deg, rgba(255, 255, 255, 0.045) 0 10px, transparent 10px 20px),
        var(--club-red);
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.club-sponsorbar-track {
    max-width: 1240px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.club-sponsorbar-track::-webkit-scrollbar {
    display: none;
}

.club-sponsor {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 12px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 2px;
}

.club-sponsor img {
    height: 20px;
    width: auto;
    max-width: 92px;
    object-fit: contain;
    display: block;
}

.club-nav {
    max-width: 1240px;
    margin: 0 auto;
    min-height: 72px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.club-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff !important;
    flex: 0 0 auto;
}

.club-brand img,
.club-footer-brand img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    background: #111;
}

.club-brand-name {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
}

.club-brand-name em {
    font-style: normal;
    color: var(--club-red);
}

.club-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1 1 auto;
}

.club-nav-item {
    position: relative;
}

.club-nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 72px;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
}

.club-nav-item:hover .club-nav-link,
.club-nav-item:focus-within .club-nav-link,
.club-nav-item.is-active .club-nav-link {
    color: #fff !important;
    border-bottom-color: var(--club-red);
}

.club-drop {
    position: absolute;
    top: calc(100% - 6px);
    left: 0;
    min-width: 220px;
    padding: 8px 0;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s;
    z-index: 20;
}

.club-nav-item:hover .club-drop,
.club-nav-item:focus-within .club-drop {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.club-drop a {
    display: block;
    padding: 10px 16px;
    color: #161616 !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 600;
}

.club-drop a:hover {
    background: #f6f6f6;
    color: var(--club-red) !important;
}

.club-tools {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.club-icon-btn {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none !important;
}

.club-icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff !important;
}

.club-menu.offcanvas {
    width: min(460px, 100%);
    background: #070707;
    color: #fff;
    border: 0;
}

.club-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.club-menu-body {
    padding: 12px 8px 32px;
}

.club-menu-link,
.club-menu-sub,
.club-menu-cta {
    display: block;
    text-decoration: none !important;
}

.club-menu-link {
    padding: 12px 16px 2px;
    color: #fff !important;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
}

.club-menu-sub {
    padding: 7px 16px 7px 22px;
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 15px;
}

.club-menu-sub:hover,
.club-menu-link:hover {
    color: #fff !important;
}

.club-menu-cta {
    margin: 22px 16px 0;
    background: var(--club-red);
    color: #fff !important;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 16px;
}

@media (min-width: 992px) {
    .club-menu.offcanvas {
        width: 420px;
    }
}

@media (max-width: 991.98px) {
    .club-links {
        display: none;
    }

    .club-menu.offcanvas {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .club-brand-name {
        display: none;
    }
}

/* ── Homepage shell ── */
.club-home {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: var(--club-paper);
    overflow-x: hidden;
}

.club-wrap {
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
}

.club-section {
    padding: 56px 0 28px;
}

.club-section-tight {
    padding-top: 12px;
}

.club-band {
    background: var(--club-mist);
    padding-bottom: 48px;
}

.club-kicker {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--club-red) !important;
}

.club-kicker span {
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.04em;
    font-weight: 600;
    text-transform: none;
    margin-left: 8px;
}

.club-kicker-light {
    color: #fff !important;
}

.club-display {
    margin: 0 0 10px;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 0.92;
    text-transform: uppercase;
    color: var(--club-ink);
}

.club-display-sm {
    font-size: clamp(34px, 4vw, 52px);
}

.club-lead {
    max-width: 640px;
    margin: 0 0 28px;
    font-size: 18px;
    line-height: 1.45;
    color: var(--club-muted) !important;
}

.club-lead-sm {
    margin: 6px 0 0;
    font-size: 15px;
}

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

.club-section-head h3 {
    margin: 0;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--club-ink);
}

.club-section-tools {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.club-text-link {
    color: var(--club-ink) !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none !important;
}

.club-text-link:hover {
    color: var(--club-red) !important;
}

.club-round {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.club-round:hover {
    border-color: #111;
    background: #111;
    color: #fff;
}

/* Hero */
.club-hero {
    position: relative;
    height: min(78vh, 760px);
    min-height: 460px;
    background: #111;
    color: #fff;
}

.club-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease;
}

.club-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.club-slide-media,
.club-story-media,
.club-feature-media,
.club-player-media,
.club-product-media,
.club-video-media,
.club-ground-media {
    background-size: cover;
    background-position: center;
}

.club-slide-media {
    position: absolute;
    inset: 0;
    transform: scale(1.04);
}

.club-slide.is-active .club-slide-media {
    animation: club-ken 8s ease forwards;
}

@keyframes club-ken {
    from { transform: scale(1.06); }
    to { transform: scale(1); }
}

.club-slide-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.15) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.78) 100%);
}

.club-slide-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 88px;
    z-index: 2;
}

.club-hero-title {
    max-width: 11em;
    margin: 0 0 12px;
    color: #fff !important;
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 800;
    line-height: 0.88;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.club-hero-deck {
    max-width: 520px;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 18px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.club-read {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    color: #111 !important;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    font-size: 13px;
}

.club-read:hover {
    background: var(--club-red);
    color: #fff !important;
}

.club-hero-ui {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 22px;
    width: min(1240px, calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.club-hero-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    backdrop-filter: blur(6px);
}

.club-hero-arrow:hover {
    background: #fff;
    color: #111;
}

.club-hero-dots {
    display: flex;
    gap: 8px;
    margin-right: auto;
}

.club-dot {
    width: 28px;
    height: 3px;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
}

.club-dot.is-active {
    background: #fff;
}

/* Stories */
.club-scroller {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
}

.club-scroller::-webkit-scrollbar {
    display: none;
}

.club-story,
.club-product {
    flex: 0 0 280px;
    scroll-snap-align: start;
    text-decoration: none !important;
    color: inherit !important;
}

.club-story-media,
.club-product-media {
    display: block;
    aspect-ratio: 16 / 10;
    background-color: #ddd;
    margin-bottom: 12px;
    transition: transform 0.35s ease;
}

.club-story:hover .club-story-media,
.club-product:hover .club-product-media,
.club-feature:hover .club-feature-media,
.club-player:hover .club-player-media,
.club-video:hover .club-video-media,
.club-ground:hover .club-ground-media {
    transform: scale(1.04);
}

.club-story,
.club-product,
.club-feature,
.club-player,
.club-video,
.club-ground {
    overflow: hidden;
}

.club-story-kicker,
.club-product-kicker,
.club-product-price {
    display: block;
    margin-bottom: 6px;
    color: var(--club-red) !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.club-story-title,
.club-product-title {
    display: block;
    color: var(--club-ink) !important;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.club-story:hover .club-story-title,
.club-product:hover .club-product-title {
    color: var(--club-red) !important;
}

.club-product-media.is-contain {
    background-size: 54% auto;
    background-repeat: no-repeat;
    background-color: #111;
}

.club-product-price {
    margin-top: 6px;
    color: var(--club-muted) !important;
    letter-spacing: 0;
    text-transform: none;
    font-size: 15px;
}

/* Matches */
.club-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    border-bottom: 1px solid #ddd;
}

.club-tab {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 10px 4px 12px;
    margin-right: 18px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #777;
    border-bottom: 3px solid transparent;
}

.club-tab.is-active {
    color: #111;
    border-bottom-color: var(--club-red);
}

.club-panel {
    display: none;
}

.club-panel.is-active {
    display: block;
}

.club-matches {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.club-match {
    background: #fff;
    border: 1px solid var(--club-line);
    padding: 18px 18px 16px;
    min-height: 230px;
    display: flex;
    flex-direction: column;
}

.club-match-kicker {
    margin: 0 0 16px;
    color: var(--club-red) !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.club-match-board {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.club-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    min-width: 0;
}

.club-side img,
.club-crest-fallback {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 50%;
    background: #fafafa;
}

.club-crest-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    background: #111;
    color: #fff;
}

.club-side-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #111 !important;
}

.club-score {
    text-align: center;
    min-width: 92px;
}

.club-score-num {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    color: #111;
}

.club-score-num span {
    padding: 0 4px;
    font-weight: 600;
}

.club-score-num.is-date {
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.club-score-meta,
.club-match-meta {
    color: var(--club-muted) !important;
    font-size: 13px;
}

.club-score-meta {
    margin-top: 4px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11px;
}

.club-match-meta {
    margin: 16px 0 10px;
}

.club-match-link {
    margin-top: auto;
    color: #111 !important;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
}

.club-match-link:hover {
    color: var(--club-red) !important;
}

.club-match-actions {
    display: flex;
    gap: 18px;
    margin-top: 16px;
}

.club-match-empty {
    background: #fff;
    border: 1px solid var(--club-line);
    padding: 36px 20px;
    text-align: center;
}

/* Editorial tiles */
.club-feature-grid,
.club-player-grid,
.club-video-grid,
.club-ground-grid {
    display: grid;
    gap: 12px;
}

.club-feature-grid {
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 250px 250px;
}

.club-feature:first-child {
    grid-row: 1 / span 2;
}

.club-player-grid,
.club-ground-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.club-ground-grid {
    grid-template-columns: 1fr 1fr;
}

.club-video-grid {
    grid-template-columns: 1fr 1fr;
}

.club-feature,
.club-player,
.club-video,
.club-ground {
    position: relative;
    display: block;
    min-height: 240px;
    color: #fff !important;
    text-decoration: none !important;
    background: #111;
}

.club-player {
    min-height: 460px;
}

.club-player-media {
    background-position: center 15%;
}

.club-feature-media,
.club-player-media,
.club-video-media,
.club-ground-media {
    position: absolute;
    inset: 0;
    transition: transform 0.45s ease;
}

.club-feature::after,
.club-player::after,
.club-video::after,
.club-ground::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 20%, rgba(0, 0, 0, 0.82) 100%);
}

.club-feature-copy,
.club-player-copy,
.club-video-copy,
.club-ground-copy {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.club-feature-title,
.club-player-name,
.club-video-title,
.club-ground-title {
    color: #fff !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.92;
}

.club-feature-title,
.club-ground-title,
.club-video-title {
    font-size: clamp(32px, 3vw, 48px);
}

.club-player-name {
    font-size: clamp(32px, 3vw, 44px);
}

.club-feature-deck,
.club-player-note,
.club-ground-address {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 15px;
}

.club-feature-cta {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.club-video {
    min-height: 320px;
}

.club-play {
    position: absolute;
    z-index: 1;
    left: 18px;
    top: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--club-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

/* Support */
.club-support {
    background:
        radial-gradient(circle at 90% 10%, rgba(218, 2, 14, 0.45), transparent 36%),
        #070707;
    color: #fff;
    padding: 72px 0;
}

.club-support-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.club-support .club-display {
    color: #fff;
    max-width: 14ch;
}

.club-support-lead {
    max-width: 520px;
    margin: 12px 0 22px;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 18px;
}

.club-support-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.club-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    text-decoration: none !important;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
}

.club-btn-red {
    background: var(--club-red);
    color: #fff !important;
}

.club-btn-red:hover {
    background: var(--club-red-deep);
    color: #fff !important;
}

.club-btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff !important;
}

.club-btn-ghost:hover {
    background: #fff;
    color: #111 !important;
}

.club-support-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.club-support-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.club-support-list strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 26px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.club-support-list span {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.club-footer {
    background: #070707;
    color: #fff;
    padding: 48px 0 28px;
}

.club-footer-label {
    margin: 0 0 12px;
    color: var(--club-red) !important;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.club-footer-partners {
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.club-footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.club-footer-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 14px;
    background: #fff;
}

.club-footer-logos img {
    height: 26px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
}

.club-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, 1fr);
    gap: 28px;
}

.club-footer-grid a,
.club-footer-brand p,
.club-footer-base p {
    display: block;
    color: rgba(255, 255, 255, 0.74) !important;
    text-decoration: none !important;
    font-size: 14px;
    line-height: 1.7;
}

.club-footer-grid a:hover {
    color: #fff !important;
}

.club-footer-motto {
    margin: 12px 0 4px;
    color: #fff !important;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px !important;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1 !important;
}

.club-footer-base {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
}

.club-footer-social {
    display: flex;
    gap: 8px;
}

.club-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none !important;
}

.club-footer-social a:hover {
    background: var(--club-red);
    border-color: var(--club-red);
}

/* Dark-theme overrides for the light homepage */
body.is-home .club-home p,
body.is-home .club-home .text-muted {
    color: var(--club-muted) !important;
}

body.is-home .club-home .club-kicker,
body.is-home .club-home .club-story-kicker,
body.is-home .club-home .club-product-kicker,
body.is-home .club-home .club-match-kicker {
    color: var(--club-red) !important;
}

body.is-home .club-home .club-hero p,
body.is-home .club-home .club-hero .club-kicker,
body.is-home .club-home .club-on-dark .club-kicker,
body.is-home .club-home .club-on-dark .club-feature-deck,
body.is-home .club-home .club-on-dark .club-player-note,
body.is-home .club-home .club-on-dark .club-ground-address,
body.is-home .club-support p,
body.is-home .club-support .club-kicker {
    color: #fff !important;
}

body.is-home .club-home .club-hero-deck,
body.is-home .club-support .club-support-lead {
    color: rgba(255, 255, 255, 0.84) !important;
}

body.is-home .club-home h2,
body.is-home .club-home h3,
body.is-home .club-home .club-story-title,
body.is-home .club-home .club-product-title,
body.is-home .club-home .club-side-name,
body.is-home .club-home .club-score-num {
    color: var(--club-ink) !important;
}

body.is-home .club-home .club-hero-title,
body.is-home .club-home .club-feature-title,
body.is-home .club-home .club-player-name,
body.is-home .club-home .club-video-title,
body.is-home .club-home .club-ground-title,
body.is-home .club-support .club-display {
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .club-matches,
    .club-player-grid,
    .club-footer-grid,
    .club-support-grid,
    .club-video-grid {
        grid-template-columns: 1fr;
    }

    .club-feature-grid,
    .club-ground-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .club-feature:first-child {
        grid-row: auto;
        min-height: 360px;
    }

    .club-player {
        min-height: 420px;
    }

    .club-hero {
        min-height: 520px;
        height: 82vh;
    }

    .club-slide-copy {
        bottom: 78px;
    }
}

@media (max-width: 640px) {
    .club-wrap {
        width: min(1240px, calc(100% - 28px));
    }

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

    .club-footer-base {
        flex-direction: column;
        align-items: flex-start;
    }

    .club-hero-title {
        font-size: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .club-slide,
    .club-slide-media,
    .club-story-media,
    .club-feature-media,
    .club-player-media,
    .club-video-media,
    .club-ground-media,
    .club-product-media {
        animation: none !important;
        transition: none !important;
    }
}
