/**
 * faq_accordion_section.css
 *
 * Cream BG. Centered serif heading. Native <details>/<summary> styled
 * with caret rotation.
 */

.ncm-faq {
	background: #FCFAF8;
	padding: 120px 0;
}

.ncm-faq__inner {
	max-width: 1280px;
}

.ncm-faq__heading {
	font-family: var(--ff-display);
	font-weight: 400;
	font-size: 48px;
	line-height: 60px;
	letter-spacing: -0.02em;
	color: var(--clr-fg-dark);
	text-align: center;
	margin: 0 0 50px;
}

.ncm-faq__heading span {
    font-family: 'Marcellus', serif;
    font-weight: inherit;
    font-size: 0.92em;
    display: inline-block;
}

.ncm-faq__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ncm-faq__inner-section {
	padding-inline: 145px;
}

.ncm-faq__item {
	border-top: 1px solid #2F3E3440;
}

.ncm-faq__item:last-child {
	border-bottom: 1px solid #2F3E3440;
}

.ncm-faq__details {
	padding: 30px 0;
}

.ncm-faq__summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.ncm-faq__summary::-webkit-details-marker {
	display: none;
}

.ncm-faq__question {
	font-family: var(--ff-primary);
	font-weight: 700;
	font-size: 21px;
	line-height: 24px;
	color: var(--clr-fg-dark);
}

.ncm-faq__details .ncm-faq__caret .faq-up-arrow,.ncm-faq__details[open] .ncm-faq__caret .faq-down-arrow {
    display: none;
}

.ncm-faq__details[open] .ncm-faq__caret .faq-up-arrow {
    display: block;
}

.ncm-faq__answer,
.ncm-faq__answer p {
	font-family: var(--ff-primary);
	font-weight: 400;
	font-size: 21px;
	line-height: 24px;
	color: var(--clr-fg-dark);
	margin: 30px 0 0;
    letter-spacing: 0;
}

section.ncm-section.ncm-faq:has(~ section.ncm-section.ncm-faq) {
    padding-bottom: 0px
}

@media (max-width: 768px) {
	.ncm-faq {
		padding: 60px 0;
	}

	.ncm-faq__heading {
		font-size: 32px;
		margin-bottom: 36px;
	}
}

@media (max-width: 1024px) {
	.ncm-faq__inner-section {
		padding-inline: 100px;
	}
}

@media (max-width: 991px) {
	.ncm-faq__inner-section {
		padding-inline: 50px;
	}
}

@media (max-width: 767px) {
	.ncm-faq__inner-section {
		padding-inline: 0px;
	}
}