.mt-faq {
	width: 100%;
}

.mt-faq__title {
	margin: 0 0 1em;
}

.mt-faq__list {
	width: 100%;
}

.mt-faq__item {
	border-bottom: 1px solid #000;
	background-color: transparent;
	margin: 0;
}

.mt-faq__heading {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.mt-faq__trigger {
	display: block;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 20px 60px 20px 0px;
	border: 0;
	background: transparent;
	color: #000;
	font-family: Swift-Medium, Georgia, serif;
	font-size: 30px;
	font-weight: 400;
	line-height: 1.25;
	text-align: left;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
}

.mt-faq__trigger:focus {
	outline: 2px solid #000;
	outline-offset: 2px;
}

.mt-faq__trigger:focus:not(:focus-visible) {
	outline: none;
}

.mt-faq__trigger:focus-visible {
	outline: 2px solid #000;
	outline-offset: 2px;
}

.mt-faq__question {
	display: block;
}

.mt-faq__trigger::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 40px;
	height: 40px;
	background-image: url("../images/+.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	transform: translateY(-50%);
	pointer-events: none;
}

.mt-faq__item.is-open .mt-faq__trigger::after {
	background-image: url("../images/-.png");
}

.mt-faq__panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 700ms ease-in-out;
}

.mt-faq__item.is-open .mt-faq__panel {
	grid-template-rows: 1fr;
}

/* Override UA [hidden] { display: none !important } so 0fr can clip without a flash. */
.mt-faq__panel[hidden] {
	display: grid !important;
}

.mt-faq__panel-inner {
	overflow: hidden;
	min-height: 0;
}

.mt-faq__answer {
	font-family: Swift-Medium, Georgia, serif;
	font-size: 24px;
	line-height: 125%;
	padding-bottom: 15px;
}

.mt-faq .mt-faq__answer sub {
	font-family: Swift-Light;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 160%;
	display: block;
	margin-top: -35px;
	height: auto;
	text-indent: 12px;
}

.mt-faq__answer p:last-child,
.mt-faq__answer ul:last-child,
.mt-faq__answer ol:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
	.mt-faq__panel {
		transition: none;
	}
}

@media all and (max-width: 788px) {
	.mt-faq__trigger {
		font-size: 17px;
		padding: 20px 60px 20px 0px;
	}

	.mt-faq__answer {
		font-size: 12px;
		padding-bottom: 15px;
	}
}
