.faq-container {
    padding: 24px;
}

.faq-container .accordion-button::after {
    fill: var(--azamara-blue);
}


.faq-container.theme-light {
    color: var(--azamara-blue);
    background-color: transparent;
}

.faq-container.theme-dark, .faq-container.theme-dark .faqs-body .headline, .faq-container.theme-dark .faqs-body .blurb {
    color: var(--pure-white);
    background-color: var(--azamara-blue);
}



.faq-container .callout-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    width: 327px;
    height: fit-content;
    background: var(--white-sand);
    border: 1px solid var(--azamara-blue);
    border-radius: 20px;
    margin-top: 2rem;
}

.faq-container .callout-box > .card-body:first-of-type {
    border-bottom: 1px solid var(--azamara-blue);
    color: var(--azamara-blue);
}

.faq-container .callout-box > .card-body.callout-box-link {
    align-self: center !important;
    padding: 10px;
}


/* Use large font sizes only if on FAQ page */
body.editorial .faq-container .faqs-body .headline {
    font-weight: 420;
    font-size: 36px;
    line-height: 44px;
}

body.editorial .faq-container .faqs-body .blurb {
    font-weight: 390;
    font-size: 24px;
    line-height: 32px;
}

/* Use normal font sizes elsewhere */
body:not(.editorial) .faq-container .faqs-body .headline {
    font-weight: 420;
    font-size: 36px;
    line-height: 44px;

    color: var(--azamara-blue);
}

body:not(.editorial) .faq-container .faqs-body .blurb {
    font-weight: 390;
    font-size: 20px;
    line-height: 30px;

    color: var(--night-sky);
}



/* make it wider if there is no callout */
.faq-container .faq-width {
    width: 100% !important;
}




/* -sm breakpoint */
@media (min-width: 576px) {

}

/* -md breakpoint */
@media (min-width: 768px) {

    body.editorial .faq-container .faqs-body .headline {
        font-size: 48px;
        line-height: 60px;
    }

}

/* -lg breakpoint*/
@media (min-width: 992px) {
    /* make it wider if there is no callout */
    .faq-container .faq-width {
        width: 80% !important;
    }
}

/* -xl breakpoint */
@media (min-width: 1200px) {

}