.blog_container {
    margin-top: 60px;
}

@media screen and (max-width: 768px) {
    .blog_container>.blog_heading {
        display: none;
    }

    .blog_container>.blog_columns>.blog_heading {
        order: 2;
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 768px) {
    .blog_container>.blog_columns>.blog_heading {
        display: none;
    }

    .blog_heading {
        width: 63%;
    }
}


.blog_columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
    .blog_columns {
        grid-template-columns: calc(65% - 10px) calc(35% - 10px);
    }
}

@media screen and (min-width: 990px) {
    .blog_columns {
        grid-template-columns: calc(65% - 30px) calc(35% - 30px);
        gap: 60px;
    }
}

.blog_articles_list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    height: max-content;
}

@media screen and (min-width: 990px) {
    .blog_articles_list {
        grid-template-columns: calc(50% - 10px) calc(50% - 10px);
    }
}

@media screen and (max-width: 768px) {
    .blog_articles_list {
        order: 3;
    }

    .blog_additional_col {
        order: 1;
    }
}

.article_description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog_columns .blog_articles_list article {
    padding: 16px;
    border: 1px solid rgba(101, 0, 143, 1);
    border-radius: 20px;
}

@media screen and (min-width: 768px) {
    .blog_columns .blog_articles_list article {
        padding: 40px;
    }
}

.blog_columns .blog_articles_list article img {
    aspect-ratio: 5 / 3;
    height: 300px;
    width: auto;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
}

.pseudo_link {
    color: rgba(101, 0, 143, 1);
    text-transform: uppercase;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.article_heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.article_description {
    font-size: 20px;
    margin-bottom: 24px;
}

.blog_columns article:hover .pseudo_link {
    text-decoration: underline;
}

.blog_columns .post-content h2 {
    padding-bottom: 0;
    margin: 24px 0;
    text-align: start;
    color: #000;
    font-family: var(--font-family-base);
    font-size: 32px;
    font-weight: 500;
}

.blog_columns .post-content h2::after {
    display: none;
}

.blog_columns .post-content h3 {
    padding-bottom: 0;
    margin: 20px 0;
    text-align: start;
    color: #000;
    font-family: var(--font-family-base);
    font-size: 27px;
    font-weight: 500;
}

.blog_columns .post-content img {
    margin: 48px 0;
}

.custom_single .post-content a {
    text-decoration: underline;
}

.pseudo_link::after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='12' viewBox='0 0 17 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.25 0.75L15.75 6L10.25 11.25M15.5 6H1.25' stroke='%2365008F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    width: 17px;
    height: 12px;
    display: block;
}

.aricle_infoline {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aricle_date {
    font-size: 16px;
    font-weight: 500;
}

.blog_articles_list .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 24px;
}

@media screen and (min-width: 990px) {
    .blog_articles_list .page-numbers {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    .blog_articles_list .page-numbers {
        margin-bottom: 40px;
    }
}

.prev .circle-button {
    transform: rotate(90deg);
    border: 1px solid rgba(101, 0, 143, 1);
}

.next .circle-button {
    background-color: rgba(101, 0, 143, 1);
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='20' viewBox='0 0 12 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.93164 18.1488L10.0436 10.0001L1.93164 1.85131' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    transform: rotate(0);
}

.blog_articles_list a.page-numbers {
    color: rgba(169, 169, 188, 1);
}

.facets_date {
    border: 1px solid rgba(101, 0, 143, 1);
    border-radius: 8px;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    position: relative;
}

.facets_categories_container {
    padding: 16px;
    border: 1px solid rgba(101, 0, 143, 1);
    margin-top: 20px;
    border-radius: 20px;
    height: 68px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .facets_categories_container {
        transition: all .3s ease-in;
    }
}

@media screen and (min-width: 768px) {
    .facets_categories_container {
        padding: 40px;
        height: max-content;
    }
}

.facets_categories_heading,
.rectnt_posts_heading {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media screen and (min-width: 768px) {

    .facets_categories_heading,
    .rectnt_posts_heading {
        font-size: 32px;
    }

    .facets_categories_heading svg,
    .rectnt_posts_heading svg {
        display: none;
    }
}

@media screen and (max-width: 768px) {
        .facets_categories_heading,
    .rectnt_posts_heading {
        position: relative;
        top: -3px;
    }

    .mobile_accordion .facets_categories_heading svg,
    .mobile_accordion .rectnt_posts_heading svg {
        transition: all .3s ease-in;
    }

    .mobile_accordion.active .facets_categories_heading svg,
    .mobile_accordion.active .rectnt_posts_heading svg {
        transform: rotate(45deg);
    }
}

.facets_categories_items {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.facets_categories_items>* {
    padding: 6px 8px 1px;
    border: 1px solid rgba(127, 194, 52, 1);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s ease-in;
}

.facets_categories_items>span {
    background-color: rgba(101, 0, 143, 1);
    color: #fff;
}

.facets_categories_items>a:hover {
    background-color: rgba(101, 0, 143, 1);
    color: #fff;
}

.facets_categories_items.tags>* {
    border-color: rgba(101, 0, 143, 1);
}

.facets_categories_items.tags>span {
    background-color: rgba(127, 194, 52, 1);
    color: #000;
}

.facets_categories_items.tags>a:hover {
    background-color: rgba(127, 194, 52, 1);
    color: #000;
}

/* .facets_date input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.facets_date input[type="date"]::-moz-calendar-picker-indicator {
    display: none;
}

.facets_date input[type="date"]::-ms-clear,
.facets_date input[type="date"]::-ms-expand {
    display: none;
} */

.facets_date button {
    padding: 10px;
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
}

.facets_date form {
    display: flex;
    align-items: center;
}

.facets_date form span {
    margin-right: 12px;
    margin-left: 12px;
}

.facets_date form input {
    background-color: inherit;
}

@media screen and (max-width: 990px) {
    .facets_date form input {
        font-size: 18px;
    }
}

.recent_posts {
    padding: 16px;
    border-radius: 20px;
    margin-top: 20px;
    border: 1px solid rgba(101, 0, 143, 1);
    height: 68px;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .recent_posts {
        height: max-content;
        padding: 24px;
    }
}

.recents_posts_item-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.recents_posts_item-description>p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 20px;
    margin-bottom: 24px;
}

.recents_posts_item:hover {
    text-decoration: underline;
}

.recents_posts_item+.recents_posts_item {
    margin-top: 24px;
    display: block;
}

.recents_posts_item svg {
    height: 2px;
    width: 100%;
}

.post_hero .hero__image img,
.post_hero .hero__image-mobile img {
    aspect-ratio: 1 / 1;
    max-width: 550px;
    object-fit: cover;
    border-radius: 50%;
}

.post_date {
    font-size: 16px;
    margin: 20px 0 5px;
}

@media screen and (min-width: 768px) {
    .post_date {
        margin: 40px 0 15px;
    }
}

.custom_single .post-content {
    font-size: 20px;
}

.post-content ul {
    list-style: initial;
    padding-left: 30px
}