/**
 * FAQ pod článkom – minimálne štýly.
 * Zámerne používa neutrálne hodnoty, aby sa typografia a farby
 * preberali z aktívnej témy (font-family, color, line-height, headings).
 */

.fpc-faq {
	margin: 2em 0;
}

.fpc-faq__title {
	margin: 0 0 0.75em 0;
}

.fpc-faq__list {
	display: block;
}

.fpc-faq__item {
	border-bottom: 1px solid currentColor;
	border-color: rgba(0, 0, 0, 0.1);
	padding: 0.75em 0;
}

.fpc-faq__item:first-child {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.fpc-faq__question {
	cursor: pointer;
	font-weight: 600;
	padding: 0.25em 0;
	list-style: none;
	position: relative;
	padding-right: 1.5em;
}

.fpc-faq__question::-webkit-details-marker {
	display: none;
}

.fpc-faq__question::after {
	content: "+";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.25em;
	line-height: 1;
	transition: transform 0.2s ease;
}

.fpc-faq__item[open] > .fpc-faq__question::after {
	content: "−";
}

.fpc-faq__answer {
	padding: 0.5em 0 0.25em 0;
}

.fpc-faq__answer > *:first-child {
	margin-top: 0;
}

.fpc-faq__answer > *:last-child {
	margin-bottom: 0;
}
