.gallery {
    max-width: 1222px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.gallery .title {
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
}

.gallery .text {
    font-weight: 400;
    font-size: 14px;
    margin-top: 12px;
    margin-bottom: 24px;
    line-height: 20px;
    text-align: center;
}

.gallery .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .gallery { 
        padding: 10px 15px 40px;
    } 
    .gallery .content {
        grid-template-columns: 1fr;
    }
}