.custom-image-gallery {
    max-width: 1200px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.custom-image-gallery .gallery-controls {
    margin-bottom: 15px;
    padding: 5px 10px;
    background: #eee;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-image-gallery .gallery-container {
    margin-left: -15px; /* gutter offset */
}

.custom-image-gallery .gallery-item {
    width: 23%;
    margin-left: 15px;
    margin-bottom: 15px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px;
    box-sizing: border-box;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.custom-image-gallery .gallery-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.custom-image-gallery .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 8px;
    border-radius: 3px;
}

.custom-image-gallery .gallery-item h3 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: #333;
}

.custom-image-gallery .gallery-item p {
    margin: 0;
    font-size: 0.875rem;
    color: #666;
}
