/* Coaches page */

.coaches-hero {
    padding: 80px 0 70px;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.coaches-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(68, 132, 206, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 70% 50% at 80% 20%, rgba(249, 207, 0, 0.1) 0%, transparent 55%);
    pointer-events: none;
}

.coaches-hero .container {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.coaches-hero-eyebrow {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.coaches-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.coaches-hero-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.75;
    max-width: 700px;
    margin: 0 auto;
}

.coaches-page-section {
    padding: 80px 0 100px;
    background-color: var(--text-white);
}

.coaches-page-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.coaches-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.coach-profile-card {
    text-align: center;
}

.coach-profile-photo {
    width: 280px;
    height: 280px;
    margin: 0 auto 28px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(28, 39, 52, 0.15);
}

.coach-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coach-profile-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.coach-profile-card p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 28px;
}

.coach-profile-card .btn {
    min-width: 200px;
}

@media (max-width: 768px) {
    .coaches-hero {
        padding: 60px 0 50px;
    }

    .coaches-page-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .coach-profile-photo {
        width: 220px;
        height: 220px;
    }
}
