/* ----- SECTION POST ----- */
.section-post {
    background-color: #000035;
    color: #ffffff;
    padding-top: 18.2rem;
    padding-bottom: 13rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.section-post::after {
    content: '';
    position: absolute;
    background-image: url(../../img/blobb.png);
    background-repeat: no-repeat;
    background-size: cover;
    right: -75%;
    bottom: -115%;
    width: 198.875rem;
    height: 161.25rem;
    transform: rotate(115deg);
    z-index: -1;
}
.section-post .post-date {
    font-size: 1.875rem;
    line-height: 3.75rem;
    display: block;
    margin-bottom: 2.5rem;
}
.section-post .col--title {
    padding-top: 0.7rem;
    padding-left: 1.5rem;
}
.section-post .col--title {
    padding-top: 0.7rem;
    padding-left: 1.5rem;
}
.section-post h3 {
    font-weight: 500;
    margin-right: -15rem;
    margin-bottom: 7.8rem;
    z-index: 10;
    position: relative;
}
.section-post h6 {
    font-size: 1rem;
    text-transform: none;
    font-weight: 700;
    line-height: 1.5625rem;
    letter-spacing: 0;
    margin-bottom: 1.6rem;
}
.section-post h5 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5625rem;
    margin-bottom: 1.7rem;
}
.section-post .social-links {
    display: flex;
    flex-wrap: wrap;
}
.section-post .social-links a {
    width: 2.6875rem;
    height: 2.6875rem;
    flex: 0 0 2.6875rem;
    margin-right: 2rem;
}
.section-post .social-links a svg {
    max-width: 100%;
    max-height: 100%;
}
.section-post .social-links a svg path {
    transition: 0.4s;
}
.section-post .social-links a:hover svg path {
    fill: #ffffff;
}
.section-post .col--image {
    display: flex;
    justify-content: flex-end;
    padding: 0 0.5rem 0 4.8rem;
}
.section-post .col--image img {
    width: 100%;
    object-fit: contain;
}
/* ----- /SECTION POST ----- */
/*  */
@media(max-width: 1679px) {
    .section-post::after {
        right: -85%;
    }
}
@media(max-width: 1199px) {
    .section-post {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
    .section-post::after {
        width: 168.875rem;
        height: 140.25rem;
        right: -83%;
        bottom: -135%;
    }
    .section-post h3 {
        margin-bottom: 5rem;
    }
    .section-post .col--image {
        padding-left: 0;
        padding-right: 0;
    }
}
@media(max-width: 991px) {
    .section-post {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
    .section-post::after {
        width: 118.875rem;
        height: 110.25rem;
        right: -70%;
        bottom: -125%;
    }
    .section-post .col--image {
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
    }
    .section-post h3 {
        margin-bottom: 2rem;
    }
}
@media(max-width: 767px) {
    .section-post {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .section-post::after {
        width: 128.875rem;
        height: 130.25rem;
        right: -60rem;
        bottom: -57rem;
    }
    .section-post .col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .section-post h3 {
        margin-right: 0;
    }
    .section-post .post-date {
        margin-bottom: 1rem;
    }
    .section-post .col--title {
        margin-bottom: 2rem;
    }
}


/* Post list and filter */


.filters-button-group a {
    align-items: center;
    background: #fff;
    border: 3px solid #efefef;
    color: #000035;
    display: flex;
    flex: 0 0 19.26%;
    height: 5.1rem;
    justify-content: center;
    margin-right: .8125rem;
    max-width: 19.26%;        
}
.section-posts-for-author .container {
    display: flex;
    padding: 2rem;
    background: #f5f5f5
}
.section-posts-for-author .author-avatar {
    border-radius: 50%;
    flex: 0 0 10rem;
    height: 10rem;
    margin-right: 2.8rem;
    overflow: hidden;
    width: 10rem;
}
.section-news-banner .author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Blog Pagination */

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.blog-pagination a.active {
    background: #000035;
    color: #fff;
    font-weight: 600;
}
.blog-pagination a:hover {
    background: #00f38c !important;
    color: #000035;
    font-weight: 600;
}
.blog-pagination-left,
.blog-pagination-center,
.blog-pagination-right {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}
.blog-pagination-left a,
.blog-pagination-center a,
.blog-pagination-right a {
    color: #000035;
    padding: 1.5rem 2rem;
}
.prev-link,
.next-link {
    font-size: 24px;
}