.teacher-grid{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 20px 20px;
}

.teacher-grid-item{
    width: 30%;
}

@media screen and (max-width: 768px){
    .teacher-grid-item{
        width: 100%;
    }
}