.four-items-wrap{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.four-item-img{
    height: 200px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}
.four-item-title{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.5;
    height: 4em;
}
.three-items-wrap{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.three-item-img{
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.three-item-title{
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.5;
}