.resent-information{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 55px;
    text-align: center;
}

.resent-information h1 {
    font-family: "Gotham Light", sans-serif;
    font-size: 80px;
    font-weight: 300;
    line-height: 1em;
    color: #004D42;
    margin-bottom: 33px;
    margin-top: 53px;
}

.resent-information p {
    font-family: "Gotham Book", sans-serif;
    max-width: 832px;
    width: 100%;
    font-size: 16px;
    margin: 0;
}

.loop {
    display: flex;
    flex-wrap: wrap;
    margin: 17px 0 186px;
    gap: 55px 33px;
}

.loop .recipe {
    width: calc((100% - 66px)/3);
    /*gap: 55px 33px;*/
}

.loop .recipe__img {
    /*height: 387px;*/
    border-radius: 30px;
    object-fit: cover;
    overflow: hidden;
    aspect-ratio: 468 / 387;
}

.loop .recipe__img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.loop .recipe__info {
    text-align: center;
    margin-top: 32px;
}

.loop .recipe__title {
    font-family: "Gotham Bold", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1em;
    color: #004D42;
    text-transform: uppercase;
    margin: 0;
}

.loop .recipe__excerpt {
    font-family: "Gotham Book", sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin-top: 28px;
}

.loop .recipe__excerpt p {
    max-width: 230px;
    margin: 0 auto;
}

.loop .recipe__url {
    font-family: "Gotham Black", sans-serif;
    font-size: 14px;
    line-height: 43px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 23px;
}

.loop .recipe__url a {
    display: inline-block;
    /*min-width: 210px;*/
    padding: 0 40px;
    border: 1px solid #004D42;
    color: #004D42;
    border-radius: 45px;
    background-color: transparent;
    transition: .3s linear;
}

.loop .recipe__url a:hover {
    background-color: #004D42;
    color: #fff;
}

.loop .loop__loadmore {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 12px;
    transition: .2s linear;
}

.loop .loadmore-posts {
    display: inline-block;
    min-width: 304px;
    font-family: "Gotham Black", sans-serif;
    font-size: 14px;
    line-height: 43px;
    font-weight: 600;
    padding: 0 24px;
    background-color: #004D42;
    border: 1px solid #004D42;
    color: #fff;
    text-transform: uppercase;
    border-radius: 45px;
    text-align: center;
    transition: .2s linear;
}
.loop .loadmore-posts:not([disabled]):hover {
    background-color: transparent;
    color: #004D42;
}
.loadmore-posts[disabled] {
    cursor: not-allowed;
}

.loadmore-posts[disabled]:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(4,end) 900ms infinite;
    animation: ellipsis steps(4,end) 900ms infinite;
    content: "\2026"; /* ascii code for the ellipsis character */
    width: 0px;
    position: absolute;
}

@keyframes ellipsis {
    to {
        width: 1.25em;
    }
}

@-webkit-keyframes ellipsis {
    to {
        width: 1.25em;
    }
}

.category-filter {
    margin-bottom: 52px;
    position: relative;
}
.category-filter__header {
    border-top: 1px solid #214C42;
    border-bottom: 1px solid #214C42;
    padding: 7px;
    cursor: pointer;
}

.category-filter__title {
    font-family: "Gotham Bold", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    color: #004d42;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-filter__title:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17.883' height='17.883' viewBox='0 0 17.883 17.883'%3E%3Cpath id='tune_FILL0_wght400_GRAD0_opsz48' d='M13.625,23.883V18.294h1.49v2.061h8.768v1.49H15.115v2.037ZM6,21.846v-1.49h6.135v1.49Zm4.645-4.123V15.687H6V14.2h4.645V12.11h1.49v5.613Zm2.98-2.037V14.2H23.883v1.49Zm4.123-4.1V6h1.49V8.037h4.645v1.49H19.238v2.061ZM6,9.527V8.037H16.258v1.49Z' transform='translate(-6 -6)' fill='%23004d42'/%3E%3C/svg%3E%0A");
    margin-right: 12px;
}

.category-filter__dropdown {
    width: 100%;
    background-color: #FAF7F3;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    opacity: 0;
    transition: .1s;
    pointer-events: none;
    transform: translateY(20px);
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
}
.is-shown .category-filter__dropdown {
    opacity: 1;
    transition: .3s;
    pointer-events: all;
    transform: translateY(0);
}
.category-filter__dropdown-title {
    display: none;
}
.category-filter__content {
    padding: 34px 31px 74px;
    gap: 90px;
    display: flex;
}
.category-filter__col {
    width: calc(50% - 45px);
}
.category-filter__col-title {
    font-family: "Gotham Bold", sans-serif;
    font-size: 16px;
    line-height: 1;
    color: #214c42;
    margin-bottom: 20px;
}
.category-filter__categories {
    /*display: flex;*/
    /*flex-wrap: wrap;*/
    /*gap: 20px 19px;*/
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 3;
    column-gap: 20px;
}
.category-filter__category {
    margin-bottom: 19px;
}

.category-filter label {
    font-family: 'Gotham Medium';
    font-size: 14px;
    line-height: 19px;
    text-transform: capitalize;
    display: inline-grid;
    grid-template-columns: 1em auto;
    gap: 1em;
}
.category-filter input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: currentColor;
    width: 19px;
    height: 19px;
    border: 1px solid #46382B;
    border-radius: 2px;
    /*transform: translateY(-0.075em);*/
    display: grid;
    place-content: center;
}
.category-filter input[type="checkbox"]:checked {
    background-color: #2E2C2B;
}
.category-filter input[type="checkbox"]::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.17' height='9.714' viewBox='0 0 13.17 9.714'%3E%3Cpath id='check_box_FILL0_wght600_GRAD0_opsz48' d='M17.227,24.518a1.041,1.041,0,0,0,.442-.091,1.808,1.808,0,0,0,.411-.274l7.308-7.308a1.173,1.173,0,0,0,.35-.822,1.116,1.116,0,0,0-.35-.853,1.108,1.108,0,0,0-1.644,0l-6.516,6.516-2.649-2.649a1.156,1.156,0,0,0-.807-.35,1.1,1.1,0,0,0-.837.35,1.072,1.072,0,0,0-.365.822,1.169,1.169,0,0,0,.365.853l3.441,3.441a1.264,1.264,0,0,0,.4.274A1.147,1.147,0,0,0,17.227,24.518Z' transform='translate(-12.569 -14.804)' fill='%23fff'/%3E%3C/svg%3E%0A");
    width: 13px;
    height: 19px;
    transform: scale(0);
    transform-origin: center;
    transition: 120ms transform ease-in-out;
}

.category-filter input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.category-filter input[type="checkbox"]:focus {
    /*outline: max(2px, 0.15em) solid currentColor;*/
    /*outline-offset: max(2px, 0.15em);*/
}

.category-filter input[type="checkbox"]:disabled {
    /*--form-control-color: var(--form-control-disabled);*/

    /*color: var(--form-control-disabled);*/
    cursor: not-allowed;
}

.category-filter__footer {
    display: flex;
    justify-content: center;
    border-top: 1px solid #214C42;
    text-transform: uppercase;
    font-family: "Gotham Bold", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 24px;
    color: #214C42;
    padding: 10px 0;
}

.category-filter__result,
.category-filter__reset {
    width: 200px;
    text-align: center;
}
.category-filter__result {
    border-right: 1px solid #214C42;
}
.category-filter-result {
    pointer-events: none;
}
.category-filter__reset a {
    color: inherit;
}
.category-filter__close {
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.594' height='15.594' viewBox='0 0 15.594 15.594'%3E%3Cpath id='close_FILL0_wght400_GRAD0_opsz48_1_' data-name='close_FILL0_wght400_GRAD0_opsz48 (1)' d='M11.55,25.944l-1.2-1.2,6.6-6.6-6.6-6.6,1.2-1.2,6.6,6.6,6.6-6.6,1.2,1.2-6.6,6.6,6.6,6.6-1.2,1.2-6.6-6.6Z' transform='translate(-10.35 -10.35)' fill='%23214c42'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 22px;
    right: 21px;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .category-filter__content {
        gap: 40px;
    }
    .category-filter__col {
        width: calc(50% - 20px);
    }
    .category-filter__categories {
        columns: 2;
    }
    /*.category-filter__category {*/
    /*    margin-bottom: 16px;*/
    /*}*/
    /*.category-filter label {*/
    /*    font-size: 12px;*/
    /*    line-height: 16px;*/
    /*}*/
    /*.category-filter input[type="checkbox"] {*/
    /*    width: 16px;*/
    /*    height: 16px;*/
    /*}*/
    /*.category-filter input[type="checkbox"]::before {*/
    /*    height: 16px;*/
    /*}*/
}
@media screen and (max-width: 767px) {
    .category-filter-result {
        pointer-events: all;
    }
    .category-filter__dropdown {
        display: none;
    }
    .is-shown .category-filter__dropdown {
        width: 100%;
        display: block;
        background-color: #faf7f3;
        position: fixed;
        z-index: 100;
        top: 0;
        bottom: 0;
        left: 0;
    }
    .category-filter__dropdown-title {
        font-family: "Gotham Bold", sans-serif;
        font-size: 14px;
        line-height: 1;
        font-weight: 500;
        color: #004d42;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        padding: 20px 15px;
        border-bottom: 1px solid #004D42;
    }
    .category-filter__dropdown-title:before {
        content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 17 17'%3E%3Cpath id='tune_FILL0_wght400_GRAD0_opsz48' d='M13.249,23V17.688h1.417v1.96H23v1.417H14.665V23ZM6,21.064V19.647h5.832v1.417Zm4.415-3.919V15.208H6V13.792h4.415V11.808h1.417v5.336Zm2.833-1.936V13.792H23v1.417Zm3.919-3.9V6h1.417V7.936H23V9.353H18.585v1.96ZM6,9.353V7.936h9.751V9.353Z' transform='translate(-6 -6)' fill='%23004d42'/%3E%3C/svg%3E%0A");
        height: 17px;
        margin-right: 9px;
    }
    .category-filter__content {
        height: calc(100% - 103px);
        flex-flow: column;
        gap: 27px;
        padding: 24px 15px;
        overflow-y: scroll;
    }
    .category-filter__col {
        width: 100%;
    }
    .category-filter__categories {
        columns: 1;
    }
    .category-filter__category {
        margin-bottom: 21px;
    }
    .category-filter__close {
        width: 45px;
        height: 37px;
        /*display: none;*/
        border-left: 1px solid #214C42;
        top: 10px;
        right: 0;
    }
    .category-filter__footer {
        width: 100%;
        position: absolute;
        bottom: 0;
        z-index: 120;
        background: #fff;
    }
    .category-filter__result, .category-filter__reset {
        width: 50%;
    }
    
    .resent-information {
        display: block;
        margin-bottom: 55px;
        text-align: left;
    }
    .resent-information h1 {
        font-family: "Gotham Bold", sans-serif;
        font-size: 16px;
        margin-top: 33px;
        margin-bottom: 19px;
    }
    .resent-information p br {
        display: none;
    }
    .loop {
        gap: 20px 0;
        margin-bottom: 117px;
    }
    .loop .recipe {
        width: 100%;
        display: flex;
    }
    .loop .recipe__img {
        width: 50%;
        flex: 0 0 50%;
        aspect-ratio: 1 / 1;
    }
    .loop .recipe__info {
        display: flex;
        flex-direction: column;
        padding: 25px 0 25px 16px;
        margin: 0;
        text-align: left;
    }
    .loop .recipe__excerpt p {
        max-width: 100%;
    }
    .loop .recipe__excerpt p br {
        display: none;
    }
    .loop .recipe__url {
        line-height: 1;
        margin-top: auto;
        text-transform: none;
    }
    .loop .recipe__url a {
        text-decoration: underline;
        padding: 0;
        border: 0;
    }
    .loop .recipe__url a:after {
        content: ' >>'
    }
    .loop .loop__loadmore {
        margin-top: 26px;
    }
    .loop .loadmore-posts {
        min-width: 261px;
        font-family: "Gotham Bold", sans-serif;
        line-height: 37px;
    }
}
@media screen and (max-width: 550px) {
    .loop .recipe__title {
        font-size: 14px;
    }
    .loop .recipe__excerpt {
        margin-top: 7px;
        margin-bottom: 7px;
    }
}