.by-coaches-wrap,
.by-coaches-wrap *{
    box-sizing:border-box;
}

.by-coaches-wrap{
    width:100%;
    background:#5f8888;
    padding:22px 18px 34px;
    font-family:'Montserrat', Arial, sans-serif;
}

.by-coaches-inner{
    width:min(704px,100%);
    margin:0 auto;
}

.by-coaches-title{
    margin:0 0 36px 19px;
    color:#fff;
    font-family:Georgia, 'Times New Roman', serif;
    font-size:20px;
    line-height:1.2;
    font-weight:400;
    letter-spacing:.1px;
}

.by-coaches-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px 10px;
}

.by-coach-card{
    min-width:0;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
    box-shadow:none;
    transition:transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.by-coach-card:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.by-coach-card.is-hidden{
    display:none;
}

.by-coach-link{
    display:block;
    height:100%;
    color:inherit;
    text-decoration:none!important;
}

.by-coach-image{
    width:100%;
    aspect-ratio:1.84/1;
    min-height:124px;
    background:#c6c6cb center/cover no-repeat;
    border-radius:12px 12px 9px 9px;
}

.by-coach-body{
    padding:18px 21px 15px;
}

.by-coach-name{
    margin:0;
    color:#111;
    font-family:Georgia, 'Times New Roman', serif;
    font-size:14px;
    line-height:1.13;
    font-weight:400;
}

.by-coach-role{
    margin:2px 0 12px;
    color:#111;
    font-size:13px;
    line-height:1.18;
    font-weight:400;
    min-height:16px;
}

.by-coach-level{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:18px;
    min-width:87px;
    max-width:100%;
    padding:0 14px;
    border-radius:999px;
    background:#e4e5e8;
    color:#6b898d;
    font-size:9px;
    line-height:1;
    font-weight:500;
    text-transform:uppercase;
    white-space:nowrap;
}

.by-coach-button{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:24px;
    margin-top:12px;
    border:1px solid #a8c5c8;
    border-radius:4px;
    color:#4d7578;
    background:#fff;
    font-size:9px;
    font-weight:500;
    line-height:1;
    transition:background .2s ease, color .2s ease, border-color .2s ease;
}

.by-coach-card:hover .by-coach-button{
    background:#a6d6d6;
    border-color:#a6d6d6;
    color:#111;
}

.by-coaches-actions{
    display:flex;
    justify-content:center;
    margin-top:25px;
}

.by-coaches-load{
    appearance:none;
    border:0;
    cursor:pointer;
    min-height:36px;
    padding:7px 20px;
    border-radius:999px;
    background:#a6d6d6;
    color:#050505;
    font-family:'Montserrat', Arial, sans-serif;
    font-size:17px;
    line-height:1.1;
    font-weight:400;
    transition:transform .2s ease, filter .2s ease;
}

.by-coaches-load:hover{
    transform:translateY(-1px);
    filter:brightness(1.03);
}

.by-coaches-empty{
    margin:0;
    color:#fff;
    font-size:15px;
}

@media (max-width: 760px){
    .by-coaches-wrap{
        padding:24px 16px 32px;
    }
    .by-coaches-title{
        margin-left:0;
        margin-bottom:24px;
        text-align:left;
    }
    .by-coaches-grid{
        grid-template-columns:repeat(2,1fr);
        gap:14px;
    }
}

@media (max-width: 520px){
    .by-coaches-wrap{
        padding:22px 14px 30px;
    }
    .by-coaches-grid{
        grid-template-columns:1fr;
        gap:16px;
    }
    .by-coach-image{
        aspect-ratio:1.9/1;
        min-height:145px;
    }
    .by-coach-body{
        padding:18px 20px 16px;
    }
    .by-coach-name{
        font-size:16px;
    }
    .by-coach-role{
        font-size:14px;
    }
    .by-coaches-load{
        font-size:16px;
    }
}
