.core-faqs {
    --jumplink-title: var(--text-4xl);

    position: relative;
    padding: 0 20px;
    max-width: var(--width-base);
    margin: 0 auto 60px auto;
}

.core-faqs .widget-title {
    margin-bottom: 30px;
    font-family: var(--font-display);
    font-weight: var(--font-weight-bold);
    font-size: var(--text-3xl);
    line-height: 1.2;
    color: var(--navy);
}

.core-faqs .widget-title::after {
    display: block;
    content: '';
    width: 100%;
    max-width: 78px;
    height: 2px;
    background: var(--powder-blue);
    margin-top: var(--space-1);
}

.core-faqs .group-heading,
.core-faqs .faq-jump-links h2 {
    font-size: var(--jumplink-title);
    margin-bottom: 15px;
}

.core-faqs .group-heading {
    font-size: 21px;
    line-height: 24px;
}

.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 {
    margin-bottom: 30px;
}

.core-faqs .faq-item .answer p {
    margin: 0;
}

.core-faqs .faq-item .question {
    position: relative;
    margin-bottom: var(--space-2);
    cursor: pointer;
    font-size: 21px;
    line-height: 24px;
}

.core-faqs .faq-item .question:focus {
    outline: none;
}

.core-faqs .faq-item .question-title {
    font-size: var(--text-xl);
}

.core-faqs.expandable .faq-item .question .toggle-answer {
    margin-left: 15px;
    cursor: pointer;
}

.core-faqs.expandable details summary {
    padding: 6px 3px 6px 20px;
}

.core-faqs details summary {
    list-style-type: none;
}

.core-faqs details summary::-webkit-details-marker {
    display: none;
}

.core-faqs.expandable details summary::before {
    content: "\002b";
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-100%);
    width: 20px;
    height: 20px;
    font-size: 24px;
    color: black;
}

.core-faqs.expandable details[open] summary::before {
    content: "\002d";
}

@media (min-width: 64em) {
    .core-faqs .widget-title {
        font-size: var(--text-4xl);
    }

    .core-faqs .faq-item .question-title {
        font-size: var(--text-2xl);
    }

    .core-faqs.expandable details summary {
        padding: 8px 4px 8px 20px;
    }

    .core-faqs .group-heading {
        font-size: 27px;
        line-height: 30px;
    }
	.core-faqs.expandable details summary::before {
		transform: translateY(-100%);
	}
}

@media (min-width: 90em) {
    .core-faqs {
        margin-bottom: 100px;
    }

    .core-faqs .widget-title {
        font-size: var(--text-6xl);
    }

    .core-faqs .widget-title::after {
        transform: translateX(-50%);
    }

    .core-faqs .faq-item .question-title {
        font-size: 2rem;
    }
}