.mgfaq-wrap {
	margin-top: 2.5em;
	max-width: 860px;
}

h2.mgfaq-title {
	text-transform: uppercase;
	color: #ac4455;
	font-size: 1.5em;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 1.25em;
}

.mgfaq-list {
	display: flex;
	flex-direction: column;
	gap: 0.85em;
}

.mgfaq-item {
	background: #fff;
	border: 1px solid #e6e1e1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(20, 20, 20, 0.05);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mgfaq-item:hover {
	border-color: #ac4455;
	box-shadow: 0 4px 14px rgba(172, 68, 85, 0.1);
}

.mgfaq-item[open] {
	border-color: #ac4455;
}

.mgfaq-question {
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	padding: 1.05em 1.35em;
	font-weight: 600;
	font-size: 1.05em;
	color: #292222;
	user-select: none;
}

.mgfaq-question::-webkit-details-marker {
	display: none;
}

.mgfaq-question::after {
	content: "+";
	flex-shrink: 0;
	width: 1.6em;
	height: 1.6em;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(172, 68, 85, 0.1);
	color: #ac4455;
	font-size: 1.15em;
	line-height: 1;
	transition: transform 0.25s ease, background 0.2s ease;
}

.mgfaq-item[open] .mgfaq-question::after {
	transform: rotate(135deg);
	background: #ac4455;
	color: #fff;
}

.mgfaq-answer {
	padding: 0 1.35em 1.25em;
	color: #5b5454;
	line-height: 1.65;
}

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