.news-listing-page h1.title {
    text-align: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 29px;
    display: flex;
    justify-content: center;
}

.news-listing-page .description {
    display: block;
    width: 100%;
    text-align: center;
}

.news-listing-page .content-heading h1.title.h1 span {
    background: transparent;
    padding: 0;
}

.news-listing-page .content-heading {
    max-width: 920px;
    margin: 0 auto;
}

.news-listing {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 120px;
}

.news-listing .description-detail p {
    padding-bottom: 2px;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #6A6A6A;
}

.news-listing .news-item {
    display: block;
    width: calc(100% / 2 - 20px);
}

.news-listing .detail-heading {
    display: flex;
    column-gap: 10px;
    padding-top: 16px;
}

.news-listing .news-content {
    padding-top: 0;
    padding-bottom: 120px;
}

.news-listing .post-thumbnail img{
    border-radius: 10px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: cover;
}

.news-listing .post-thumbnail {
    background-size: cover;
    padding-bottom: 52.6%;
    width: 100%;
    position: relative;
}

.news-listing .categories-name span {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    color: #5F7935;
}

.news-listing .date span {
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: 0;
    color: #6A6A6A;
}

.news-listing h2.title-post {
    font-size: 20px;
    font-weight: 500;
    line-height: 28.96px;
    color: #000000;
    margin-top: 12px;
    margin-bottom: 10px;
    display: block;
}

.loading-spinner {
    text-align: center;
    margin-top: 20px;
    display: none !important;
    justify-content: center;
    padding-bottom: 100px;
}

.loading-spinner.show {
    display: flex !important;
}

.loading-spinner .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


@media screen and (max-width:767px) {
    .news-listing .news-item {
        width: 100%;
    }

    .news-listing .post-thumbnail {
        padding-bottom: 95.6%;
    }

    .news-listing-page h1.title {
        margin-top: 40px;
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 30px;
    }

    .news-listing-page .description p {
        line-height: 26px;
    }

    .news-listing {
        gap: 30px;
        padding-top: 29px;
        padding-bottom: 66px;
    }

    .news-listing-page .news-content {
        padding-bottom: 40px;
    }
}