.staff-list {
    display: grid;
grid-template-columns: repeat(4, 1fr);    gap: 32px;
    max-width: 1600px;
    padding: 0 16px;
}

.staff-item {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s ease;
       padding: 15px;
}

.staff-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.staff-item img {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

.staff-item h3 {
    margin: 20px 0 20px0px;
}

.staff-item p {
    line-height: 1.5;
    margin-bottom: 12px;
}



