.gallery_block-3 .block_title {
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 600;
}

.gallery_block-3_container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.gallery_block-3_item {
    position: relative;
    width: 100%;
}

.gallery_block-3_photo {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery_block-3_photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery_block-3_photo:hover img {
    transform: scale(1.05);
}

.gallery_block-3_photo_link{
	cursor: pointer;
}

/* Планшеты */
@media (max-width: 1200px) {
    .gallery_block-3_container {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .gallery_block-3_photo {
        height: 200px;
    }
}

@media (max-width: 992px) {
    .gallery_block-3_container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .gallery_block-3 .block_title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* Мобилки */
@media (max-width: 768px) {
    .gallery_block-3_container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery_block-3_photo {
        height: 180px;
    }
    
    .gallery_block-3 .block_title {
        font-size: 24px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .gallery_block-3_container {
        gap: 10px;
    }
    
    .gallery_block-3_photo {
        height: 140px;
        border-radius: 6px;
    }
    
    .gallery_block-3 .container {
        padding: 0 15px;
    }
}

/* Для совсем маленьких */
@media (max-width: 360px) {
    .gallery_block-3_photo {
        height: 120px;
    }
}