.page-content .main-wrapper .page-title {
    color: #212121;
    text-align: center;
    font-family: 'Fixel Display', serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 1.2px;
}

.page-content .main-wrapper.post {
    padding: 10px 170px;
}

.post-separator {
    line-height: 0;
    border: 1px solid #dbdfe4;
    margin: 32px 0;
}

.post-title {
    color: #690DD3;
    text-align: center;
    font-family: 'Fixel Display', serif;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    margin: 16px auto;
}

.post-pagination {
    text-align: center;
    margin: 24px auto;
}

.page-content .main-wrapper .post-pagination a {
    color: #212121;
    text-decoration: none;
    font-weight: 600;
}

.page-content .main-wrapper .post-pagination span.current {
    color: #690DD3;
}

.news-post-preview {
    border-radius: 5px;
    background: #690DD3;
    height: 178px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    text-decoration: none;
}

.news-container .news-post-preview {
    margin-bottom: 0;
    min-width: 23%;
}

.news-post-preview .news-post-preview-title {
    font-family: 'Fixel Display', serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #EDEFF1;
    padding: 20px;
}

.news-post-preview .news-post-preview-date {
    font-size: 15px;
    line-height: 24px;
    color: #EDEFF1;
    font-family: 'Fixel Display', serif;
    font-style: normal;
    font-weight: 400;
    padding: 16px 20px;
}

.news-post-preview .news-post-preview-icon {
    width: 87px;
    height: 88px;
    flex-shrink: 0;
    position: absolute;
    right: 0;
    bottom: 0;
}

.news-post-preview .news-post-preview-icon img#icon {
    color: #FFFFFF46;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    width: 87px;
    height: 88px;
}


.news-post-preview:hover .news-post-preview-icon img#icon{
    transform: rotate(90deg) translateX(150%);
    width: 0;
    height: 0;
    opacity: 0;
}

.news-post-preview .news-post-preview-icon img#arrow {
    transition: all 0.3s ease-in-out;
    width: 87px;
    height: 88px;
    opacity: 0;
    position: absolute;
    bottom: 6px;
    right: 10px;
}


.news-post-preview:hover .news-post-preview-icon img#arrow{
    transform: rotate(90deg);
    width: 37px;
    height: 34px;
    opacity: 1;
}

.page-content .main-wrapper ul.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.news-list li {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

ul.news-list li .news-post-preview {
    width: 31%;
}

.news-container .news-separator,
ul.news-list li .news-separator {
    min-width: 30px
}

.down-clear {
    height: 70px;
}

.news-container {
    display: flex;
    flex-direction: column;
    padding: 32px 78px 40px;
    background-color: #fff;
    margin-bottom: 40px;
}

.news-container .news-post-container {
    display: flex;
    flex-direction: row;
    padding: 24px 0 32px;
}

.all-news-btn {
    width: 100%;
    display: flex;
    justify-content: center;
}

.all-news-btn a {
    display: flex;
    width: 232px;
    padding: 12px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #EDEFF1;
    color: #464B53;
    text-decoration: none;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

#load-more-button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

#load-more-button-container #load-more-button {
    display: flex;
    width: 232px;
    height: 48px;
    padding: 12px 40px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #EDEFF1;
    border: none;
    cursor: pointer;
}

@media (max-width: 1170px) {
    .page-title {
        padding-top: 24px;
    }

    .post-pagination {
        padding-bottom: 24px;
    }

    .page-content .main-wrapper.post {
        padding: 10px;
    }

    #load-more-button-container {
        padding-bottom: 24px;
    }
}

@media (max-width: 768px) {
    ul.news-list li .news-post-preview {
        width: 100%;
    }

    .news-container {
        padding: 20px;
        margin-bottom: 28px;
    }

    .news-container .news-post-container {
        padding: 0;
    }

    ul.news-list li,
    .news-container .news-post-container {
        flex-direction: column;
    }

    .down-clear {
        height: 28px;
    }

    .news-container .news-separator {
        min-height: 12px;
    }

    .all-news-btn {
        margin-top: 16px;
    }

    .all-news-btn a {
        width: 200px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .all-news-btn a {
        width: 100%;
    }

    .post-title {
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
    }
}