.easy-post-gallery .gallery-title {
    margin-bottom: 15px;
}

.easy-post-gallery .gallery-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.easy-post-gallery .gallery-image a {
    display: block;
}

.easy-post-gallery .gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .easy-post-gallery .gallery-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .easy-post-gallery .gallery-images {
        grid-template-columns: 1fr;
    }

    .easy-post-gallery .gallery-image img {
        height: 180px;
    }
}
