.custom-gallery {
    display: grid;
    grid-gap: 10px;
    margin-bottom: 20px;
}
.custom-gallery.columns-5 {
    grid-template-columns: repeat(5, 1fr);
}
.gallery-item {
    position: relative;
    overflow: hidden;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.custom-gallery.equal-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}
.gallery-item.equal-height {
    aspect-ratio: 4/3;
    overflow: hidden;
}
.image-wrapper {
    display: block;
    width: 100%;
    height: 100%;
}
.gallery-image.equal-size {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Custom Image Shortcode Styles */
.custom-image {
    margin-bottom: 20px;
    max-width: 100%;
}

.custom-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.custom-image.align-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.custom-image.align-left {
    float: left;
    margin-right: 20px;
}

.custom-image.align-right {
    float: right;
    margin-left: 20px;
}

.image-caption {
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}
