/** Shopify CDN: Minification failed

Line 25:24 Expected ")" to end URL token

**/
#MainContent > .breadcrumbs__content {
    display: none;
}

.lh-main {
    display: flex;
    flex-direction: column;
}

.lh-banner {
    position: relative;
    padding: 24px 0 20px;
    margin: 16px 0;
    border-radius: 16px;
    overflow: hidden;
    min-height: 180px;
    height: 330px;
}
:root {
    --lock-icon: url({{ 'icon-lock.svg' | asset_url }});
}

.lh-banner:not(.has-image) {
padding-top: 0;
padding-bottom: 0;
height: unset;
min-height: unset;
background: transparent;
}

/* When no hero image: collapse banner spacing entirely */
.lh-banner.no-image {
padding-top: 0;
padding-bottom: 0;
margin: 0;
min-height: unset;
background: transparent;
}

/* Keep breadcrumbs and heading readable with standard spacing */
.lh-banner.no-image .lh-banner__content {
padding-top: 24px;
padding-bottom: 0px;
}
.custom__breadcrumbs .breadcrumbs-nav li {
    display: flex;
    align-items: center;
}

.custom__breadcrumbs .breadcrumbs-nav .sep {
    margin-top: 1px;
}

.custom__breadcrumbs .breadcrumbs-nav a {
    text-decoration: underline;
}

.lh-banner__media {
    position: absolute;
    inset: 0;
    background: var(--lh-banner-bg);
    display: flex;
    align-items: flex-end;
}

.lh-banner__media picture, .lh-banner__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    max-height: 180px;
    position: relative;
}

.lh-banner__media picture::after, .lh-banner__media img::after {
    content: "";
    position: absolute;
    inset: 0;
    bottom: 25%;
    background: linear-gradient( 180deg,var(--lh-banner-bg) 0%,rgba(0,0,0,0) 90%);
}

.lh-banner__content {
    position: relative;
    padding: 0 16px;
    max-width: 780px;
    background: transparent;
}

.lh-breadcrumbs {
    font-size: 12px;
    color: #1C1E1F;
    margin-bottom: 28px;
}

.lh-breadcrumbs .custom__breadcrumbs {
    padding-left: 0;
}

.lh-breadcrumbs .breadcrumbs-nav {
    margin: 0;
    padding: 0;
}

.lh-breadcrumbs .breadcrumbs-nav .inline-list {
    margin: 0;
}

.lh-breadcrumbs nav.breadcrumbs .active span:not(.sep) {
    color: #1c1e1f;
    font-weight: 400!important;
}

.lh-breadcrumbs .breadcrumbs-nav .inline-list span {
    font-size: 12px;
    line-height: 120%;
    letter-spacing: -.1px;
    color: #1C1E1F;
}

.lh-banner h1 {
    margin: 0 0 8px 0;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -.6px;
    color: #1C1E1F;
}

.lh-banner p {
    margin: 0;
    color: #6D7073;
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: -.1px;
}

.lh-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
}

.lh-container-blog-search.lh-container .lh-main {
    padding-top: 25px;
}

@media (min-width: 992px) {
    .lh-banner {
        min-height: 300px;
        padding: 28px 0 24px;
    }

    .lh-banner__content {
        padding: 24px 24px 24px 24px;
    }
}

@media (max-width: 768px) {
    .lh-banner__content {
        max-width: none;
        padding: 0 16px;
    }
}

.lh-container {
    display: grid;
    grid-template-columns: 292px 1fr;
    gap: 24px;
    margin-bottom: 20px;
}

@media (max-width: 1100px) {
    .lh-container {
        grid-template-columns: 1fr;
    }

    .lh-sidebar {
        order: 2
    }

    .lh-main {
        order: 1
    }
}

/* Sidebar */
.lh-filter {
    background: #fff;
    border: 1px solid #e6ecf1;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 16px;
}

.lh-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.lh-switch input {
    display: none;
}

.lh-slider {
    position: relative;
    width: 40px;
    height: 24px;
    background: #FFFFFF;
    border: 1px solid #D4D4D4;
    border-radius: 9999px;
    transition: background 0.3s;
}

.lh-slider::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #D4D4D4;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.lh-switch input:checked + .lh-slider {
    background: #002854;
}

.lh-switch input:checked + .lh-slider::before {
    transform: translateX(15px);
    background: #ffffff;
}

.lh-label {
    font-size: 15px;
    color: #1C1E1F;
    line-height: 160%;
    font-weight: 400;
    letter-spacing: -.1px;
}

.lh-filters details summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: #1C1E1F;
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: -.3px;
}

.lh-filters details[open] summary {
    margin-bottom: 12px;
}

.lh-filters details summary svg {
    transform: rotate(180deg);
    transition: transform 0.2s ease;
    width: 12px;
    margin-left: auto;
}

.lh-filters details summary path {
    width: 12px;
}

.lh-filters details[open] summary svg {
    transform: rotate(0);
}

.lh-checklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 4px;
}

.lh-checklist input {
    margin: 0 8px 0 0;
    width: 16px;
    height: 16px;
    border: 1px solid #D4D4D4;
    border-radius: 4px;
}

.cb{
    display:inline-flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    user-select:none;
    line-height:1.2;
}

.cb input{
    position:absolute;
    opacity:0;
    width:0;
    height:0;
}

.cb-box{
    width: 16px;
    height: 16px;
    border: 1px solid #D4D4D4;
    border-radius: 4px;
    display: inline-grid;
    place-items: center;
    transition: background .2s, border-color .2s, box-shadow .2s;
    box-shadow: 0 0 0 0 transparent;
    background: #ffffff;
}

.cb-box::after{
    content:"";
    width: 4px;
    height: 8px;
    border: 1px solid #fff;
    border-top:0;
    border-left:0;
    transform: rotate(45deg) scale(0);
    transform-origin:center;
    transition:transform .2s ease;
    margin-bottom: 2px;
}

.cb input:checked + .cb-box{
    background: #002854;
    border-color: #002854;
}
.cb input:checked + .cb-box::after{
    transform:rotate(45deg) scale(1);
}

.cb input:focus-visible + .cb-box{
    box-shadow:0 0 0 3px rgba(11,54,85,.25);
}

.cb input:disabled + .cb-box{
    opacity: .6;
    cursor:not-allowed;
}
.cb input:disabled ~ .cb-text{
    opacity:.6;
    cursor:not-allowed;
}

.cb-text {
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: -.1px;
}

.lh-multiselect {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

#f-ing-search {
    border: 1px solid #D4D4D4;
    background-color: #fff;
    color: #495057;
    font-size: 15px;
    line-height: 160%;
    font-weight: 400;
    letter-spacing: -.1px;
    width: 100%;
    height: 48px;
    padding: 12px 8px 12px 40px;
    border-radius: 4px;
    font-family: "Open Sans", sans-serif;
}

.lh-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #D4D4D4;
    border-radius: 4px;
    padding: 6px 8px;
    background: #EFF5FF;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -.1px;
    color: #495057;
}

.lh-chip input {
    accent-color: #0a3a62;
    display: none;
}

/* Switch as simple toggle */
.lh-switch input {
    margin-right: 8px;
}

.lh-switch-as-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #163a59;
}

.lh-switch-as-link.is-active {
    font-weight: 600;
}

/* List header */
.lh-list__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
    opacity: 0;
}

#lh-search {
    display: none;
}

#lh-q {
    display: none;
}

/* Grid */
.lh-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    position: relative;
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 35px;
}

.od-article-card__title a {
    text-decoration: none;
    color: #1C1E1F;
}

.lh-grid .od-article-card__tags {
    margin-top: 12px;
    flex-wrap: wrap;
}

.lh-grid .od-article-card__tag {
    white-space: nowrap;
}

.lh-card-wrap.is-locked .od-article-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(2px);
    pointer-events: none;
    border-radius: 12px;
}

.lh-card-wrap.is-locked .od-article-card__image::before {
    content: "";
    position: absolute;
    top: calc(50% - 12.5px);
    left: calc(50% - 12.5px);
    width: 25px;
    height: 25px;
    background: var(--lock-icon) no-repeat center / contain;
    z-index: 2;
}

@media (max-width: 1200px) {
    .lh-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .lh-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lh-card-wrap.is-locked::before {
        top: 17%;
        left: 43%;
    }
}

/* Card wrapper extras */
.lh-card-wrap {
    position: relative;
    transition: box-shadow .2s ease
}

.lh-pagination {
    z-index: 2;
}

/* Pagination (generic) */
.lh-pagination ul {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    margin: 16px 0;
    list-style: none;
}

.lh-pagination a, .lh-pagination span {
    min-width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7e3ee;
    border-radius: 4px;
    padding: 0 8px;
    text-decoration: none;
    color: #163a59;
}

.lh-pagination .is-current {
    background: #0a3a62;
    color: #fff;
    border-color: #0a3a62;
}

/* Count text */
#lh-count,
#lh-count-bottom,
#lh-query {
    color: #495057;
    font-size: 15px;
    white-space: nowrap;
    line-height: 160%;
    font-weight: 400;
    letter-spacing: -.1px;
}

#lh-query {
    flex-grow: 1;
}

/* Autocomplete (Ingredients) */
.lh-filter.ingredients details > div {
    position: relative;
}

.lh-filter.ingredients details > div svg {
    position: absolute;
    top: 14px;
    left: 8px;
    z-index: 2;
}

.lh-autocomplete {
    position: relative;
}

.lh-autocomplete__panel {
    position: absolute;
    z-index: 20;
    left: 0;
    right: 0;
    top: 36px;
    background: #fff;
    border: 1px solid #d7e3ee;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(10, 58, 98, .08);
    max-height: 220px;
    overflow: auto;
    display: none;
}

.lh-autocomplete__list {
    list-style: none;
    margin: 0;
    padding: 6px;
}

.lh-autocomplete__item {
    padding: 10px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.lh-autocomplete__item:hover {
    background: #f3f7fb;
}

.lh-chip .lh-chip__remove {
    margin-left: 6px;
    cursor: pointer;
}

/* mobile trigger */
.lh-open-filters {
    display: none;
}

.lh-meta--bottom {
    text-align: center;
    font-size: 15px;
    line-height: 160%;
    font-weight: 400;
    letter-spacing: -.1px;
    color: #495057;
}

.promo-block {
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid #F1F1F1;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.promo-block img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-bottom: 16px;
}

.promo-block h3 {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -.3px;
    color: #000000;
}

.promo-block__text,
.promo-block__button {
    padding: 0;
    margin: 0;
    font-size: 15px;
    line-height: 160%;
    font-weight: 400;
    letter-spacing: -.1px;
    color: #495057;
    background: transparent;
}

.promo-block__button {
    text-decoration: underline;
    min-height: unset;
}

.promo-block__button:before,
.promo-block__button:after {
    display: none;
}

.lh-container[data-blog-handle="education-calendar"] .lh-list__header {
    display: none;
}

.edu-years {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.edu-years label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.edu-year > summary {
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -.6px;
    cursor: pointer;
    padding: 12px 14px;
    font-weight: 700;
    color: #1C1E1F;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f1f1f1;
}
.edu-year summary > span:last-child {
    transform: rotate(180deg);
}

.edu-year[open] summary > span:last-child {
    transform: rotate(0deg);
}

.edu-year__list {
    display: grid;
    list-style: none;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 0 14px 14px;
}

@media (max-width: 1200px) {
    .edu-year__list {
        grid-template-columns:repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .edu-year__list {
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

.lh-main > .button {
    font-weight: 700;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 17px 32px;
    margin-top: 18px;
    width: 295px ;
}

.lh-main > .button svg {
    margin-right: 8px;
}

@media (max-width: 1024px) {
    .lh-open-filters {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        border: 1px solid #D4D4D4;
        border-radius: 4px;
        height: 46px;
        padding: 0 12px;
        background: transparent;
        color: #495057;
        width: 100%;
        font-size: 15px;
        line-height: 160%;
        font-weight: 400;
        cursor: pointer;
        letter-spacing: -.1px;
        opacity: 0;
    }

    .lh-open-filters svg {
        margin-right: 18px;
    }

    .lh-sidebar {
        display: contents;
    }

    /* dialog panel */
    #lh-filters {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: none;
        height: 90vh; /* 90% of screen height */
        background: #fff;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -16px 32px rgba(10, 58, 98, .12);
        transform: translateY(100%);
        transition: transform .25s ease;
        z-index: 2001;
        /*overflow: auto;*/
        padding: 0 20px;
    }

    #lh-filters.is-open {
        transform: translateY(0);
    }

    .filter-is-open {
        position: fixed;
    }

    .filter-is-open::before {
        content: '';
        position: fixed;
        inset: 0;                 /* full screen */
        background: rgba(0, 0, 0, 0.5);
        z-index: 2000;            /* below the panel, above header */
    }

    body.filter-is-open {
        overflow: hidden;
    }

    .lh-filters__mobile-head {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 1;
        padding: 24px 0 0 0;
        margin-bottom: 16px;
    }

    .lh-filters__close {
        border: 0;
        background: transparent;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
    }

    .lh-filters__close svg {
        width: 15px;
        height: 15px;
        margin-right: 15px;
    }

    .lh-filters__clear {
        border: 0;
        background: transparent;
        color: #1C1E1F;
        cursor: pointer;
        margin-left: auto;
        text-decoration: underline;
        font-size: 15px;
        line-height: 160%;
        font-weight: 400;
        letter-spacing: -.1px;
    }

    .lh-filter-mobile-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #ffffff;
        padding: 12px 16px;
        border-top: 1px solid #e6ecf1;
        z-index: 1100;
        box-shadow: 0px -4px 4px 0px #0000001A;

    }

    .lh-filers_wrapper {
        overflow-y: auto;
        overflow-x: hidden;
        height: 75%;
    }

    .lh-filter-mobile-actions .button {
        width: 100%;
        background-color: #002854;
        border-radius: 4px;
        color: #ffffff;
        font-size: 12px;
        line-height: 120%;
        text-transform: uppercase;
        letter-spacing: 0;
        font-weight: 700;
        text-align: center;
    }

    #lh-filters-title {
        font-size: 15px;
        line-height: 160%;
        font-weight: 700;
        color: #1C1E1F;
        letter-spacing: -.1px;
        margin: 0;
    }

    .lh-filters .lh-filter {
        border: none;
        padding: 0;
    }

    .lh-pagination ul {
        justify-content: center;
    }

    .promo-block {
        display: none;
    }

    .lh-main > .button {
        width: 100%;
    }
}


.lh-list__header--bottom {
    margin-bottom: 20px;
}

@media (min-width: 1025px) {
    .lh-filters__mobile-head {
        display: none;
    }

    .lh-filters {
        padding: 32px;
        background-color: #F1F1F1;
    }

    .lh-filter {
        background-color: unset;
        border: none;
        padding-left: 0;
        padding-right: 0;
    }

    .lh-filter:first-child {
        margin-bottom: 0;
    }

    .lh-banner {
        padding: 24px 0;
        min-height: 180px;
        max-height: 180px;
        margin-bottom: 28px;
    }

    .lh-banner__content {
        padding-top: 0;
        padding-bottom: 0;
    }

    .lh-banner__media {
        justify-content: flex-end;
    }

    .lh-banner__media picture, .lh-banner__media img {
        max-width: 268px;

    }

    .lh-banner__media picture:after, .lh-banner__media img:after {
        background: linear-gradient(90deg, var(--lh-banner-bg) 0%, rgba(0,0,0,0) 100%);
        right: unset;
        height: 100%;
        width: 30%;

    }

    .lh-list__header {
        justify-content: flex-end;
        margin-bottom: 24px;
    }

    .lh-grid {
        gap: 40px 24px;
        margin-bottom: 45px;
    }

    .lh-grid .lh-card-wrap img {
        height: 250px;
    }

    .lh-filter-mobile-actions {
        display: none;
    }

    .lh-list__header.lh-list__header--bottom {
        margin-top: -40px;
        margin-bottom: 60px;
    }
}

/* ===== Loading overlay ===== */

#lh-list:has(.lh-loading[hidden]) .lh-list__header,
#lh-list:has(.lh-loading[hidden]) .lh-open-filters {
    opacity: 1;
}

.lh-loading[hidden] {
    display: none !important;
}

.lh-loading {
    position: absolute;
    inset: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(2px);
    border-radius: 8px;
}

.lh-spinner {
    display: block !important;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 4px solid rgba(10, 58, 98, 0.2);
    border-top-color: rgba(10, 58, 98, 0.9);
    animation: lh-spin 0.9s linear infinite;
}

@keyframes lh-spin {
    to {
        transform: rotate(360deg);
    }
}

.lh-pagination a,
.lh-pagination span {
    min-height: 40px;
    min-width: 40px;
    border: none;
}

.lh-pagination .is-disabled {
    display: none;
}

.lh-pagination ul li:last-child,
.lh-pagination ul li:first-child {
    border: 1px solid #d4d4d4;
    border-radius: 4px;
}

.lh-pagination li:first-child a,
.lh-pagination li:last-child a {
    font-size: 1px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lh-pagination li:first-child a:after,
.lh-pagination li:last-child a:after {
    content:"";
    width: 8px;
    height: 8px;
    border: 1px solid #496988;
    border-top:0;
    border-left:0;

    transform-origin:center;
    transition:transform .2s ease;
    margin-bottom: 2px;
    display: block;
}


.lh-pagination li:first-child a:after {
    transform: rotate(135deg) scale(1);
}

.lh-pagination li:last-child a:after {
    transform: rotate(-45deg) scale(1);
}

.seo-block {
    margin-top: auto;
    border-top: 1px solid #F1F1F1;
    padding: 32px 0;
}

.seo-block h5 {
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -0.6px;
    text-transform: uppercase;
    color: #1C1E1F;
}

.seo-block span {
    font-weight: 400;
    font-size: 15px;
    line-height: 160%;
    letter-spacing: -.1px;
    color: #495057;
}

@media (min-width: 1024px) {
    .seo-block {
        padding: 48px 40px 48px 16px;
    }
}

.lh-active-filters__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.lh-active-filters__list .lh-active-chip {
    border: none;
    background: #ffffff;
    border-radius: 20px;
    padding: 4px 12px;
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    letter-spacing: -.1px;
}

.lh-active-filters__list button {
    background: transparent;
    border: none;
    cursor: pointer;
    margin-right: 4px;
}

.lh-active-filters__list span {
    /*margin-right: 6px;*/

}