/* MGH List (Contact us) – static accordion list, no icons. Content from Settings. Background #B9C8B933. */
/* Space above: margin-top 60px mobile, 100px desktop. Padding unchanged (internal). */
/* Gap description to list: 28px mobile, 73px desktop. Item: H6 title, plus icon; 1 col mobile, 2 cols desktop. */

.mgh-list {
	margin-top: 60px;
	padding: 60px 20px 0 20px;
	max-width: 884px;
	margin-left: auto;
	margin-right: auto;
	background-color: #B9C8B933;
	border-radius: 8px;
}

.mgh-list__title {
	margin: 0 0 20px 0;
	line-height: 1.2;
	font-family: Poppins, sans-serif;
	font-weight: 600;
	font-size: 29px;
	color: #2c3a60;
}

.mgh-list__description {
	margin: 0;
	line-height: 1.4;
	font-family: Poppins, sans-serif;
	font-weight: 300;
	font-size: 14px;
	color: #2c3a60;
}

.mgh-list__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 28px 0 0 0;
	padding: 0;
}

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

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

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

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

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

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

.mgh-list__plus {
	flex-shrink: 0;
	line-height: 1;
	font-size: 1.25rem;
	font-weight: 400;
	color: #242424;
	transition: transform 0.2s ease;
}

.mgh-list__item[open] .mgh-list__plus {
	transform: rotate(45deg);
}

.mgh-list__item-description {
	margin: 0 0 20px 0;
	padding: 0;
	line-height: 1.4;
	font-family: Poppins, sans-serif;
	font-weight: 300;
	font-size: 14px;
	color: #242424;
}

.mgh-list__placeholder {
	margin: 0;
	color: #2c3a60;
	opacity: 0.85;
	font-size: 14px;
	line-height: 1.4;
}

.mgh-list__placeholder a {
	color: #2c3a60;
	text-decoration: underline;
}

/* Desktop: two columns, margin-top 100px, padding 100px 50px 140px 50px */
@media (min-width: 1280px) {
	.mgh-list {
		margin-top: 100px;
		padding: 100px 50px 140px 50px;
		max-width: 100%;
	}

	.mgh-list__title {
		font-size: 34px;
		margin-bottom: 20px;
	}

	.mgh-list__description {
		font-size: 14px;
	}

	.mgh-list__list {
		margin-top: 73px;
		flex-direction: row;
		gap: 32px;
		align-items: flex-start;
	}

	.mgh-list__col {
		flex: 1;
		min-width: 0;
	}

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

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