.club-page {
    --club-red: #c8102e;
    --club-red-dark: #980d24;
    --club-ink: #1e2228;
    --club-muted: #626a73;
    --club-line: #e5e8eb;
    --club-white: #fff;
    background: #fff;
    color: var(--club-ink)
}

.club-page #container {
    overflow: hidden
}

.club-page main {
    display: block
}

.club-hero {
    display: flex;
    min-height: 500px;
    align-items: center;
    padding: 100px 0;
    background: linear-gradient(120deg, #20242a, #262a31 55%, #8f0c22);
    color: #fff
}

.club-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--club-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase
}

.club-eyebrow--light {
    color: rgba(255, 255, 255, .76)
}

.club-hero h1 {
    max-width: 820px;
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(44px, 6vw, 72px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1
}

.club-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 19px;
    line-height: 1.6
}

.club-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px
}

.club-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none
}

.club-button:hover {
    text-decoration: none
}

.club-button--light {
    background: #fff;
    color: var(--club-red)
}

.club-button--outline {
    border-color: rgba(255, 255, 255, .55);
    color: #fff
}

.club-section {
    padding: 86px 0
}

.club-section__heading {
    max-width: 760px;
    margin-bottom: 38px
}

.club-section__heading h2 {
    margin: 0 0 14px;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -.03em
}

.club-section__heading p {
    color: var(--club-muted);
    font-size: 16px;
    line-height: 1.65
}

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

.club-card {
    padding: 27px;
    border: 1px solid var(--club-line);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(24, 30, 36, .055)
}

.club-card__icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 14px;
    background: rgba(200, 16, 46, .08);
    color: var(--club-red);
    font-size: 21px
}

.club-card h3 {
    margin: 0 0 10px;
    font-size: 21px;
    font-weight: 800
}

.club-card p {
    min-height: 68px;
    color: var(--club-muted);
    font-size: 14px;
    line-height: 1.6
}

.club-card a {
    color: var(--club-red);
    font-weight: 800
}

.club-join {
    padding: 68px 0;
    background: linear-gradient(110deg, var(--club-red), var(--club-red-dark));
    color: #fff
}

.club-join__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.club-join h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 800
}

.club-join p {
    margin: 0;
    color: rgba(255, 255, 255, .82)
}

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

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

@media (max-width: 767px) {
    .club-hero {
        min-height: 440px;
        padding: 75px 0
    }

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

    .club-section {
        padding: 64px 0
    }
}

@media (max-width: 479px) {
    .club-hero__actions, .club-hero__actions .club-button, .club-join .club-button {
        width: 100%
    }
}
