/* MGH FAQ widget – accordion list, single column. Chevron toggles (rotates 180° when open). */
/* Container max-width 750px. Title: Desktop H3 / Mobile H3, MGH blue. Padding: 60px mobile, 100px desktop. */
/* Item: question Mobile H6 / Desktop H6; header padding 30px top/bottom mobile, 40px desktop; chevron 12×12. */

.mgh-faq {
	padding: 60px 20px 0 20px;
	max-width: 750px;
	margin-left: 0;
	margin-right: auto;
}

.mgh-faq__title {
	margin: 0 0 20px 0;
	line-height: 1.2;
}

.mgh-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
}

.mgh-faq__item {
	margin: 0;
	padding: 0;
	border: none;
	border-top: 1px solid rgba(44, 58, 96, 0.20);
}

.mgh-faq__item:last-child {
	border-bottom: 1px solid rgba(44, 58, 96, 0.20);
}

.mgh-faq__header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 30px 0;
	cursor: pointer;
	list-style: none;
}

.mgh-faq__header::-webkit-details-marker,
.mgh-faq__header::marker {
	display: none;
}

.mgh-faq__item-title {
	flex: 1;
	min-width: 0;
	line-height: 1.2;
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 16px;
}

.mgh-faq .mgh-faq__list .mgh-faq__item-title {
	color: #2c3a60;
}

.mgh-faq__chevron {
	flex-shrink: 0;
	width: 12px;
	height: 12px;
	object-fit: contain;
	transition: transform 0.25s ease;
}

.mgh-faq__item[open] .mgh-faq__chevron {
	transform: rotate(180deg);
}

.mgh-faq__description {
	margin: 0 0 20px 0;
	padding: 0;
	line-height: 1.4;
}

.mgh-faq__button-wrap {
	margin-top: 0;
	margin-bottom: 20px;
}

/* Desktop */
@media (min-width: 1280px) {
	.mgh-faq {
		padding: 100px 50px 0 50px;
	}

	.mgh-faq__title {
		margin-bottom: 28px;
	}

	.mgh-faq__header {
		padding: 40px 0;
	}

	.mgh-faq__item-title {
		font-size: 17px;
	}
}
