/* #last edited 2026-07-05T12:00:00.0000000+01:00 */
/* TLD SEO — FAQ accordion (native <details>, no JS). */

.tld-faq {
	margin: 2.5rem 0 1.5rem;
}

.tld-faq__title {
	margin: 0 0 1rem;
	font-size: 1.5rem;
	line-height: 1.3;
}

.tld-faq__item {
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 10px;
	margin: 0 0 0.6rem;
	background: #fff;
	overflow: hidden;
}

.tld-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.9rem 1.1rem;
	font-weight: 600;
	line-height: 1.4;
	cursor: pointer;
	list-style: none;
}

/* Hide the default disclosure triangle cross-browser. */
.tld-faq__question::-webkit-details-marker {
	display: none;
}
.tld-faq__question::marker {
	content: "";
}

/* Chevron indicator. */
.tld-faq__question::after {
	content: "";
	flex: 0 0 auto;
	width: 0.55em;
	height: 0.55em;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	margin-top: -0.2em;
}

.tld-faq__item[open] > .tld-faq__question::after {
	transform: rotate(225deg);
	margin-top: 0.2em;
}

.tld-faq__question:hover {
	background: rgba(0, 0, 0, 0.03);
}

.tld-faq__question:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: -2px;
}

.tld-faq__answer {
	padding: 0 1.1rem 1rem;
	line-height: 1.6;
}

.tld-faq__answer p {
	margin: 0 0 0.75em;
}

.tld-faq__answer p:last-child {
	margin-bottom: 0;
}
