.core-faqs {
    --jumplink-title: var(--text-4xl);

    position: relative;
    padding: 0 30px;
    max-width: var(--width-base);
    margin: 0 auto;
}

.core-faqs ul {
    list-style: disc;
}

.core-faqs .group-heading,
.core-faqs .faq-jump-links h2 {
    font-family: var(--pitch);
    text-transform: uppercase;
    color: var(--gray-medium-2);
    font-size: var(--jumplink-title);
    margin-bottom: 15px;
}

.core-faqs .group-heading {
    font-family: var(--pitch);
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: var(--gray-medium-2);
}

.core-faqs .line-btn {
    --arrow-color: var(--teal);
    padding-top: 0;
    padding-bottom: 0;
}

.core-faqs .line-btn a {
    font-size: 14px;
    line-height: 20px;
}

.core-faqs .faq-jump-links ol,
.core-faqs .faq-jump-links ul {
    margin: 0 0 35px 25px;
}

.core-faqs .back-to-top {
    display: inline-block;
    margin: 0 0 25px 0;
}

.core-faqs .back-to-top > a {
    font-size: 16px;
}

.core-faqs .faq-item .question {
    position: relative;
    margin-bottom: 24px;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    font-family: var(--pitch);
}

.core-faqs .faq-item .question p {
    font-family: inherit;
}

.core-faqs .faq-item .question * {
    display: inline;
    margin: 0;
    font-size: inherit;
    line-height: inherit;
}

.core-faqs.expandable .faq-item .question .toggle-answer {
    margin-left: 15px;
    cursor: pointer;
}

.core-faqs .faq-item .answer {
    padding-bottom: 16px;
    padding-left: 40px;
    position: relative;
}

.core-faqs .faq-item .answer::before {
    position: absolute;
    top: 0;
    left: 0;
    content: 'A.';
    font-family: var(--helvetica-bold);
    font-size: 18px;
}

.core-faqs .faq-item .answer p {
    font-size: 16px;
    font-family: var(--helvetica);
    line-height: 26px;
    margin-bottom: 8px;
}

.core-faqs.expandable details summary {
    padding: 16px 40px 16px 20px;
    background-color: var(--gray);
    color: var(--white);
    transition: color 0.2s ease, background-color 0.2s ease;
    min-height: 72px;
}

.core-faqs.expandable details[open] .question {
    background-color: var(--peach);
    color: var(--gray-dark);
}

.core-faqs details summary {
    list-style-type: none;
}

.core-faqs details summary::-webkit-details-marker {
    display: none;
}

.core-faqs.expandable details summary::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f077";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 15px;
    top: 25px;
    font-size: 20px;
    color: var(--white);
    transition: color 0.2s ease;
}

.core-faqs.expandable details[open] summary::before {
    color: var(--gray-dark);
}

@media (min-width: 40em) {
    .core-faqs.expandable details summary::before {
        top: 15px;
    }

    .core-faqs.expandable details summary {
        min-height: unset;
    }
}

@media (min-width: 64em) {
    .core-faqs .group-heading {
        font-size: 27px;
        line-height: 30px;
    }

    .core-faqs.expandable details summary::before {
        top: 12px;
    }

    .core-faqs .faq-item .answer p {
        font-size: 18px;
        line-height: 28px;
    }

    .core-faqs .group-heading {
        font-size: 30px;
    }

    .core-faqs .faq-item .question {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .core-faqs .line-btn a {
        font-size: 20px;
    }

    .core-faqs.expandable details summary {
        padding: 12px 40px 12px 20px;
    }

    .core-faqs .line-btn {
        margin-top: 12px;
        margin-bottom: 30px;
    }

    .core-faqs .faq-item .answer p:first-of-type {
        margin-top: 55px;
    }

    .core-faqs .faq-item .answer {
        margin-left: 80px;
    }
}