/*
 * lmeatlm-faq — Accordéon FAQ basé sur <details>/<summary> natifs.
 */

.lmeatlm-faq {
	margin: 3em 0;
	font-family: 'Inter', -apple-system, system-ui, sans-serif;
}

.lmeatlm-faq-title {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 1em;
	padding-bottom: 0.3em;
	border-bottom: 2px solid #e5e5e5;
	letter-spacing: -0.01em;
}

.lmeatlm-faq details {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	margin: 0 0 0.7em;
	padding: 0;
	transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

.lmeatlm-faq details[open] {
	border-color: #b8123e;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.lmeatlm-faq summary {
	cursor: pointer;
	padding: 1em 1.2em;
	font-weight: 600;
	font-size: 17px;
	line-height: 1.4;
	color: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	list-style: none;
	user-select: none;
}

.lmeatlm-faq summary::-webkit-details-marker {
	display: none;
}

.lmeatlm-faq summary::after {
	content: '+';
	color: #b8123e;
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

.lmeatlm-faq details[open] summary::after {
	content: '−';
}

.lmeatlm-faq summary:hover {
	color: #b8123e;
}

.lmeatlm-faq summary:focus-visible {
	outline: 2px solid #b8123e;
	outline-offset: 2px;
	border-radius: 4px;
}

.lmeatlm-faq .lmeatlm-faq-answer {
	padding: 0 1.2em 1.2em;
	font-size: 16px;
	line-height: 1.7;
	color: #4a4a4a;
}

.lmeatlm-faq .lmeatlm-faq-answer p {
	margin: 0 0 0.8em;
}

.lmeatlm-faq .lmeatlm-faq-answer p:last-child {
	margin-bottom: 0;
}

@media (max-width: 600px) {
	.lmeatlm-faq-title { font-size: 24px; }
	.lmeatlm-faq summary { font-size: 16px; padding: 0.9em 1em; }
	.lmeatlm-faq .lmeatlm-faq-answer { padding: 0 1em 1em; font-size: 15px; }
}
