
.news-thumb .image-wrapper {
    position: relative;
    overflow: hidden;
    display: block;
}

.news-thumb .image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.news-thumb .image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 100%
    );
    transform: skewX(-25deg);
    z-index: 2;
    pointer-events: none;
}

.news-thumb .image-wrapper:hover::before {
    animation: shine 0.75s forwards;
}

@keyframes shine {
    0% {
        left: -75%;
    }
    100% {
        left: 125%;
    }
}
