.ws-elementor-widget-ws-last-news {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    align-self: stretch;
    flex-wrap: wrap;
}

.ws-last-news--container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 calc((100% / 3) - (50px / 3));
}

.ws-last-news--top {
    position: relative;
    display: flex;
    height: 300px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    align-self: stretch;
    text-decoration:none !important;
}

.ws-last-news--image-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.ws-last-news--image-container img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform .2s;
}

.ws-last-news--gradient-container {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 50%, rgba(0, 0, 0, 0.90) 100%);
    z-index: 1;
}

.ws-last-news--title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-self: flex-start;
    padding: 25px;
    gap: 10px;
    color: #fff;
    z-index: 1;
}

.ws-last-news--title > i,
.ws-last-news--title > svg {
    color: var(--qerys-primary-color);
    transition: translate .2s;
}

.ws-last-news--bottom {
    display: flex;
    min-height: 175px;
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    align-self: stretch;
    background-color: var(--qerys-tertiary-color);
}

.ws-last-news--description {
    width: 100%;
    flex-shrink: 0;
    align-self: stretch;
}

.ws-elementor-widget-ws-last-news > .ws-last-news--button {
    margin-left: auto;
    justify-content: end;
}

.ws-last-news--top:hover .ws-last-news--image-container img {
    transform: scale(1.1);
}

.ws-last-news--top:hover .ws-last-news--title > i,
.ws-last-news--top:hover .ws-last-news--title > svg {
    translate: 10px;
}



@media (max-width: 1025px) {
    .ws-last-news--container {
        flex: 0 0 calc(50% - 25px);
    }
}

@media (max-width: 767px) {
    .ws-last-news--container {
        flex: 0 0 100%;
    }

    .ws-last-news--bottom {
        padding: 10px;
    }

    .ws-last-news--button {
        margin-top: 0;
    }
}