/* ========================================
   MPI Coaches Widget Styles — Mobile First
   ======================================== */

/* ---- Base / Mobile ---- */

.mpi-coaches {
    background-color: #000000;
    padding: 60px 20px;
}

.mpi-coaches__inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header */
.mpi-coaches__header {
    text-align: center;
    margin-bottom: 40px;
}

.mpi-coaches__label {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #FFDE59;
    margin-bottom: 12px;
}

.mpi-coaches__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0 0 14px 0;
}

.mpi-coaches__description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Grid — single column on mobile */
.mpi-coaches__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 auto;
}

/* Card */
.mpi-coaches__card {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.mpi-coaches__card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 222, 89, 0.3);
    box-shadow: 0 20px 50px rgba(255, 222, 89, 0.06);
}

/* Photo */
.mpi-coaches__photo {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.mpi-coaches__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mpi-coaches__card:hover .mpi-coaches__photo img {
    transform: scale(1.05);
}

/* Placeholder when no photo */
.mpi-coaches__photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #111111 100%);
}

.mpi-coaches__photo-initial {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: rgba(255, 222, 89, 0.15);
    user-select: none;
}

/* Info */
.mpi-coaches__info {
    padding: 20px;
}

.mpi-coaches__name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 4px 0;
}

.mpi-coaches__role {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

/* Badge */
.mpi-coaches__badge {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #FFDE59;
    background-color: rgba(255, 222, 89, 0.1);
    border: 1px solid rgba(255, 222, 89, 0.25);
    border-radius: 50px;
    padding: 4px 10px;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Card Description */
.mpi-coaches__card-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.55);
    margin: 6px 0 0 0;
}

/* ========================================
   Tablet  (≥ 768px)
   ======================================== */

@media (min-width: 768px) {
    .mpi-coaches {
        padding: 80px 40px;
    }

    .mpi-coaches__header {
        margin-bottom: 48px;
    }

    .mpi-coaches__label {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .mpi-coaches__title {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .mpi-coaches__description {
        font-size: 16px;
    }

    .mpi-coaches__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: none;
    }

    .mpi-coaches__card {
        border-radius: 16px;
    }

    .mpi-coaches__photo {
        height: 260px;
    }

    .mpi-coaches__photo-initial {
        font-size: 64px;
    }

    .mpi-coaches__info {
        padding: 24px;
    }

    .mpi-coaches__name {
        font-size: 20px;
    }

    .mpi-coaches__role {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .mpi-coaches__badge {
        font-size: 12px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .mpi-coaches__card-desc {
        font-size: 14px;
        margin: 8px 0 0 0;
    }
}

/* ========================================
   Desktop  (≥ 1025px)
   ======================================== */

@media (min-width: 1025px) {
    .mpi-coaches {
        padding: 100px 40px;
    }

    .mpi-coaches__header {
        margin-bottom: 60px;
    }

    .mpi-coaches__label {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .mpi-coaches__title {
        font-size: 42px;
        margin-bottom: 20px;
    }

    .mpi-coaches__description {
        font-size: 17px;
    }

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

    .mpi-coaches__photo {
        height: 280px;
    }

    .mpi-coaches__photo-initial {
        font-size: 72px;
    }

    .mpi-coaches__info {
        padding: 28px 24px;
    }

    .mpi-coaches__name {
        font-size: 22px;
    }
}
