/* =============================================================================
   FAQ Block (UIkit accordion)
   ============================================================================= */

.faq-block h2.center {
	text-align: center;
	margin-bottom: 35px;
}

.faq-accordion {
	margin: 0;
	padding: 0;
	list-style: none;
}

.faq-accordion > li {
	border-bottom: 1px solid #e5e5e5;
}

.faq-accordion > li:first-child {
	border-top: 1px solid #e5e5e5;
}

.faq-accordion .uk-accordion-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding: 20px 0;
	font-size: 1.05rem;
	font-weight: 600;
	color: #43454b;
	text-decoration: none;
	cursor: pointer;
}

.faq-accordion .uk-accordion-title:hover {
	color: #e74111;
}

/* Chevron toggle */
.faq-accordion .uk-accordion-title::after {
	content: "";
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	border-right: 2px solid #e74111;
	border-bottom: 2px solid #e74111;
	transform: rotate(45deg);
	transition: transform 0.25s ease;
}

.faq-accordion > .uk-open > .uk-accordion-title::after {
	transform: rotate(-135deg);
}

.faq-accordion .uk-accordion-content {
	margin: 0;
	padding: 0 0 20px;
	color: #75787b;
}

.faq-accordion .uk-accordion-content p:last-child {
	margin-bottom: 0;
}
