.site-header {
    position: static !important;
}
body {
    background-color: #EBECEB;
}
.site-footer {
    background-color: #07090B;
}
.blog-hero {
    text-align: center;
    margin-top: 1rem;
}
.blog-hero__inner {
    padding: 4.69rem 2.60rem;
    background-color: #07090B;
    position: relative;
}
.blog-hero__shape-1 img,
.blog-hero__shape-2 img {
    width: 100%;
}
.blog-hero__shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    pointer-events: none;
}
.blog-hero__shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30%;
    height: 100%;
    pointer-events: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 65%;
    justify-content: center;
    margin: 0 auto;
    height: 3rem;
    overflow: hidden;
}
.blog-categories a {
    color: #07090B;
    padding: 0.8rem 1.5rem;
    background-color: #CFD2CA;
    border-radius: 2rem;
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
}
.blog-categories a.active {
    background-color: #E3FF38;
    pointer-events: none;
}
.blog-categories a:hover {
    opacity: 0.6;
}

.blog-categories.active {
    height: auto;
}

.blog-more {
    margin-top: 1rem;
}
.more-categories {
    color: #E3FF38 !important;
    font-size: 1rem;
}
.more-categories svg {
    width: 0.6rem;
    height: auto;
    margin-left: 0.6rem;
}
.more-categories:hover {
    opacity: .6;
}

.search-form {
    display: flex;
    margin: 3rem auto;
    max-width: 39rem;
    position: relative;
}
.search-form input {
    width: 100%;
    padding-left: 4.69rem;
    height: 4.17rem;
    border-radius: 2rem;
    outline: none;
}
.search-form button {
    position: absolute;
    left: 0.52rem;
    top: 50%;
    width: 3.23rem;
    height: 3.23rem;
    transform: translateY(-50%);
    padding: 0;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.post-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.83rem;
    padding: 3rem 0;
}
.post-grid .post {
    padding-left: 0.83rem;
    padding-right: 0.83rem;
    max-width: 33.3%;
    flex-basis: 33.3%;
    margin-bottom: 1.67rem;
    display: flex;
    flex-direction: column;
}
.post-grid .post img {
    width: 100%;
    margin-bottom: 1rem;
}
.post-grid .post h2 {
    font-size: 1.25rem;
    color: #070C16;
    margin-bottom: 1rem;
    max-width: 80%;
}
.post-grid .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.post-grid .post-category {
    font-size: 1.04rem;
    background-color: #CFD2CA;
    border-radius: 2rem;
    line-height: 1;
    color: #070C16;
    padding: 0.8rem 1.5rem;
}
.post-grid .post-date {
    color: #070C16;
    font-size: 0.83rem;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}
.blog-pagination .prev,
.blog-pagination .next {
    display: none !important;
}
.blog-pagination .dots {
    font-size: 1.04rem;
    color: #07090B;
    margin: 0 1rem;
}
.blog-pagination .page-numbers:not(.dots) {
    color: #07090B;
    background-color: #CFD2CA;
    width: 3.23rem;
    height: 3.23rem;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    font-size: 1.04rem;
}
.blog-pagination .current {
    background-color: #07090B !important;
    color: #fff !important;
}
.blog-pagination a:not(.dots):hover {
    opacity: 0.6;
}
.no-posts {
    padding:4rem 0;
    text-align: center;
    color: #07090B;
    font-size: 1.66rem;
}

@media(max-width:767px){
    .blog-hero {
        margin-top: 0;
    }
    .post-grid .post h2 {
        font-size: 0.88rem;
        max-width: 100%;
        word-wrap: break-word;
    }
    .post-grid .post {
        padding-left: 0rem;
        padding-right: 0rem;
        max-width: calc(50% - 0.44rem);
        flex-basis: calc(50% - 0.44rem);
    }
    .post-grid {
        margin: 0;
        padding: 0;
        gap: 0.88rem;
    }
    .blog-pagination .page-numbers:not(.dots) {
        width: 2rem;
        height: 2rem;
        font-size: 0.88rem;
    }
    .post-grid .post-meta {
        flex-direction: column;
        justify-content: flex-start;
        gap: 0.5rem;
        align-items: flex-start;
    }
    .post-grid .post-category {
        font-size: 0.77rem;
        padding: 0.5rem 1rem;
    }
    .post-grid .post-date {
        color: #070C16;
        font-size: 0.77rem;
    }
    .blog-hero__inner {
        padding: 2rem 1rem;
    }
    .search-form {
        margin: 2rem auto;
        max-width: 100%;
    }
    .search-form input {
        height: 3rem;
    }
    .search-form button {
        height: 2.5rem;
        width: 2.5rem;
    }
    .blog-categories {
        gap: 0.88rem;
        max-width: 100%;
        height: 2rem;
    }
    .blog-categories a {
        padding: 0.5rem 1rem;
        font-size: 0.88rem;
    }
    .blog-pagination {
        margin-bottom: 2rem;
    }
}