.jw-leiter-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:40px;
    margin:70px auto;
}

.jw-leiter-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:all .35s ease;
    max-width:380px;
    margin:auto;
}

.jw-leiter-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.jw-leiter-link{
    display:block;
    color:inherit;
    text-decoration:none;
}

.jw-leiter-image{
    display:flex;
    justify-content:center;
    padding:35px 20px 15px;
    overflow:hidden;
}

.jw-leiter-image img{
    width:190px;
    height:190px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid #f7f7f7;
    transition:transform .35s ease;
}

.jw-leiter-card:hover .jw-leiter-image img{
    transform:scale(1.05);
}

.jw-leiter-content{
    padding:25px 35px 35px;
    text-align:center;
}

.jw-leiter-name{
    margin-bottom:30px;
    color:#244033;
}

.jw-leiter-info{
    margin:10px auto;
    max-width:250px;
    display:flex;
    justify-content:space-between;
    gap:10px;
    font-size:15px;
}

.jw-leiter-info strong{
    color:#244033;
}

.jw-leiter-button{
    display:inline-block;
    margin-top:30px;
    padding:12px 26px;
    background:#2d6a4f;
    color:#fff;
    border-radius:999px;
    font-weight:600;
    transition:all .3s;
}

.jw-leiter-card:hover .jw-leiter-button{
    background:#244033;
}