/** Shopify CDN: Minification failed

Line 115:10 Expected identifier but found whitespace
Line 115:11 Unexpected "#475467"

**/
/* AN-Richtext Section CSS - External Stylesheet */
.an-rich-text-section {
    padding: var(--section-vertical-padding-desktop, var(--richtext-padding-top, 95px)) 0 var(--section-vertical-padding-desktop, var(--richtext-padding-bottom, 95px)) 0;
}

.an-rich-text-wraper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.an-rich-text-head {
    text-align: center;
    max-width: 770px;
    margin: 0 auto;
}

.an-rich-text-head p.subheading {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-subheading);
    font-weight: 600;
    font-family: var(--font-primary);
    margin: 0;
}

.an-rich-text-head .heading {
    color: #101828;
    font-size: 36px;
    line-height: 44px;
    font-weight: 800;
    font-family: var(--font-display);
    margin: 20px 0;
}

.an-rich-text-head .content {
    margin: 0;
    color: #475467; /* Match an-double-column subtext */
    font-size: 20px; /* Match an-double-column subtext */
    line-height: 30px; /* Match an-double-column subtext */
    font-family: var(--font-primary);
    letter-spacing: normal;
}

.an-rich-text-box-wraper {
    display: flex;
    align-items: stretch;
    gap: var(--richtext-content-gap, 32px);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.an-rich-text-box {
    height: auto;
    width: calc(50% - var(--richtext-gap-half, 16px));
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.an-rich-text-box.loaded {
    opacity: 1;
    transform: translateY(0);
}

.an-rich-text-content {
    height: 100%;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: 0 solid transparent;
}

.an-rich-text-content .block-heading {
    color: #101828;
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    font-family: var(--font-display);
    margin: 0 0 10px 0;
}

.an-rich-text-content p {
    margin: 0;
}

/* Mobile responsive sizing to match other sections */
@media (max-width: 992px) {
    .an-rich-text-head .content {
        font-size: 18px !important;
        line-height: 28px !important;
    }
}

@media (max-width: 749px) {
    .an-rich-text-head .content {
        font-size: 17px !important;
        line-height: 26px !important;
    }
}

@media (max-width: 480px) {
    .an-rich-text-head .content {
        font-size: 16px !important;
        line-height: 24px !important;
    }
}
    color: #475467; /* Match an-double-column .column-text */
    font-size: 16px; /* Match an-double-column .column-text */
    line-height: 24px; /* Match an-double-column .column-text */
    font-family: var(--font-primary);
}

/* Text alignment classes */
.an-rich-text-box[data-text-align="left"] .block-content {
    text-align: left;
}

.an-rich-text-box[data-text-align="center"] .block-content {
    text-align: center;
}

.an-rich-text-box[data-text-align="right"] .block-content {
    text-align: right;
}

.an-rich-text-box[data-text-align="justify"] .block-content {
    text-align: justify;
}

/* Enhanced styles for embedded rich text images */
.an-rich-text-head .content img,
.an-rich-text-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
    display: block;
}

/* Ensure embedded images don't break layout */
.an-rich-text-content .block-content img {
    max-width: 100%;
    height: auto;
}

/* Focus states for accessibility */
.an-rich-text-box:focus-within {
    outline: 2px solid var(--color-subheading);
    outline-offset: 4px;
}

/* Mobile Responsive Design */
@media(max-width: 700px) {
    .an-rich-text-box {
        width: 100%;
    }
    
    .an-rich-text-section {
        padding: var(--section-vertical-padding-mobile, var(--richtext-padding-top-mobile, 50px)) 0 var(--section-vertical-padding-mobile, var(--richtext-padding-bottom-mobile, 50px)) 0;
    }
    
    .an-rich-text-head .heading {
        font-size: 30px;
        line-height: 35px;
    }
    
    .an-rich-text-box-wraper.an-scroll {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        scroll-behavior: smooth;
        padding-bottom: 10px; /* Add space for scrollbar */
    }
    
    .an-rich-text-box-wraper.an-scroll .an-rich-text-box {
        width: 100%;
        min-width: 330px;
        flex-shrink: 0;
    }
    
    .an-rich-text-head .content {
        font-size: 18px;
        line-height: 28px;
    }

    /* Mobile optimization for embedded images */
    .an-rich-text-head .content img,
    .an-rich-text-content img {
        margin: 12px 0;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .an-rich-text-box {
        transition: none;
        opacity: 1;
        transform: none;
    }
} 