/**
 * Copyright © Magefan (support@magefan.com). All rights reserved.
 * See LICENSE.txt for license details (http://opensource.org/licenses/osl-3.0.php).
 *
 * Glory to Ukraine! Glory to the heroes!
 */
.post-slider .post-image {
    overflow: hidden;
    position: relative;
}
.post-slider .post-image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    background-color: rgba(34, 34, 34, 0.2);
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.post-slider .post-image:hover:before {
    opacity: 1;
}
.post-slider .post-image img {
    transition: all .4s ease-in-out;
}
.post-slider .post-image:hover img {
    transform: scale(1.1);
}