.page-hero--athletes {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgb(3 43 32 / 94%), rgb(3 43 32 / 52%)),
        url("../images/startseite-neu/team-am-start.webp");
    background-position: center 42%;
    background-size: cover;
}

.page-hero--athletes::after {
    position: absolute;
    inset: -50% -10% -90% 48%;
    content: "";
    opacity: .5;
    background: repeating-radial-gradient(
        ellipse at 50% 65%,
        transparent 0 76px,
        rgb(139 218 89 / 14%) 77px 79px,
        transparent 80px 120px
    );
}

.athletes-section {
    padding: clamp(3.5rem, 7vw, 6.5rem) 0;
    background: var(--snow);
}

.athletes-intro {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: end;
    gap: clamp(2rem, 6vw, 6rem);
    margin-bottom: 3rem;
}

.athletes-intro h2 {
    margin: 0;
    color: var(--forest-950);
    font-size: clamp(2.3rem, 5vw, 4.6rem);
    line-height: .95;
    letter-spacing: -.04em;
}

.athletes-intro > p {
    margin: 0;
    color: var(--muted);
}

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

.athlete-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    box-shadow: 0 18px 46px rgb(4 38 28 / 11%);
    transition: transform .2s ease, box-shadow .2s ease;
}

.athlete-card:hover {
    box-shadow: 0 24px 54px rgb(4 38 28 / 15%);
    transform: translateY(-4px);
}

.athlete-card__portrait {
    aspect-ratio: 5 / 4;
    display: grid;
    place-items: center;
    color: rgb(255 255 255 / 88%);
    background:
        radial-gradient(circle at 70% 20%, rgb(112 197 65 / 30%), transparent 45%),
        var(--forest-900);
}

.athlete-card__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform .45s ease;
}

.athlete-card:hover .athlete-card__portrait img {
    transform: scale(1.025);
}

.athlete-card__portrait > span {
    font-size: 4.5rem;
    font-weight: 900;
}

.athlete-card__body {
    padding: 1.35rem;
}

.athlete-card__body > p {
    margin: 0 0 .35rem;
    color: var(--forest-700);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.athlete-card h3 {
    margin: 0;
    color: var(--forest-950);
    font-size: 1.55rem;
}

.athlete-card dl {
    margin: 1rem 0 0;
}

.athlete-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: .65rem;
    border-top: 1px solid var(--line);
}

.athlete-card dt {
    color: var(--muted);
}

.athlete-card dd {
    margin: 0;
    font-weight: 750;
    text-align: right;
}

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

@media (max-width: 620px) {
    .athletes-intro,
    .athletes-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .athlete-card,
    .athlete-card__portrait img {
        transition: none;
    }
}
