.ast-article-single .post-listing {
    max-width: 670px;
    margin: 32px auto 0;
    transition: transform 0.2s;
}
.articles-heading.post-list-heading {
    display: flex;
    justify-content: flex-end;
}
.post-listing .block-item {
    border: 3px solid rgba(29, 48, 59, 0.1);
    border-radius: 12px;
    padding: 32px;
    display: flex;
    column-gap: 32px;
    margin-bottom: 20px;
    position: relative;
}
.post-listing .block-item .block-click {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}
.post-listing .block-item .block-click::after {
    display: none;
}
.post-listing .block-item .block-left {
    width: 46%;
}
.post-listing .block-item .block-right {
    width: 100%;
}
.post-listing .block-item:hover {
    border-color: var(--dark-blue);
}
.post-listing .block-item .block-img {
    overflow: hidden;
    border-radius: 12px;
}
.post-listing .block-item .block-img img {
    width: 100%;
    max-height: 125px;
    min-height: 125px;
    transition: transform 0.4s;
    object-fit: cover;
}
.post-listing .block-item:hover .block-img img {
    transform: scale(1.2);
}
.post-listing .article-date {
    font-size: 14px;
    color: var(--dark);
}
.post-listing .article-title {
    font-size: 36px;
    margin-bottom: 32px;
}
.post-listing .article-cont {
    font-size: 20px;
    margin-bottom: 16px;
}
.post-listing .article-title,
.post-listing .article-cont {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    /* -webkit-transition: max-height 2s ease-in-out;
  -moz-transition: max-height 2s ease-in-out;
  -ms-transition: max-height 2s ease-in-out;
  -o-transition: max-height 2s ease-in-out;
  transition: max-height 2s ease-in-out; */
}

.post-listing .block-item a {
    padding: 0;
    position: relative;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
}
.post-listing .block-item a img {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}
.post-listing .block-item a:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--dark-blue);
    transform: scaleX(0);
    will-change: transform;
    transform-origin: right;
    transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.35, 1);
}
.post-listing .block-item a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}

/*pagination css*/
.sort {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.post-list-heading .btn-content select {
    padding: 14px 45px 14px 24px;
    background: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: var(--dark-blue);
    cursor: pointer;
}
.post-list-heading .btn-content select:hover {
    color: var(--dark-warm);
}
.post-list-heading .btn-content select:hover option {
    color: var(--dark-blue);
}
.post-list-heading .btn-content:hover:after {
    filter: invert(1);
}
.sort .sorting-link {
    font-size: 16px;
    margin-right: 11px;
    margin-bottom: 0;
    padding-left: 30px;
    position: relative;
}

.page-count a:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--dark-blue);
    transform: scaleX(0);
    will-change: transform;
    transform-origin: right;
    transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.35, 1);
}
.page-count a:after {
    bottom: 5px;
}
.page-count a:hover:after {
    transform: scaleX(1);
    transform-origin: left;
}
.sort .sorting-link:before {
    content: "";
    background: url(images/icon-sort.svg);
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    position: absolute;
    top: 5px;
    left: 0;
    pointer-events: none;
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}
.page-count {
    display: flex;
}
.page-count a,
.page-count span {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 27px;
    margin-right: 8px;
    border-radius: 50%;
    position: relative;
}
.page-count .previouspostslink,
.page-count .nextpostslink {
    background: var(--light-blue3);
    font-size: 0;
    border-radius: 50%;
    position: relative;
}
.page-count .nextpostslink {
    transform: rotate(180deg);
}
.page-count .previouspostslink:hover,
.page-count .nextpostslink:hover {
    background: var(--dark-blue);
}
.page-count .previouspostslink:after,
.page-count .nextpostslink:after {
    display: none;
}
.page-count .previouspostslink:before,
.page-count .nextpostslink:before {
    content: "";
    background: url(images/pagination-arrow.svg);
    width: 9px;
    height: 15px;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.page-count .previouspostslink:hover:before,
.page-count .nextpostslink:hover:before {
    filter: invert(1);
}
.page-count span.current {
    background: var(--light-blue);
}

@media only screen and (max-width: 1024px) {
    .post-listing .block-item {
        margin-bottom: 20px;
        border-color: var(--dark-blue);
    }
}
@media only screen and (max-width: 991px) {
    .post-listing {
        margin-bottom: 60px;
    }
    .post-listing .block-item {
        display: block;
        padding: 16px;
    }
    .post-listing .block-item .block-left {
        width: 100%;
        margin-bottom: 16px;
    }
    .post-listing .block-item .block-img img {
        width: 100%;
        max-height: 260px;
        min-height: 260px;
    }
    .post-listing .article-title {
        font-size: 24px;
    }
    .post-listing .article-cont {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .post-listing .block-item .block-img img {
        max-height: 180px;
        min-height: 180px;
    }
    .sort .sorting-link {
        display: none;
    }
    .post-list-heading .btn-content select {
        padding: 14px 45px;
    }
    .post-list-heading .btn-content:before {
        content: "";
        background: url(images/icon-sort.svg);
        width: 24px;
        height: 24px;
        background-repeat: no-repeat;
        position: absolute;
        top: 55%;
        left: 15px;
        transform: translateY(-50%);
        pointer-events: none;
    }
    .post-list-heading .btn-content:hover:before {
        filter: invert(1);
    }
    .pagination {
        margin-top: 64px;
    }
}
