.sport-hero{
    position:relative;
    min-height:430px;
    display:flex;
    align-items:center;
    overflow:hidden;
    color:#fff;
    background:
        linear-gradient(
            135deg,
            #173650,
            #295f84 58%,
            #3a7da5
        );
}

.sport-hero__rings{
    position:absolute;
    right:5%;
    top:50%;
    width:350px;
    height:350px;
    transform:translateY(-50%);
}

.sport-hero__rings::before,
.sport-hero__rings::after{
    content:"";
    position:absolute;
    border:2px solid rgba(255,255,255,.12);
    border-radius:50%;
}

.sport-hero__rings::before{
    inset:0;
    box-shadow:
        0 0 0 40px rgba(255,255,255,.025),
        0 0 0 80px rgba(255,255,255,.018);
}

.sport-hero__rings::after{
    inset:80px;
}

.sport-hero__overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            90deg,
            rgba(8,31,48,.62),
            transparent 72%
        );
}

.sport-hero__content{
    position:relative;
    z-index:2;
    padding-block:80px;
}

.page-eyebrow{
    display:inline-block;
    margin-bottom:10px;
    color:#d6e9f6;
    text-transform:uppercase;
    letter-spacing:.16em;
    font-size:12px;
    font-weight:900;
}

.sport-hero h1{
    margin:0;
    font:
        600 clamp(48px,7vw,82px)/1
        Georgia,
        serif;
}

.sport-hero p{
    max-width:700px;
    margin:20px 0 0;
    color:rgba(255,255,255,.92);
    font-size:clamp(17px,2vw,21px);
}


.sport-intro{
    padding:90px 0 65px;
}

.sport-intro__grid{
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:70px;
    align-items:start;
}

.sport-intro h2{
    margin:5px 0 0;
    font:
        600 clamp(34px,4vw,52px)/1.08
        Georgia,
        serif;
}

.sport-intro__copy p{
    margin:0 0 18px;
    color:var(--muted);
    font-size:17px;
    line-height:1.85;
}

.sport-intro__copy p:last-child{
    margin-bottom:0;
}


.sport-disciplines{
    padding:0 0 85px;
}

.discipline-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:18px;
    background:#fff;
    box-shadow:
        0 15px 38px
        rgba(20,52,40,.07);
}

.discipline-grid article{
    min-height:125px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:18px;
    text-align:center;
    border-right:1px solid var(--line);
}

.discipline-grid article:last-child{
    border-right:0;
}

.discipline-grid span{
    width:46px;
    height:46px;
    display:grid;
    place-items:center;
    color:#fff;
    border-radius:13px;
    background:
        linear-gradient(
            145deg,
            #24597c,
            #3e83ac
        );
    font-size:21px;
}

.discipline-grid strong{
    font:
        600 16px/1.2
        Georgia,
        serif;
}


.athletes-section{
    padding:95px 0 105px;
    background:var(--soft);
}

.athlete-heading{
    align-items:end;
}

.athlete-heading > p{
    max-width:500px;
    margin:0;
    color:var(--muted);
    font-size:13px;
}

.athlete-heading code{
    padding:2px 5px;
    border-radius:5px;
    background:#e7eeea;
    font-size:12px;
}


.athlete-list{
    display:grid;
    gap:18px;
    margin-top:42px;
}

.athlete-card{
    display:grid;
    grid-template-columns:250px minmax(0,1fr);
    overflow:hidden;
    border:1px solid var(--line);
    border-radius:20px;
    background:#fff;
    box-shadow:
        0 10px 30px
        rgba(20,52,40,.05);
}

.athlete-card__media{
    position:relative;
    min-height:250px;
    overflow:hidden;
    background:
        linear-gradient(
            145deg,
            #dfe9ee,
            #cadbe4
        );
}

.athlete-card__media img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.athlete-placeholder{
    width:100%;
    height:100%;
    min-height:250px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:#33546a;
}

.athlete-placeholder span{
    width:90px;
    height:90px;
    display:grid;
    place-items:center;
    border-radius:50%;
    color:#fff;
    background:
        linear-gradient(
            145deg,
            #24597c,
            #3e83ac
        );
    font:
        600 44px/1
        Georgia,
        serif;
}

.athlete-placeholder small{
    text-transform:uppercase;
    letter-spacing:.1em;
    font-size:10px;
    font-weight:900;
}

.athlete-number{
    position:absolute;
    top:14px;
    left:14px;
    padding:7px 10px;
    color:#fff;
    border-radius:999px;
    background:rgba(12,45,67,.72);
    backdrop-filter:blur(5px);
    font-size:11px;
    font-weight:900;
}


.athlete-card__content{
    padding:30px 34px;
}

.athlete-discipline{
    display:inline-flex;
    padding:6px 10px;
    color:#24597c;
    border-radius:999px;
    background:#eaf2f6;
    text-transform:uppercase;
    letter-spacing:.09em;
    font-size:10px;
    font-weight:900;
}

.athlete-card h3{
    margin:9px 0 13px;
    font:
        600 29px/1.15
        Georgia,
        serif;
}

.athlete-card p{
    margin:0;
    color:#53645b;
    font-size:16px;
    line-height:1.8;
}

.athlete-image-path{
    display:block;
    margin-top:19px;
    padding-top:13px;
    color:#8b9891;
    border-top:1px solid var(--line);
    font-size:11px;
}

.athlete-image-path code{
    overflow-wrap:anywhere;
}


.sport-closing{
    padding:85px 0;
    color:#fff;
    background:
        linear-gradient(
            135deg,
            #15364f,
            #285f84
        );
}

.sport-closing__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:45px;
}

.sport-closing .section-kicker{
    color:#d6e9f6;
}

.sport-closing h2{
    max-width:700px;
    margin:5px 0 0;
    font:
        600 clamp(30px,4vw,46px)/1.1
        Georgia,
        serif;
}

.sport-closing p{
    max-width:760px;
    margin:17px 0 0;
    color:rgba(255,255,255,.82);
}

.sport-closing__links{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:10px;
}

.sport-closing__links a{
    min-height:44px;
    display:inline-flex;
    align-items:center;
    padding:0 16px;
    color:#fff;
    border:1px solid rgba(255,255,255,.25);
    border-radius:999px;
    background:rgba(255,255,255,.06);
    text-decoration:none;
    font-weight:800;
}


@media(max-width:1050px){

    .discipline-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .discipline-grid article:nth-child(3n){
        border-right:0;
    }

    .discipline-grid article:nth-child(-n+3){
        border-bottom:1px solid var(--line);
    }

}


@media(max-width:850px){

    .sport-intro__grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .athlete-card{
        grid-template-columns:200px minmax(0,1fr);
    }

    .sport-closing__inner{
        align-items:flex-start;
        flex-direction:column;
    }

    .sport-closing__links{
        justify-content:flex-start;
    }

}


@media(max-width:680px){

    .sport-hero{
        min-height:370px;
    }

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

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

    .athlete-card__media,
    .athlete-placeholder{
        min-height:320px;
    }

    .athlete-card__content{
        padding:24px 21px;
    }

}


@media(max-width:520px){

    .sport-intro,
    .athletes-section{
        padding-top:65px;
        padding-bottom:70px;
    }

    .discipline-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .discipline-grid article{
        border-right:1px solid var(--line);
        border-bottom:1px solid var(--line);
    }

    .discipline-grid article:nth-child(2n){
        border-right:0;
    }

    .discipline-grid article:nth-last-child(-n+2){
        border-bottom:0;
    }

    .athlete-card__media,
    .athlete-placeholder{
        min-height:270px;
    }

}
