/* MwImageGallery — Global Stylesheet
   Prefix: mw-ig-*
   ========================================================================= */

.mw-ig-image {
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s;
}

.mw-ig-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s;
    border-radius: inherit;
}

.mw-ig-image:hover::after {
    background: rgba(255, 255, 255, 0.1);
}
