.residents {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    @media (max-width: 768px) {
        justify-content: center;
    }
}

.resident {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    padding: 10px;
    align-content: center;
}

.resident-link:hover .resident-img {
    transform: scale(1.05);
}

.resident-img {
    width: auto;
    max-width: 270px;
    height: auto;
    transition: all 0.3s;
}
