/**
 * EZ Golf Academy - Coaches Page
 *
 * Page-specific styles. Shared tokens, buttons, containers,
 * and placeholders come from home.css (loaded as dependency).
 *
 * @package EZGolfAcademy
 * @since   1.1.0
 */

/* =========================================
   Page shell
   ========================================= */

.pg-coaches {
    background: var(--ez-white);
}

/* =========================================
   Hero  (self-contained duplicate of pg-hero
   so page doesn't depend on programs.css)
   ========================================= */

.pg-coaches .pg-hero {
    padding: 80px 0 60px;
    background: var(--ez-white);
}

.pg-coaches .pg-hero__title {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    color: var(--ez-navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}

.pg-coaches .pg-hero__sub {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #4A5568;
    max-width: 580px;
    margin: 0 auto;
}

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

/* =========================================
   Coach Bio — 2-column layout
   ========================================= */

.coach-bio {
    background: var(--ez-white);
}

.coach-bio__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
}

/* Reverse variant: photo on right */
.coach-bio__grid--reverse {
    grid-template-columns: 1.15fr 0.85fr;
}

.coach-bio__grid--reverse .coach-bio__photo {
    order: 2;
}

.coach-bio__grid--reverse .coach-bio__copy {
    order: 1;
}

.coach-bio__role {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ez-gold);
    margin: 0 0 20px;
}

.coach-bio__copy p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4A5568;
    margin: 0 0 16px;
}

.coach-bio__sub-title {
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ez-navy);
    margin: 28px 0 12px;
}

.coach-bio__copy .hp-btn {
    margin-top: 12px;
}

/* Bullet list */
.coach-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
}

.coach-bullets li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4A5568;
    margin-bottom: 6px;
}

.coach-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ez-gold-primary, #FFC72C);
}

@media (max-width: 768px) {
    .coach-bio__grid,
    .coach-bio__grid--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .coach-bio__grid--reverse .coach-bio__photo {
        order: 0;
    }

    .coach-bio__grid--reverse .coach-bio__copy {
        order: 0;
    }
}

/* =========================================
   Integrated Note — 3-step flow
   ========================================= */

.coach-integrated {
    background: var(--ez-white);
}

.coach-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 36px 0 32px;
    flex-wrap: wrap;
}

.coach-step {
    background: #FFFFFF;
    border: 1px solid rgba(255, 199, 44, 0.25) !important;
    border-radius: 16px;
    padding: 20px 28px;
    text-align: center;
    min-width: 130px;
}

.coach-step__label {
    display: block;
    font-family: var(--ez-font-display, 'DM Sans', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ez-navy);
    margin-bottom: 4px;
}

.coach-step__detail {
    display: block;
    font-size: 0.85rem;
    color: var(--ez-gold);
    font-weight: 600;
}

.coach-step__arrow {
    display: flex;
    align-items: center;
    color: var(--ez-navy);
    opacity: 0.3;
}

.coach-step__arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.coach-integrated__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #4A5568;
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .coach-steps {
        flex-direction: column;
        gap: 8px;
    }

    .coach-step__arrow {
        transform: rotate(90deg);
    }

    .coach-step {
        width: 100%;
        max-width: 220px;
    }
}
