<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Article gallery*/
.article-gallery .item{
    position: relative;
    overflow: hidden;
}

.article-gallery .item:before{
    position: absolute;
    height: 100%;
    width:100%;
    background: rgba(0,0,0,0.5);
    content: '';
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    pointer-events: none;

}
.article-gallery .item span.title{
    position: absolute;
    bottom: -100%;
    z-index: 100;
    color: #fff;
    padding: 5px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

}
.article-gallery .item:hover span.title{
    bottom: 0;
}
.article-gallery .item:after{
    content: url("../../images/core/zoom.png");
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    pointer-events: none;
}
.article-gallery .item:hover:before,
.article-gallery .item:hover:after{
    opacity: 1;
}

.article-gallery .item{
    margin-bottom: 15px;
}

@media screen and (max-width: 576px){
    .article-gallery .item{
        margin-bottom: 15px;
    }

    .article-gallery {
        margin-bottom: 10px;
    }
}
</pre></body></html>