/* Default Gallery Style */
.us-gallery {
    column-count: 3; /* Adjust the number of columns as needed */
    column-gap: 10px;
    margin-bottom: 20px; /* Space between galleries if multiple on one page */
}

.us-gallery-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    position: relative;
}

.us-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.us-gallery-item img:hover {
    transform: scale(1.05);
}

.us-gallery-caption {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* Responsive adjustments for columns */
@media (max-width: 1200px) {
    .us-gallery {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .us-gallery {
        column-count: 1;
    }
}

/* Hover Effect Style */
.us-gallery-hover-effect .us-gallery-item img {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.us-gallery-hover-effect .us-gallery-item img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
