.ws-block-ItemPost {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.ws-item-post--image {
    height: 180px;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.ws-item-post--image.ws-item-post--image__catalog {
    height: 240px;
    width: 180px;
    overflow: hidden;
}

.ws-block-ItemPost > .ws-item-post--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
}

.ws-item-post--image:hover img {
    transform: scale(1.1);
}

.ws-item-post--content {
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    gap: 15px;
}

.ws-item-post--content > span {
    padding-left: 6px;
    padding-right: 16px;
}

.ws-item-post--content > i,
.ws-item-post--content > svg {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
}

.ws-item-post--content .ws-item-post--title > h2 {
    color: var(--qerys-secondary-color);
    font-weight: 500;
    transition: color .1s ease-in;
}

.elementor-widget-ws-search-archive .ws-item-post--content .ws-item-post--title > h2 {    
    font-size: 16px;
    font-weight: normal;
    color: #000;
    font-style: normal;
    line-height: 21px;
}


.ws-item-post--content .ws-item-post--title:hover > h2 {
    color: var(--qerys-primary-color);
}

.ws-item-post--author {
    text-transform: capitalize;
}

.ws-item-post--content > .ws-item-post.ws-item-post--preview {
    line-height: 22px;
}

@media (max-width: 767px) {
    .ws-block-ItemPost {
        flex-direction: column;
    }

    .ws-item-post--image,
    .ws-item-post--image.catalog {
        width: 100%;
        height: 180px;
        aspect-ratio: auto;
    }

    .ws-item-post--content {
        gap: 7px;
    }
}

/* --- */

.ws-search-archive--post .ws-block-ItemPost {
    flex-direction: column;
    background-color: var(--qerys-quaternary-color);
    height:100%;
    gap:0;
}
.ws-search-archive--post .ws-block-ItemPost .qerys-button {
    width: 100%;
    margin-top: auto;
}
.ws-search-archive--post .ws-item-post--image{
    padding:6px;
    height: auto;
    width: 100%;
}

.ws-search-archive--post .ws-item-post--preview,
.ws-search-archive--post .ws-block.ws-block-ArticleOverview{
    display:none;
}


.ws-search-archive--post .ws-item-post--title{
    padding: 19px 26px 25px 26px !important;
    font-size: 16px !important;
    font-weight: normal !important;
    color: #000 !important;
    font-style: normal !important;
    line-height: 21px !important;
    width:100%;
}

.ws-search-archive--post .ws-item-post--image:hover img {
    transform: scale(1);
}