
.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 400px));
    justify-content: center; 
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}



.person-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    max-width: 360px; 
    width: 100%;
    margin: 0 auto;   
}


.person-content {
    padding: 20px 15px;
    text-align: center;
}

.person-name {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 5px;
}

.person-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #555;
}

.person-phone a {
    font-size: 20px;
    text-decoration: none;
    color: #000;
    border-bottom: 1px solid #000;
}

.person-phone a:hover {
    border-bottom: none;
}



.person-image {
    width: 55%;
    height: 220px;
    overflow: hidden;
    margin: 0 auto; 
    margin-top: 10px;
}


.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}
