/* Nutricia Product FAQ — accordion */
.npf-faq {
	margin: 1.5em 0;
}

.npf-faq__heading {
	margin: 0 0 .75em;
	font-size: 1.4em;
}

.npf-faq__list {
	border-top: 1px solid rgba(0, 0, 0, .1);
}

.npf-faq__item {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.npf-faq__q {
	list-style: none;
	cursor: pointer;
	padding: 1em 2.2em 1em 0;
	position: relative;
	font-weight: 600;
	line-height: 1.4;
	outline: none;
}

.npf-faq__q::-webkit-details-marker {
	display: none;
}

.npf-faq__q::after {
	content: "";
	position: absolute;
	right: .4em;
	top: 50%;
	width: .6em;
	height: .6em;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-70%) rotate(45deg);
	transition: transform .2s ease;
	opacity: .7;
}

.npf-faq__item[open] > .npf-faq__q::after {
	transform: translateY(-30%) rotate(-135deg);
}

.npf-faq__q:focus-visible {
	color: inherit;
	text-decoration: underline;
}

.npf-faq__a {
	padding: 0 0 1.15em;
	line-height: 1.6;
}

.npf-faq__a p:last-child {
	margin-bottom: 0;
}
