section.post_archive {
    padding-top: 2.14rem;
	padding-bottom: 1.8rem;
}
@media screen and (max-width: 768px) and (orientation: portrait) {
    section.post_archive {
		padding-top: 0.8rem;
		padding-bottom: 0.8rem;
}
	}
section.post_archive .texts-wrap {
		max-width: 10.96rem;
		margin-left: auto;
		margin-right: auto;
    }
:is(section.post_archive .texts-wrap) .label {
			color: var(--orange);
			text-align: center;
			margin-bottom: 0.24rem;
			font-weight: 500;
		}
:is(section.post_archive .texts-wrap) .title {
			text-align: center;
			margin-bottom: 0.24rem;
		}
:is(section.post_archive .texts-wrap) .description {
            text-align: center;
        }
section.post_archive .load-more {
        margin-left: auto;
        margin-right: auto;
        margin-top: 0.4rem;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }
section.post_archive .posts-controls {
        margin-top: .8rem;
        padding-top: .2rem;
        border-top: 0.01rem dashed var(--orange);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.2rem;
        margin-bottom: 1.2rem;
    }
@media screen and (max-width: 768px) and (orientation: portrait) {
    section.post_archive .posts-controls {
            flex-direction: column;
            gap: .2rem;
            margin-bottom: 0.6rem;
    }

        }
:is(section.post_archive .posts-controls) .search-wrap {
            position: relative;
        }
@media screen and (max-width: 768px) and (orientation: portrait) {
    :is(section.post_archive .posts-controls) .search-wrap {
                width: 100%;
        }
            }
:is(:is(section.post_archive .posts-controls) .search-wrap) input {
                border: 0.5px solid var(--grey);
                background: transparent;
                padding: .1rem .36rem .1rem .16rem;
                border-radius: .48rem;

                font-size: .16rem;
                line-height: .22rem;
                font-family: "elza", sans-serif;
                color: var(--white);
            }
@media screen and (max-width: 768px) and (orientation: portrait) {
    :is(:is(section.post_archive .posts-controls) .search-wrap) input {
                    width: 100%;
            }
                }
:is(:is(section.post_archive .posts-controls) .search-wrap) svg {
                position: absolute;
                right: 0.16rem;
                top: 50%;
                transform: translateY(-50%);
                width: .2rem;
                height: auto;
            }
:is(section.post_archive .posts-controls) .post-categories {
            display: flex;
            gap: .22rem;
        }
@media screen and (max-width: 768px) and (orientation: portrait) {
    :is(section.post_archive .posts-controls) .post-categories {
                gap: .14rem;
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                white-space: nowrap;
                width: 100%;
                padding-bottom: .1rem;
        }
            }
:is(:is(section.post_archive .posts-controls) .post-categories) .button {
                background-color: transparent;
                cursor: pointer;
                border: none;
                min-width: unset;
                padding: 0.1rem 0.16rem 0.1rem 0.16rem;
                font-weight: 400;

                color: var(--grey);
            }
:is(:is(:is(section.post_archive .posts-controls) .post-categories) .button)::before{
                    border-color: var(--grey);
                }
.active:is(:is(:is(section.post_archive .posts-controls) .post-categories) .button) {
                    color: var(--white);
                }
.active:is(:is(:is(section.post_archive .posts-controls) .post-categories) .button)::before{
                        border-color: var(--white);
                    }
section.post_archive .posts-grid {
        display: flex;
        flex-wrap: wrap;
        gap: .2rem;
        transition: 300ms ease-in-out;
    }
[aria-busy="true"]:is(section.post_archive .posts-grid) {
            opacity: 0.5;
        }
:is(section.post_archive .posts-grid) .blog-card {
			width: calc(33.33333% - 0.145rem);
		}
@media screen and (max-width: 768px) and (orientation: portrait) {
    :is(section.post_archive .posts-grid) .blog-card {
				width: 100%;
		}
			}