/* ========================================
   COACHES PAGE
======================================== */

.coaches-header {
    position: absolute;
}


/* ========================================
   HERO
======================================== */

.coaches-hero {
    min-height: 600px;

    display: flex;
    align-items: flex-end;

    background: #000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.coaches-hero-content {
    width: min(1400px, 92%);
    margin: 0 auto;

    padding: 190px 0 75px;
}

.page-eyebrow {
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 4px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.55);
}

.coaches-hero h1 {
    font-size: clamp(70px, 11vw, 155px);

    line-height: 0.77;

    letter-spacing: -5px;
    text-transform: uppercase;
}

.coaches-hero h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke: 2px #fff;
}

.coaches-hero-content > p:last-child {
    max-width: 600px;

    margin-top: 30px;

    font-size: 18px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.7);
}


/* ========================================
   COACH SECTIONS
======================================== */

.coach-section {
    min-height: 460px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #fff;
    color: #000;

    border-bottom: 1px solid #ccc;
}

.coach-section-reverse .coach-image {
    order: 2;
}

.coach-section-reverse .coach-content {
    order: 1;
}


/* ========================================
   COACH IMAGE
======================================== */

.coach-image {
    height: 460px;

    overflow: hidden;

    background: #111;
}

.coach-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    filter: grayscale(100%);

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}

.coach-section:hover .coach-image img {
    transform: scale(1.03);

    filter: grayscale(70%);
}


/* ========================================
   COACH CONTENT
======================================== */

.coach-content {
    position: relative;

    padding: 45px 7%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coach-number {
    position: absolute;

    top: 30px;
    right: 35px;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 2px;

    opacity: 0.25;
}

.coach-label {
    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.coach-content h2 {
    font-size: clamp(50px, 5.5vw, 85px);

    line-height: 0.9;

    letter-spacing: -3px;
    text-transform: uppercase;
}

.coach-rank {
    margin-top: 12px;

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.coach-description {
    max-width: 600px;

    margin-top: 20px;

    font-size: 15px;
    line-height: 1.7;

    color: #555;
}


/* ========================================
   DETAILS
======================================== */

.coach-details {
    margin-top: 25px;

    padding: 18px 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
}

.coach-details div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.coach-details span {
    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: #777;
}

.coach-details strong {
    font-size: 14px;
    text-transform: uppercase;
}


/* ========================================
   CTA
======================================== */

.coaches-cta {
    min-height: 500px;

    padding: 90px 4%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #000;
}

.coaches-cta > p {
    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 4px;
}

.coaches-cta h2 {
    margin-bottom: 35px;

    font-size: clamp(55px, 8vw, 110px);

    line-height: 0.83;

    letter-spacing: -4px;
}

.coaches-cta h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke: 2px #fff;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .coaches-hero {
        min-height: 520px;
    }

    .coach-section {
        grid-template-columns: 1fr;
    }

    .coach-section-reverse .coach-image,
    .coach-section-reverse .coach-content {
        order: initial;
    }

    .coach-image {
        height: 430px;
    }

    .coach-content {
        padding: 60px 6%;
    }

}


@media (max-width: 600px) {

    .coaches-hero-content {
        padding-bottom: 60px;
    }

    .coaches-hero h1 {
        font-size: 62px;

        letter-spacing: -2px;
    }

    .coach-image {
        height: 360px;
    }

    .coach-content {
        padding: 55px 5%;
    }

    .coach-content h2 {
        font-size: 50px;

        letter-spacing: -2px;
    }

    .coach-details {
        grid-template-columns: 1fr;
    }

    .coaches-cta {
        min-height: 460px;
    }

    .coaches-cta h2 {
        font-size: 52px;

        letter-spacing: -2px;
    }

    .single-coach {
    min-height: 520px;
}

.single-coach .coach-image {
    height: 520px;
}

.single-coach .coach-content {
    padding: 60px 8%;
}
}

