/* Gebündelte Styles für die Startseite */
.site-footer {
    padding: 4rem 0 1.4rem;
    color: rgb(255 255 255 / 68%);
    background: #031c15;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-grid > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .45rem;
}

.footer-grid strong {
    margin-bottom: .35rem;
    color: var(--white);
}

.footer-title {
    font-size: 1.35rem;
    text-transform: uppercase;
}

.footer-grid p {
    max-width: 380px;
    margin: 0;
}

.footer-grid a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--green-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.4rem;
    margin-top: 3rem;
    border-top: 1px solid rgb(255 255 255 / 10%);
    font-size: .78rem;
}

:focus-visible {
    outline: 3px solid var(--forest-700);
    outline-offset: 4px;
    box-shadow: 0 0 0 4px #fff;
}

@media (forced-colors: active) {
    :focus-visible {
        outline: 3px solid CanvasText;
    }
}
/* Gebündelte Styles für die Startseite */
@media (max-width: 1080px) {
    body.menu-open {
        overflow: hidden;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
        display: grid;
        place-content: center;
        gap: 5px;
        padding: 0;
        background: var(--forest-900);
        border: 0;
        border-radius: .65rem;
    }

    .menu-toggle span:not(.sr-only) {
        width: 22px;
        height: 2px;
        display: block;
        background: var(--white);
        transition: transform .2s ease, opacity .2s ease;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        padding: .5rem 1.25rem 1.25rem;
        background: var(--white);
        box-shadow: 0 22px 35px rgb(4 38 28 / 18%);
        max-height: calc(100vh - var(--header-height));
        max-height: calc(100dvh - var(--header-height));
        overflow-y: auto;
        overscroll-behavior: contain;
    }

    .main-nav.is-open {
        display: block;
    }

    .main-nav ul {
        display: block;
    }

    .main-nav a {
        padding: .85rem 0;
        border-bottom: 1px solid var(--line);
    }

    .main-nav a::after {
        display: none;
    }

    .site-header.is-scrolled .main-nav a {
        padding-block: .85rem;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 1.5rem), var(--container));
    }

    .utility-bar {
        display: none;
    }

    .nav-shell {
        min-height: 76px;
    }

    .brand {
        width: 145px;
        height: 56px;
    }

    .site-header.is-scrolled .nav-shell {
        min-height: 76px;
    }

    .site-header.is-scrolled .brand {
        width: 145px;
        height: 56px;
    }

    .page-hero {
        min-height: 520px;
        align-items: end;
        padding-block: 4rem;
    }

    .page-hero::before {
        background: linear-gradient(to top, rgb(3 39 29 / 96%) 0%, rgb(3 39 29 / 65%) 58%, rgb(3 39 29 / 18%) 100%);
    }

    .page-hero h1 {
        font-size: clamp(2.8rem, 13.5vw, 4.4rem);
        line-height: .9;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
    }

}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* Gebündelte Styles für die Startseite */
.hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    color: var(--white);
    background: var(--forest-950);
}

.hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgb(2 35 25 / 86%) 0%, rgb(2 35 25 / 86%) 50%, rgb(2 35 25 / 20%) 76%, transparent 100%);
}

.hero::after {
    position: absolute;
    z-index: 0;
    inset: -22% -8% -35%;
    content: "";
    opacity: .58;
    background:
        repeating-radial-gradient(
            ellipse at 50% 66%,
            transparent 0 82px,
            rgb(139 218 89 / 16%) 83px 85px,
            transparent 86px 126px
        );
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 61%, transparent 78%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 61%, transparent 78%);
    pointer-events: none;
}

.hero__scene {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__grid {
    position: relative;
    z-index: 2;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding-block: 4.5rem 7rem;
}

.hero__content {
    position: relative;
    isolation: isolate;
    width: min(48%, 760px);
}

.hero__content::before {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 35%;
    width: min(48vw, 700px);
    aspect-ratio: 1;
    content: "";
    background: none;
    filter: blur(10px);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.eyebrow--green {
    color: var(--forest-700);
}

.hero h1 {
    max-width: 650px;
    margin: 0;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: clamp(4.5rem, 6.2vw, 6.4rem);
    font-weight: 900;
    line-height: .87;
    letter-spacing: -.045em;
    text-transform: uppercase;
}

.hero h1 span {
    display: block;
    color: var(--green-400);
}

.hero__lead {
    max-width: 620px;
    margin: 1.8rem 0 0;
    color: rgb(255 255 255 / 84%);
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2rem;
}

.hero__footer {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 52px;
    left: 0;
    color: rgb(255 255 255 / 56%);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero__footer .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero__line {
    width: 60px;
    height: 1px;
    background: currentColor;
}

.home-entry {
    position: relative;
    z-index: 5;
    margin-top: 0;
    padding-top: clamp(1.75rem, 3vw, 2.75rem);
    padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
    overflow: hidden;
    background: var(--snow);
    isolation: isolate;
}

.home-entry::before {
    position: absolute;
    z-index: 0;
    top: 22%;
    left: -14rem;
    width: min(58vw, 54rem);
    height: min(24vw, 20rem);
    content: "";
    border: 2px solid rgb(83 174 67 / 9%);
    border-radius: 50%;
    box-shadow:
        0 0 0 36px rgb(83 174 67 / 3%),
        0 0 0 74px rgb(83 174 67 / 2%);
    transform: rotate(-12deg);
    pointer-events: none;
}

.home-entry > .container {
    position: relative;
    z-index: 1;
}

.home-entry__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(.9rem, 1.6vw, 1.4rem);
}

.entry-card {
    position: relative;
    min-height: 285px;
    min-width: 0;
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 24px 60px rgb(3 39 29 / 20%);
    isolation: isolate;
}

.entry-card::before,
.entry-card::after {
    position: absolute;
    z-index: 0;
    content: "";
    pointer-events: none;
}

.entry-card > * {
    position: relative;
    z-index: 1;
}

.entry-card__mark {
    position: absolute;
    z-index: 0;
    top: 1.2rem;
    right: 1.2rem;
    width: 3.4rem;
    height: 3.4rem;
    color: rgb(173 232 139 / 25%);
}

.entry-card__mark svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.entry-card:nth-child(2) .entry-card__mark {
    width: 4rem;
    height: 4rem;
    color: rgb(255 255 255 / 17%);
}

.entry-card:nth-child(3) .entry-card__mark {
    width: 3.8rem;
    height: 3.8rem;
    color: rgb(112 197 65 / 29%);
}

.entry-card::before {
    right: -28%;
    bottom: -52%;
    width: 82%;
    aspect-ratio: 1;
    border: 2px solid rgb(173 232 139 / 25%);
    border-radius: 50%;
    box-shadow:
        0 0 0 28px rgb(173 232 139 / 7%),
        0 0 0 58px rgb(173 232 139 / 5%);
}

.entry-card::after {
    top: 22%;
    right: -20%;
    width: 76%;
    height: 42%;
    border: 1px solid rgb(255 255 255 / 13%);
    border-radius: 50%;
    transform: rotate(-28deg);
}

.entry-card:nth-child(2)::before {
    right: -38%;
    bottom: -44%;
    width: 96%;
}

.entry-card:nth-child(2)::after {
    top: -10%;
    right: -32%;
    width: 88%;
    height: 58%;
    transform: rotate(32deg);
}

.entry-card:nth-child(3)::before {
    right: -18%;
    bottom: -60%;
    width: 88%;
}

.entry-card:nth-child(3)::after {
    top: 10%;
    right: -36%;
    width: 92%;
    transform: rotate(-18deg);
}

.entry-card h2 {
    margin: 0;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: clamp(1.65rem, 2.4vw, 2.6rem);
    line-height: .96;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.entry-card__label {
    position: relative;
    margin: 0;
    padding-left: 2.6rem;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.entry-card__label::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1.9rem;
    height: 2px;
    content: "";
    background: var(--green-400);
    transform: translateY(-50%);
}

.entry-card--race {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr auto;
    gap: 1rem 1.25rem;
    padding: clamp(1.4rem, 2.3vw, 2.2rem);
    color: var(--white);
    background: linear-gradient(145deg, #0b6748, #064332);
}

.entry-card--race .entry-card__label,
.entry-card__link {
    grid-column: 1 / -1;
}

.entry-card__date {
    align-self: center;
    display: flex;
    flex-direction: column;
    line-height: .85;
}

.entry-card__date strong {
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: clamp(4rem, 5.6vw, 6.2rem);
}

.entry-card__date span {
    margin-top: .35rem;
    font-size: 1.05rem;
    font-weight: 950;
    letter-spacing: .12em;
}

.entry-card__date small {
    margin-top: .55rem;
    font-weight: 800;
}

.entry-card__body {
    align-self: center;
    min-width: 0;
}

.entry-card--race .entry-card__body h2 {
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    line-height: 1.2;
    hyphens: none;
    text-wrap: initial;
    overflow-wrap: normal;
}

@media (max-width:480px) {
    .entry-card--race .entry-card__body { grid-column:1 / -1; }
    .entry-card--race .entry-card__date { flex-direction:row; align-items:baseline; gap:.5rem; }
    .entry-card--race .entry-card__date strong { font-size:3rem; }
}

.entry-card__body p {
    margin: .7rem 0 0;
    font-weight: 750;
}

.entry-card__body--empty {
    grid-column: 1 / -1;
}

.entry-card__link {
    align-self: end;
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    color: inherit;
    border-top: 1px solid rgb(255 255 255 / 28%);
    font-weight: 900;
    text-decoration: none;
}

.entry-card--photo {
    display: flex;
    align-items: flex-end;
    color: var(--white);
    text-decoration: none;
    background: linear-gradient(145deg, #0b6748, #064332);
}

.entry-card__photo-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: clamp(1.4rem, 2.3vw, 2.2rem);
}

.entry-card__photo-content .entry-card__label {
    margin-bottom: .75rem;
    color: var(--green-400);
}

.entry-card__photo-content > p:not(.entry-card__label) {
    margin: 1rem 0 0;
    color: rgb(255 255 255 / 82%);
    line-height: 1.55;
}

.entry-card__photo-content span {
    display: inline-block;
    margin-top: 1.2rem;
    font-weight: 850;
}

.quick-section,
.home-intro,
.home-clubs,
.home-latest {
    padding: 4.5rem 0 5rem;
    background: var(--snow);
}

.home-clubs,
.home-experience {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.home-clubs {
    padding-top: 2.5rem;
}

.home-clubs > .container,
.home-experience > .container {
    position: relative;
    z-index: 2;
}

.home-clubs::before,
.home-experience::before {
    position: absolute;
    z-index: 0;
    content: "";
    border: 2px solid rgb(83 174 67 / 10%);
    border-radius: 50%;
    pointer-events: none;
}

.home-clubs::before {
    top: -13rem;
    right: -19rem;
    width: min(62vw, 58rem);
    height: min(38vw, 34rem);
    box-shadow:
        0 0 0 42px rgb(83 174 67 / 3%),
        0 0 0 84px rgb(83 174 67 / 2%);
    transform: rotate(18deg);
}

.home-clubs::after {
    position: absolute;
    z-index: 0;
    bottom: 8%;
    left: -8%;
    width: 42%;
    height: 1px;
    content: "";
    opacity: .38;
    background: linear-gradient(90deg, transparent, var(--green-500), transparent);
    transform: rotate(-18deg);
    pointer-events: none;
}

.home-intro__grid,
.latest-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: clamp(2rem, 6vw, 6rem);
}

.home-intro h2,
.home-experience h2,
.home-community h2,
.home-clubs h2,
.home-latest h2 {
    margin: 0;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: clamp(2.7rem, 5vw, 5.4rem);
    line-height: .9;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.home-copy {
    margin: 1.5rem 0 2rem;
    color: var(--muted);
    font-size: 1.08rem;
}

.home-intro__image {
    min-height: 520px;
    margin: 0;
    overflow: hidden;
    border-radius: 1.3rem;
    box-shadow: 0 28px 65px rgb(4 38 28 / 18%);
}

.home-intro__image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
}

.home-experience {
    padding: 5rem 0;
    color: var(--forest-950);
    background: var(--snow);
}

.home-experience::before {
    right: -16rem;
    bottom: -16rem;
    width: min(58vw, 54rem);
    height: min(42vw, 38rem);
    box-shadow:
        0 0 0 34px rgb(83 174 67 / 3%),
        0 0 0 72px rgb(83 174 67 / 2%);
    transform: rotate(-24deg);
}

.home-experience::after {
    position: absolute;
    z-index: 0;
    top: 13%;
    left: -10%;
    width: 45%;
    height: 1px;
    content: "";
    opacity: .35;
    background: linear-gradient(90deg, transparent, var(--green-500), transparent);
    transform: rotate(16deg);
    pointer-events: none;
}

.text-link--light {
    color: var(--forest-800);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(.9rem, 1.7vw, 1.5rem);
    margin-top: 2.5rem;
}

.experience-card {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--white);
    background: var(--forest-900);
    border-radius: 1.15rem;
    box-shadow: 0 20px 48px rgb(7 47 35 / 14%);
    isolation: isolate;
}

.experience-card::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background: linear-gradient(to top, rgb(3 28 22 / 94%) 0, rgb(3 28 22 / 62%) 36%, transparent 72%);
}

.experience-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.experience-card:hover img {
    transform: scale(1.035);
}

.experience-card__content {
    width: 100%;
    padding: clamp(1.35rem, 2vw, 2rem);
}

.experience-card__content > span {
    display: inline-grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    color: var(--forest-950);
    background: var(--green-400);
    border-radius: 50%;
    font-weight: 900;
}

.experience-grid h3 {
    margin: 1rem 0 .55rem;
    font-size: clamp(1.35rem, 1.8vw, 1.7rem);
}

.experience-grid p {
    margin: 0;
    color: rgb(255 255 255 / 86%);
    text-shadow: 0 1px 2px rgb(0 0 0 / 35%);
}

.home-community {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: var(--forest-950);
}

.home-community > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-community::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgb(2 32 24 / 88%) 0%, rgb(2 32 24 / 88%) 62%, rgb(2 32 24 / 24%) 82%, transparent 100%);
}

.home-community__content {
    position: relative;
    z-index: 1;
    padding-block: 4.5rem;
}

.home-community__content h2,
.home-community__content p {
    max-width: 720px;
    text-shadow: 0 2px 8px rgb(0 0 0 / 55%);
}

.home-community__content > p:not(.eyebrow) {
    margin: 1.5rem 0 2rem;
    color: rgb(255 255 255 / 92%);
    font-size: 1.1rem;
}

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

.home-club {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background: var(--forest-900);
    border-radius: 1rem;
    border: 1px solid rgb(7 59 42 / 8%);
    box-shadow: 0 18px 44px rgb(7 47 35 / 12%);
    text-decoration: none;
    transition: box-shadow .25s ease, transform .25s ease;
}

.home-club::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, rgb(3 39 29 / 90%) 0%, rgb(3 39 29 / 56%) 35%, transparent 70%);
}

.home-club img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform .35s ease;
}

.home-club:hover img {
    transform: scale(1.04);
}

.home-club:hover {
    box-shadow: 0 24px 56px rgb(7 47 35 / 20%);
    transform: translateY(-4px);
}

.home-club > div {
    position: relative;
    z-index: 1;
    padding: 1.4rem;
}

.home-club p {
    margin: 0;
    color: var(--green-400);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.home-club h3 {
    margin: .4rem 0 .55rem;
    font-size: 1.4rem;
}

.home-club small {
    max-width: 29ch;
    display: block;
    margin-bottom: 1rem;
    color: rgb(255 255 255 / 84%);
    font-size: .86rem;
    line-height: 1.45;
}

.home-club span {
    font-weight: 850;
}

.home-latest {
    background: var(--white);
}

.latest-grid > img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 1rem;
}

.latest-list {
    display: grid;
}

.latest-list article {
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--line);
}

.latest-list article p {
    margin: 0;
    color: var(--forest-700);
    font-size: .75rem;
    font-weight: 850;
}

.latest-list article h3 {
    margin: .35rem 0 .6rem;
    font-size: 1.35rem;
}

.latest-list article span {
    color: var(--muted);
}

.latest-actions {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.latest-actions a {
    color: var(--forest-700);
    font-weight: 850;
}

.section-heading--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-heading h2,
.identity-section h2 {
    margin: 0;
    font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    line-height: .95;
    letter-spacing: -.025em;
    text-transform: uppercase;
}

.text-link {
    color: var(--forest-700);
    font-weight: 850;
    text-decoration: none;
}

.event-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1rem;
}

.event-grid--compact {
    grid-template-columns: 1fr 1fr;
}

.upcoming-events {
    display: grid;
    gap: 1rem;
}

.event-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 1.6rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 35px rgb(7 59 42 / 6%);
}

.event-card time {
    min-width: 82px;
    color: var(--forest-700);
    text-align: center;
    border-right: 1px solid var(--line);
}

.event-card time strong,
.event-card time span {
    display: block;
}

.event-card time strong {
    font-size: 2.7rem;
    line-height: 1;
}

.event-card time span {
    font-size: .8rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.event-card h3 {
    margin: .35rem 0;
    font-size: 1.2rem;
}

.event-card p {
    margin: 0;
    color: var(--muted);
    font-size: .9rem;
}

.event-card .text-link {
    display: inline-block;
    margin-top: .8rem;
}

.event-card--dark {
    color: var(--white);
    background: var(--forest-900);
    border-color: var(--forest-900);
}

.event-card--dark p {
    color: rgb(255 255 255 / 68%);
}

.event-card--dark a {
    display: inline-block;
    margin-top: 1rem;
    color: var(--green-400);
    font-weight: 800;
}

.event-card__icon {
    color: var(--green-400);
    font-size: 2rem;
}

.tag {
    color: var(--forest-700);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.tag--light {
    color: var(--green-400);
}

.identity-section {
    padding: 5.5rem 0;
    color: var(--white);
    background: var(--forest-950);
}

.identity-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: end;
    gap: clamp(2rem, 7vw, 7rem);
}

.identity-grid > p {
    margin: 0;
    color: rgb(255 255 255 / 70%);
    font-size: 1.08rem;
}

.sponsors-section {
    position: relative;
    padding: 5.5rem 0 6rem;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 120%, rgb(112 197 65 / 16%), transparent 34rem),
        var(--forest-950);
}

.sponsors-section::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .08;
    background-image:
        repeating-radial-gradient(ellipse at 50% 120%, transparent 0 24px, rgb(255 255 255 / 55%) 25px 26px);
}

.sponsors-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
    color: var(--white);
    text-align: center;
}

.sponsors-heading .eyebrow {
    justify-content: center;
    color: var(--green-400);
}

.sponsors-heading > p:last-child {
    margin: .9rem 0 0;
    color: rgb(255 255 255 / 66%);
}

.sponsor-grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.sponsor-card {
    position: relative;
    min-width: 0;
    min-height: 172px;
    flex: 1 1 205px;
    max-width: 224px;
    display: grid;
    place-items: center;
    padding: .65rem;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgb(255 255 255 / 52%);
    border-radius: 1rem;
    box-shadow: 0 18px 45px rgb(0 0 0 / 19%);
    transition: transform .2s ease, box-shadow .2s ease;
}

.sponsor-card::after {
    position: absolute;
    right: 17%;
    bottom: 0;
    left: 17%;
    height: 3px;
    content: "";
    background: var(--green-500);
    border-radius: 3px 3px 0 0;
}

.sponsor-card:hover {
    box-shadow: 0 24px 55px rgb(0 0 0 / 27%);
    transform: translateY(-4px);
}

.sponsor-card img {
    width: auto;
    max-width: 90%;
    max-height: 118px;
    height: auto;
    object-fit: contain;
}

.sponsor-card--askoe img { max-width: 92%; max-height: 104px; }
.sponsor-card--ejot img { max-width: 88%; max-height: 104px; }
.sponsor-card--land img { max-width: 91%; max-height: 116px; }
.sponsor-card--winterleiten img { max-width: 90%; max-height: 122px; }
.sponsor-card--stocker img { max-width: 74%; max-height: 128px; }

@media (max-width: 860px) {
    .hero__grid {
        grid-template-columns: 1fr;
        padding-top: 3rem;
    }

    .hero__footer {
        display: none;
    }

    .event-grid,
    .identity-grid,
    .home-intro__grid,
    .latest-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid,
    .home-club-grid {
        grid-template-columns: 1fr;
    }

    .home-entry {
        margin-top: 0;
    }

    .home-entry__grid {
        grid-template-columns: 1fr;
    }

    .entry-card {
        width: min(100%, 34rem);
        min-height: 270px;
        margin-inline: auto;
    }

    .experience-card {
        min-height: 430px;
    }

    .home-club {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
    }

    .hero::before { background: rgb(2 35 25 / 86%); }

    .home-entry {
        margin-top: 0;
        padding-top: 1.25rem;
        padding-bottom: 3.5rem;
    }

    .entry-card {
        min-height: 250px;
    }

    .entry-card--race {
        min-height: 285px;
    }

    .hero::after {
        display: none;
    }

    .hero__grid {
        min-height: auto;
        gap: 1rem;
        padding: 3rem 0 4rem;
    }

    .hero__content {
        width: 100%;
        max-width: 22rem;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(3rem, 14vw, 4.25rem);
        line-height: .91;
        overflow-wrap: normal;
        word-break: keep-all;
    }

    .hero h1 span {
        max-width: 100%;
        overflow-wrap: normal;
        word-break: keep-all;
    }

    .hero__lead {
        max-width: 20rem;
        text-shadow: 0 1px 4px rgb(0 0 0 / 70%);
    }

    .button-row {
        max-width: 19.5rem;
    }

    .button {
        width: 100%;
    }

    .hero__scene {
        object-position: 70% 38%;
    }

    .quick-section,
    .home-intro,
    .home-experience,
    .home-clubs,
    .home-latest,
    .identity-section,
    .sponsors-section {
        padding-block: 3.5rem;
    }

    .section-heading--row {
        align-items: flex-start;
        flex-direction: column;
    }

    .event-card {
        grid-template-columns: 1fr;
    }

    .home-intro__image,
    .home-intro__image img {
        min-height: 380px;
    }

    .home-community {
        min-height: 500px;
    }

    .experience-card {
        min-height: 400px;
    }

    .home-community::after {
        background: rgb(1 31 23 / 88%);
    }

    .latest-grid > img {
        height: 360px;
    }

    .sponsor-card {
        min-height: 145px;
        flex-basis: calc(50% - .6rem);
        max-width: calc(50% - .6rem);
        padding: .5rem;
    }

    .sponsor-card img {
        max-height: 98px;
    }

    .sponsor-card--askoe img,
    .sponsor-card--ejot img { max-height: 82px; }
    .sponsor-card--land img { max-height: 92px; }
    .sponsor-card--winterleiten img { max-height: 100px; }
    .sponsor-card--stocker img { max-height: 106px; }
}

@media (max-width: 390px) {
    .sponsor-card {
        flex-basis: 100%;
        max-width: 100%;
    }
}

.entry-card__notice { grid-column: 1 / -1; margin: 0; color: #e8f0eb; font-size: .8rem; }
