/**
 * WidgetKit Gallery Styles
 */

.widgetkit-gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
    width: 100%;
    box-sizing: border-box;
}

.widgetkit-gallery::after {
    content: "";
    display: table;
    clear: both;
}

.widgetkit-gallery-item {
    box-sizing: border-box;
    padding: 5px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

/* Wall style layout */
.widgetkit-style-wall .widgetkit-gallery-item {
    width: 25%;
}

@media (max-width: 1024px) {
    .widgetkit-style-wall .widgetkit-gallery-item {
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .widgetkit-style-wall .widgetkit-gallery-item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .widgetkit-style-wall .widgetkit-gallery-item {
        width: 100%;
    }
}

.widgetkit-gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.widgetkit-gallery-item:hover img {
    transform: scale(1.05);
}

.widgetkit-gallery-caption {
    position: absolute;
    bottom: 5px;
    left: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 8px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.widgetkit-gallery-item:hover .widgetkit-gallery-caption {
    opacity: 1;
}