
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 355px);
    row-gap: 60px;
    width: 100%;
    column-gap: 30px;
}



.categories {
    display: flex;
    gap: 8px;
    margin-bottom: 60px;
    justify-content: center;
}


.mobile-select {
    display: none;
    width: 100%;
}

.mobile-select select {
    width: 100%;
    font-size: 13px;
    color: #777;
    background: #efefef;
    border: 3px solid #efefef;
    box-shadow: none!important;
    outline: 0!important;
    padding: 12px 13px;
    height: 44px;
    transition: none;

    margin-bottom: 40px;
    border-radius: 0;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-weight: 400;
    border: 1px solid #000000;
    border-radius: 40px;
    padding: 6px 18px 6px;
    font-size: 13px;
    color: #777;
}

@media (max-width: 767px) {
    .categories {
        display: none;
    }

    .mobile-select {
        display: flex;
    }

    .posts-grid {
        justify-content: center;
    }
}


.loader {
    min-height: 100vh;
}

.loader.hidden {
    display: none;
}

.categories .category label {
    display: block;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid #000000;
    padding: 6px 18px;
}

.categories .category label:has(input:checked) {
    background-color: #000;
    color: #ffffff;
}

.blog-grid {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
    align-items: center;
}

.blog-posts-button {
    color: #2b2b2b;
    cursor: pointer;
    background-image: linear-gradient(to bottom,rgba(255,255,255,.2) 0,rgba(255,255,255,.01) 100%);
    background-color: #fff;
    margin: 20px auto;
    border: none;
    border-radius: 5px;
    font-size: 11px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 12px;
    padding-right: 12px;
}

.blog-posts-button.hidden {
    display: none;
}

.categories .category  input {
    display: none;
}

.post a {
    position: relative;
    display: grid;
    height: 100%;
    grid-template-rows: 266px 1fr auto;
    row-gap: 25px;
    background: #ffffff;
}

.post-title {
    color: #000001;
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}

.post-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
    justify-content: flex-start;
}

.post-footer p {
    color: #aaa;
    font-size: 16px;
    display: flex;
    line-height: 16px;
}


.post-padding {
    padding-left: 15px;
    padding-right: 15px;
}

.post-footer svg {
    margin-right: 10px;
}

.post-footer span {
    color: #aaa;
}

.post-footer svg {
    fill: #aaa ;
}

.post-description,
.post-date {
    font-size: 16px;
    font-weight: 100;
    margin: 0;
    color: #000001;
}

.post-category {
    position: absolute;
    top: 5px;
    padding: 5px 8px 5px;
    background-color: rgba(0,0,0,.5);
    border-radius: 30px;
    font-size: 13px;
    left: 15px;
    color: #ffffff;
}

.separator {
    display: block;
    width: 46px;
    margin-top: 20px;
    height: 5px;
    background-color: #3c98ff;
}
