/*
 * The home page's FAQ accordion.
 *
 * The accordion itself is the design team's component in style.css, which is
 * left alone. This adds only what the section needs now that it renders a
 * selection of the real FAQ rather than a list of its own: paragraph spacing,
 * because an answer can be more than one, and the link out to the full answer.
 */

.custom-accordion .accordion-body p { margin: 0 0 0.6rem; }
.custom-accordion .accordion-body p:last-of-type { margin-bottom: 0; }

.custom-accordion .accordion-body a.faq-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.65rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
}

.custom-accordion .accordion-body a.faq-more:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.custom-accordion .accordion-body a.faq-more i { font-size: 9px; }
