.faq-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 6px 0;
	margin: 40px 0 56px;
}
.page-faq .hero__media {
    transform: scaleX(-1);
}
.faq-tab {
	background: none;
	border: none;
	border-right: 1px solid var(--navy);
	cursor: pointer;
	font-family: inherit;
	font-size: 1rem;
	color: var(--navy);
	text-decoration: none;
	padding: 4px 16px;
	transition: color 0.2s ease;
}
.faq-tab:last-child {
	border-right: none;
}
.faq-tab:hover {
	color: var(--orange);
}
.faq-tab.is-active {
	color: var(--orange);
	font-weight: 700;
}
/* Tous les panneaux sont affichés ; les onglets = ancres qui scrollent jusqu'à eux. */
.faq-panel {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 56px;
	align-items: start;
	scroll-margin-top: 120px; /* la cible d'ancre s'arrête sous l'en-tête */
}
.faq-panel + .faq-panel {
	margin-top: 72px;
	padding-top: 72px;
	border-top: 1px solid rgba(13, 27, 46, 0.12);
}
.faq-panel__title {
	font-size: 1.9rem;
	font-weight: 700;
	margin: 0 0 24px;
}
.faq-panel__num {
	white-space: nowrap;
}
.faq-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.faq-item {
	border-bottom: 1px solid var(--navy);
}
.faq-item__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	text-align: left;
	padding: 22px 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--navy);
}
.faq-item__q .icon-arrow {
	flex: 0 0 auto;
	transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__q .icon-arrow {
	transform: rotate(90deg);
}
.faq-item.is-open .faq-item__q {
	color: var(--orange);
}
.faq-item__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-item__a {
	max-height: 600px;
}
.faq-item__a-inner {
	padding: 0 0 24px;
	color: var(--navy);
	line-height: 1.7;
}
.faq-item__a-inner p {
	margin: 0 0 12px;
}
.faq-empty {
	color: var(--navy);
	opacity: 0.6;
	padding: 20px 0;
}
.faq-panel__media {
	overflow: hidden;
}
.faq-panel__media img {
	width: 100%;
	height: 100%;
	max-height: 520px;
	object-fit: cover;
	display: block;
}

@media screen and (max-width: 1080px) {
	.faq-panel {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.faq-panel__media {
		order: 2;
	}
	.faq-panel__media img {
		height: 400px;
	}
}