#blog-page>main {
    padding: 56px 0;
}

.posts-like #filter {
    display: flex;
    margin-bottom: 56px;
}

.posts-like #filter>div {
    width: 50%;
}

.posts-like #filter input {
    width: 100%;
    padding: 18px;
    border: 1px solid #97A8BA;
    border-radius: 8px;
    font-size: 14px;
}

.posts-like #filter #search {
    display: flex;
}

.posts-like #filter #search button {
    padding: 18px 24px;
    font-size: 16px;
    margin-left: 12px;
}

.posts-like #filter #checks {
    display: flex;
    align-items: center;
    justify-content: end;
}

.posts-like #filter #checks button {
    background: unset;
    border: 1px solid #97A8BA;
    color: #97A8BA;
    border-radius: 10px;
    padding: 13px 16px;
    margin-left: 20px;
    font-size: 12px;
    font-weight: bold;
}

.posts-like #filter #checks button.active {
    border-color: #000748;
    color: #000748;
}


.posts-like .banner {
    display: flex;
    height: 490px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    place-items: flex-end;
}

.posts-like .banner>a {
    width: 100%;
    height: 100%;
    position: absolute;
}

.posts-like .banner .mask {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(90deg, #040762 0%, #050866 0%, #FF580000 100%) 0% 0% no-repeat padding-box;
}

.posts-like .banner img {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.posts-like .banner .infos {
    padding: 0 36px 36px 36px;
    color: #fff;
}

.posts-like .banner .infos .category {
    font-size: 14px;
    font-weight: bold;
}

.posts-like .banner .infos h1 {
    font-size: 50px;
    width: 800px;
}

.posts-like .banner .infos p {
    font-size: 18px;
    width: 600px;
    margin-top: 16px;
}

.posts-like .banner .infos button {
    font-size: 14px;
    background-color: unset;
    color: #00DBB9;
    font-weight: bold;
    margin-top: 22px;
    display: block;
}



@media(max-width: 967px) {
    .posts-like #filter {
        flex-flow: column;
        row-gap: 14px;
    }

    .posts-like #filter>div {
        width: 100%;
    }

    .posts-like #search {}

    .posts-like #filter #checks {
        justify-content: start;
        /* gap: 14px; */
    }

    .posts-like #filter #checks button.active {
        margin: 0;
    }
}

@media(max-width: 600px) {
    .posts-like #filter #search {
        flex-flow: column;
    }

    .posts-like #filter #search button {
        margin-top: 6px;
        margin-left: 0;
    }
}