.blog-section{
    margin: 0 0 40px;
}
.blog-section__container{
    flex-direction: column;
}
.blog-section__flex{
    display: flex;
    margin: 12px 0 0;
    justify-content: space-between;
}
.blog-section__open-filter{
    display: none;
    cursor: pointer;
    color:var(--primary);
    font-size: 16px;
    font-weight: 700;
}
.blog-section__open-filter:hover{
    opacity:0.75;
}
.blog-section__aside {
    width: 276px;
    /* padding-right: 24px; */
}
.blog-section__aside h4{
    font-weight: 700;
    font-size: 20px;
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 3px;
    margin: 26px 0 14px;
    text-transform: uppercase;
}
.blog-section__aside h4.no-border{
    border: none;
    margin: 0 0 13px;
}
.blog-section__blog{
    width: calc(100% - 321px);
}
.blogitembig {
    border-radius: 32px;
    padding: 8px;
    border: 1px solid #ECECEC;
    margin-bottom: 30px;
}

.blogitembig-img {
    overflow: hidden;
    border-radius: 24px;
    display: block;
}

.blogitembig-img img{
    width: 100%;
    height: auto;
}

.blogitembig-cnt {
    margin: 22px 18px 17px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

.blogitembig-cnt h3{

letter-spacing: -0.4px;
}

.blogitembig-cnt p {
    color:#767676;
    font-size: 16px;
    margin: 10px 0 10px;
}

.blogitembig-cnt-meta {
    display: flex;
    font-size: 12px;
    justify-content: space-between;
    font-weight: 500;
    margin: 0 0 18px;
}

.blogitembig-cnt-cat {

}

.blogitembig-cnt .btn{
    justify-self: start;
    width: fit-content;
    padding: 0 37px;
}
.blog-section__search{
    position: relative;
}

.blog-section__search input{
    height: 48px;
    border-radius: 100px;
    background: url(/wp-content/themes/biohacking-redesign/img/icons/hdr-icons-search.png) no-repeat;
    background-size: 20px;
    padding-left: 43px;
    background-position: 14px 14px;
    width: calc(100% - 119px);
    padding-right: 84px;
}
.blog-section__search button{
    position: absolute;
    top: 5px;
    right: -3px;
    padding: 0 9px;
}

.blog-section__article{
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0 0 15px;
    overflow: hidden;
}
.blog-section__article-img{
    width: 137px;
    height: 88px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
}
.blog-section__article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills container, cropping if needed */
  object-position: center;
}
.blog-section__content{
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}
.blog-section__content h6{
    
font-weight: 500;
    
margin-bottom: 5px;
    
letter-spacing: -0.5px;
}
.blog-section__content p{
    font-size: 12px;
    line-height: 12px;
}
.blog-section__checkboxes{
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.field--checkbox{

}

.blog-section__aside > *:last-child{
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .blogitembig {
        padding: 0;
        border: none;
        margin-bottom: 30px;
    }
    .blogitembig-cnt {
        margin: 10px 0 10px;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
    }
    .blogitembig-cnt .btn {
        display: none;
    }
    .blogitembig-cnt h3 {
        font-size: 20px;
        line-height: 1.3;
    }
    .blog-section__blog {
        width: 100%;
    }
    .blog-section__aside {
        display: none;
        width: 276px;
        position: fixed;
        top: 0;
        left: 0;
        background: #fff;
        padding: 20px;
        height: 100vh;
        overflow-y: scroll;
        z-index: 50;
    }
    .blog-section__open-filter{
        display: flex;
        gap: 5px;
        align-items: center;
    }
    .blog-section__open-filter::before{
        background-image: url(/wp-content/themes/biohacking-redesign/img/icons/icon-open-filter.svg);
        content: "";
        width: 24px;
        height: 24px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        flex-shrink: 0;
    }
    .blog-section__flex {
        flex-direction: column;
        gap:20px;
        margin:0;
    }
}
