html, body{
    overflow-x: hidden;
}
body.archive a{
    color:unset !important;
}
.sc{
    display: flex;
    justify-content:center;
    padding:var(--section-padding, 80px 0);
    line-height:1.3em;
    position: relative;
    flex-direction:column;
    align-items:center;
}
.sc > .row{
    margin:0 auto !important;
    max-width:90%;
    width:var(--row-width, 1320px);
    display: flex;
    gap:var(--row-gap, 40px);
    z-index:1;
    display: flex;
    flex-direction:column;
    flex-wrap: nowrap;
}
section.blog{
    background-color:#f9f4f0;
}
.blog__header{
    background-color:transparent;
    position: relative;
    text-align: center;
    overflow:visible;
}
.blog__cats{
    display: flex;
    flex-wrap:wrap;
    list-style:none;
    gap:20px;
    margin: 0;
    padding: 0;
}
.blog__cats li{
    list-style:none;
    text-transform: uppercase;
    font-size:.8rem;
    font-weight:500;
    margin: 0;
    padding: 0;
}
.blog__cats li a{
    color:rgba(36,33,30,.6) !important;
}
.blog__cats li.current-cat a{
    color:rgba(36,33,30,1) !important;
    text-decoration: underline;
}
.blog__posts{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}
.blog__posts article.post{
    display: flex;
    flex-direction:column;
    position: relative;
    border:1px solid #24211e;
    background-color:#f9f4f0;
    color:#24211e;
    overflow: hidden;
    border-radius:10px;
    justify-content:flex-start;
    align-items:center;
    transition:all .2s linear;
    width:100%;
}
.blog__posts article.post svg{
    width:70%;
    position: absolute;
    bottom:10px;
    left:50%;
    transform:translateX(-50%);
}
.blog__post--title{
    font-size: .9rem;
    font-weight: 600;
    text-align: center;
}
.blog__post--title a{
    color:rgba(36,33,30,1) !important;
}
.blog__post--categories{
    position: absolute;
    left:20px;
    top:20px;
    font-size:.8rem;
    line-height:1.04em;
    z-index:3;
}
.blog__post--categories a{
    background-color:#ff732f;
    color: #fff !important;
    border-radius:4px;
    display: inline-flex;
    padding:5px 12px;
}
body.archive .blog__post--categories a{
    color: #fff !important;
}
.blog__post--image{
    padding-top:calc(550/720 * 100%);
    width:100%;
    height:0;
    position: relative;
    overflow: hidden;
    user-select:none;
}
.blog__post--image::after{
    content:'';
    display: block;
    position: absolute;
    pointer-events:none;
    z-index:2;
    height:40%;
    bottom: 0;
    left: 0;
    right: 0;
    mix-blend-mode: normal;
    background: linear-gradient(0deg, #f9f4f0 29.12%, rgba(249, 244, 240, 0.5) 61.5%, rgba(249, 244, 240, 0) 89.47%);
}
.blog__post--image img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit:cover;
    transition:all .3s linear;
}
.blog__post--content{
    padding:0 30px 50px;
    position: relative;
}
.blog__post--content time{
    font-size:.8rem;
    color:rgba(36,33,30,.6);
    text-align: center;
    margin-bottom:10px;
    display: block;
}
.blog__posts article.post:hover{
    box-shadow:0 0 15px rgba(0,0,0,.16);
}
.blog__posts article.post:hover .blog__post--image img{
    transform:scale(1.1);
}

@media screen and (max-width:1220px){
    .blog__posts{
        grid-template-columns:repeat(3,1fr);
    }
}
@media screen and (max-width:880px){
    .blog__posts{
        grid-template-columns:repeat(2,1fr);
    }
}
@media screen and (max-width:767px){
    .blog__posts{
        display: flex;
        flex-wrap:wrap;
        flex-direction:column;
    }
    .blog__posts article.post{
        width:80%;
        margin-left:10px;
        min-height:100%;
    }
    .blog__posts::after{
        content: 'flickity';
        display: none;
    }
    .blog__cats{
        overflow-x:auto;
        flex-wrap:nowrap;
    }
    .sc.blog .flickity-page-dots{
        position: relative;
        bottom:0;
    }
    .sc.blog .flickity-viewport::after{
        content:'';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width:20%;
        background: linear-gradient(-90deg, rgba(249,244,240,1) 0%, rgba(249,244,240,0) 100%);
        pointer-events:none;
    }
    .sc.blog .flickity-page-dots .dot{
        border:1px solid #24211e;
        opacity:1;
        background-color:transparent;
        transition:all .2s;
    }
    .sc.blog .flickity-page-dots .dot.is-selected{
        transform:scale(1.4);
        background-color:#24211e;
    }
}

.blog-post__recipe{
    display: flex;
    flex-direction:column;
    gap:20px;
    flex-wrap:nowrap;
    border:1px solid #24211e;
    border-radius:10px;
    padding:20px;
}
.blog-post__recipe--field:not(:last-of-type){
    padding-bottom:20px;
    border-bottom:1px dotted #24211e;
}
.blog-post__recipe--field.last{
    padding-bottom:0;
    border-bottom:0;
}
.blog-post__recipe--field h5{
    font-size:1rem;
    margin-bottom:10px;
}
.blog-post__recipe--sep{
    display: flex;
    flex-direction:row;
    justify-content:center;
    margin-top:20px;
}

.pagination-bar{
    display: flex;
    flex-wrap:wrap;
    justify-content:center;
}
ul.cpagination{
    list-style:none;
    margin:0;
    padding: 0;
    display: flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}
ul.cpagination > li{
    list-style:none !important;
    margin: 0 !important;
    font-size:.9rem;
}
ul.cpagination > li:not(.prev):not(.next) > a{
    background-color:#000;
    color:#f9f4f0 !important;
    height:40px;
    width:40px;
    border-radius:8px;
    display: inline-flex;
    justify-content:center;
    align-items:center;
}
ul.cpagination > li:is(.prev, .next) > a{
    background-color:#000;
    color:#f9f4f0 !important;
    padding:0 14px;
    border-radius:8px;
    display: inline-flex;
    justify-content:center;
    align-items:center;
    height:40px;
}
ul.cpagination > li > a{
    transition:all .2s;
}
ul.cpagination > li > a:hover{
    background-color:#564f47 !important;
}

/* SINGLE POST */
section.blog-post{
    background-color:#f9f4f0;
    position: relative;
    display: flex;
    flex-direction:column;
    padding-bottom:90px;
}
.blog-post__cover{
    background-color:#000;
    width:100%;
    position: relative;
    user-select:none;
}
.blog-post__cover::after{
    content:'';
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.96%, rgba(0, 0, 0, 0.9) 100%), linear-gradient(0deg, rgba(1, 1, 1, 0.3), rgba(1, 1, 1, 0.3)), url(edvin-johansson-rlwE8f8anOc-unsplash.jpg);
    background-blend-mode: normal, multiply, normal;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height:100%;
    width:100%;
    pointer-events:none;
    z-index:1;
}
.blog-post__info{
    position: absolute;
    width: 1320px;
    max-width: 100%;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 120px;
    color: #fff;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.blog-post__info h1{
    font-size: 2.6rem;
    font-weight: 600;
}
section.blog-post .blog__post--categories{
    position: relative;
    margin-bottom:10px;
    top:unset;
    left:unset;
}
.blog-post__image{
    position:relative;
    padding-top:calc(677/1728 * 100%);
    width:100%;
    height:0;
    overflow: hidden;
    max-width:1920px;
}
.blog-post__image img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit:cover;
}
.blog-post__content{
    width:860px;
    max-width:calc(100% - 60px);
    box-sizing:border-box;
    line-height:1.6em;
    padding:30px;
    border-radius:10px;
    margin:0 auto;
    background-color:#f9f4f0;
    margin-top:-90px;
    z-index:3;
}
.blog-post__content p:not(:last-of-type){
    margin-bottom:1.5em;
}

@media screen and (max-width:620px){
    .blog-post__content{
        margin-top:0;
        padding:30px 0;
    }
    .blog-post__image{
        padding-top:calc(1500/1728 * 100%);
    }
    .blog-post__info{
        max-width:calc(100% - 60px);
        bottom:40px;
    }
}