/** Shopify CDN: Minification failed

Line 94:9 Cannot use type selector "__item" directly after nesting selector "&"

**/
/* =========================================
   Blog Meta & Time
   ========================================= */
.blog-meta {
    @media (min-width: 991px) {
        gap: 30px;
        flex-wrap: nowrap;
    }

    & > div {
        gap: 12px;
        
        &:after {
            display: none;
        }
    }

    * {
        color: #79716B;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 16px;
        font-size: 10px;
        letter-spacing: 0.6px;
        text-align: left;

        @media (min-width: 991px) {
            font-size: 12px;
        }
    }

    .author img,
    .reviewer img {
        width: 48px;
        height: 48px;
        border-radius: 14px;
        box-shadow: 3px 3px #11335E;
        border-width: 2px;
    }
}

.time-wrap {
    display: flex;
    align-items: center;
    gap: 12px;

    .icon-wrap {
        width: 50px;
        height: 50px;
        flex: 0 0 50px;
    }
}

.time-container {
    @media (min-width: 991px) {
        display: flex;
        gap: 23px;
    }

    .reading-time {
        margin-bottom: 4px;

        @media (min-width: 991px) {
            position: relative;

            &::after {
                content: '•';
                position: absolute;
                left: calc(100% + 8px);
                top: 50%;
                transform: translateY(-50%);
            }
        }
    }
}

/* =========================================
   Breadcrumbs & Hero
   ========================================= */
.article-breadcrumbs {
    @media (min-width: 991px) {
        display: none;
    }

    .breadcrumbs {
        background-color: transparent;
        padding: 13px 19px;

        &__item a {
            font-weight: 400;
            font-size: 14px;
        }
    }
}

.article-template__hero {
    box-shadow: 6px 6px #11335E;
    border-radius: 20px;
    border: 2px solid #11335E;
    overflow: hidden;
}

/* =========================================
   Typography & Global Blog Elements
   ========================================= */
.blog-title h1 {
    margin-top: 20px;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.25;
    color: #11335E;
    font-family: var(--font-archivo);
    text-transform: uppercase;

    @media (min-width: 991px) {
        font-size: 48px;
        line-height: 53px;
        letter-spacing: -3.6px;
        margin-bottom: 30px;
        font-weight: 700;
    }
}

.blog-excerpt p {
    line-height: 1.5;
    margin-top: -7px;
    font-size: 15px;
    padding-left: 20px;
    color: #57534D;
    border-left: 4px solid #1C1917;

    @media (min-width: 991px) {
        font-size: 20px;
        line-height: 28px;
    }
}

.blog-content-section {
    h2 {
        margin-bottom: 10px;
        font-weight: 800;
        font-size: 20px;
        line-height: 24px;
        color: #11335e;
        font-family: var(--font-archivo);
        text-transform: uppercase;

        @media (min-width: 991px) {
            font-size: 36px;
            line-height: 40px;
            font-weight: 700;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }
    }

    p {
        font-size: 14px;
        line-height: 24px;
        color: #57534D;
        margin-bottom: 20px;

        &:last-child {
            margin-bottom: 0;
        }

        @media (min-width: 991px) {
            font-size: 18px;
            line-height: 28px;
        }
    }
}

/* =========================================
   Blog Index / Table of Contents
   ========================================= */
ol#blog-index {
    font-family: var(--font-syne);
    padding-top: 0;
    font-size: 14px;
    line-height: 22.5px;
    font-weight: 700;

    a {
        font-size: 14px;
        font-weight: 700;
    }

    @media (min-width: 991px) {
        font-size: 16px;
        line-height: 22.5px;

        a {
            font-size: 16px;
            line-height: 22.5px;
        }
    }
}

.blog-index-wrap {
    padding: 24px;
    border-radius: 16px;
    border: 2px solid #11335E;
    box-shadow: 6px 6px #11335E;
    background-color: #FFFAF0;

    @media (min-width: 991px) {
        padding: 48px;
        box-shadow: 8px 8px #11335E;
        border-radius: 16px;
    }

    li {
        margin-bottom: 4px;

        &:last-child {
            margin-bottom: 0;
        }

        @media (min-width: 991px) {
            margin-bottom: 10px;
        }
    }
}

/* =========================================
   Blog Layout Sections
   ========================================= */
.blog-section {
    &.section-blog-info {
        padding-bottom: 0;

        @media (min-width: 991px) {
            max-width: 1300px;
            padding: 80px 15px;
        }
    }
}

section.blog-section {
    &.section-blog-info {
        .blog-info {
            @media (min-width: 991px) {
                justify-content: center;
            }
        }
    }

    &.section-blog-content {
        padding-top: 40px;
        padding-bottom: 47px;

        @media (min-width: 991px) {
            padding: 80px 20px 100px;
        }

        img {
            box-shadow: 6px 6px #11335E;
            border: 2px solid #11335E;
            border-radius: 16px;

            @media (min-width: 991px) {
                border-radius: 30px;
            }
        }
    }

    &.section-related-links {
        padding: 55px 0 70px;

        @media (min-width: 991px) {
            padding: 100px 20px;
        }
    }

    &.section-blog-author {
        padding: 0;

        @media (min-width: 991px) {
            padding: 100px 20px;
        }

        .author-link {
            border: 2px solid #11335E;
            box-shadow: 4px 4px #11335E;
            width: 100%;
            border-radius: 14px;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 700;
            padding: 16px;
            line-height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;

            svg {
                width: 20px;
                height: 20px;
            }

            @media (min-width: 991px) {
                font-size: 18px;
                line-height: 2;
                border-radius: 20px;
            }
        }
    }
}

.section-blog-index {
    @media (min-width: 991px) {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* =========================================
   Related Links Wrapper
   ========================================= */
.related-links-wrap {
    all: unset;

    h4 {
        font-weight: 400;
        font-size: 16px;
        line-height: 22px;
        color: #11335E;
        margin-bottom: 0;
        background: #9EDBFF;
        border: 2px solid #11335E;
        box-shadow: 6px 6px 0px #11335E;
        border-radius: 16px;
        padding: 12px 48px;
        text-align: center;
        font-family: var(--font-syne);
        text-transform: uppercase;
        letter-spacing: -0.45px;
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: center;
        max-width: 890px;
        margin-left: auto;
        margin-right: auto;
        cursor: pointer;
        transition: opacity 0.2s ease;

        svg {
            width: 20px;
            height: 20px;
        }

        &:hover {
            opacity: 0.8;
        }

        @media (min-width: 991px) {
            font-size: 24px;
            line-height: 22.5px;
            padding: 48px;
            letter-spacing: -0.45px;
            box-shadow: 8px 8px;
        }
    }

    ol {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.95);
        width: 90%;
        max-width: 800px;
        max-height: 80vh;
        overflow-y: auto;
        background-color: #9EDBFF;
        border: 2px solid #11335E;
        border-radius: 16px;
        padding: 20px;
        margin: 0;
        box-shadow: 8px 8px #11335E;
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        padding-left: 40px;

        @media (min-width: 991px) {
            padding: 48px;
        }
    }

    &.is-open ol {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }

    li,
    li a {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 8px;
        line-height: 22.5px;

        @media (min-width: 991px) {
            font-size: 16px;
            line-height: 22.5px;
            letter-spacing: -0.45px;
            margin-bottom: 12px;

            &:last-child {
                margin-bottom: 0;
            }
        }
    }
}

/* =========================================
   Author Info & Image Layout
   ========================================= */
.author p {
    max-width: 130px;
    text-decoration: underline;

    @media (min-width: 991px) {
        max-width: 100%;
    }
}

.author-info {
    h4 {
        display: flex;
        gap: 8px;
        align-items: center;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1.4px;
        font-weight: 700;
        line-height: 20px;
        margin-bottom: 14px;
        color: #11335E;

        svg {
            width: 24px;
            height: 24px;
        }
    }

    h3 {
        font-size: 24px;
        text-transform: uppercase;
        letter-spacing: -1px;
        margin-bottom: 26px;
        color: #11335E;

        @media (min-width: 991px) {
            font-size: 36px;
            letter-spacing: -2.6px;
            line-height: 1;
            margin-bottom: 24px;
        }
    }

    p {
        font-size: 15px;
        line-height: 24px;
        color: #57534D;

        @media (min-width: 991px) {
            font-size: 18px;
            line-height: 28px;
            margin-bottom: 0;
        }
    }
}

.author-image {
    max-width: 323px;
    margin: 0 auto 24px;

    img {
        box-shadow: 6px 6px #11335E;
        border: 2px solid #11335E;
        width: 100%;
        height: auto;
        max-width: calc(100% - 32px);

        @media (min-width: 991px) {
            margin-bottom: 50px;
            display: block;
            max-width: 100%;
            box-shadow: 8px 8px;
        }
    }

    @media (min-width: 991px) {
        order: 2;
        max-width: 380px;
        margin-left: 0;
    }
}

/* Specific Author Section Overrides */
.section-blog-author {
    & > div {
        padding-bottom: 64px;

        @media (min-width: 991px) {
            border: 0;
            padding-bottom: 0;
        }
    }

    .author-info {
        .desktop-only {
            @media (min-width: 991px) {
                flex-direction: column;
            }
        }

        @media (min-width: 991px) {
            flex-basis: 60%;
        }
    }

    .author-image {
        @media (min-width: 991px) {
            flex-basis: 40%;
            margin-top: 40px;
        }
    }
}

/* =========================================
   Utilities & Misc
   ========================================= */
.mobile-only {
    @media (min-width: 992px) {
        display: none !important;
    }
}

.desktop-only {
    display: none !important;

    @media (min-width: 992px) {
        display: flex !important;
    }
}

.media img {
    max-height: 100%;
}

.border-related-wrap {
    border: 2px solid #11335E;
    border-width: 2px 0 0 0;

    @media (min-width: 991px) {
        border-width: 2px 0 2px 0;
    }
}

.mm-featured-products {
    @media (min-width: 991px) {
        border-top: 2px solid #11335E;
    }
}