/* --------------------------------------------------------------------------
   FAQ (DUK) Styles
   -------------------------------------------------------------------------- */

.duk.section {
	padding: 60px 0;
}

.duk .container {
	/* Keep consistent gutters with other templates (1440px max width). */
	padding-left: 15px;
	padding-right: 15px;
}

@media (max-width: 768px) {
	.duk .container {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.duk-title {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 36px;
	line-height: 1.25;
	color: var(--site-heading-color);
	margin: 0 0 20px 0;
}

.under--title--text {
	font-family: 'Inter', sans-serif;
	font-weight: 300;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 1px;
	color: #4A4A4A;
	margin: 0 0 40px 0;
	max-width: 680px;
}

.duk-faq {
	width: 100%;
}

.faq-item {
	margin: 0;
}

.duk .question {
	position: relative;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	color: #2F2F2F;
	padding-left: 15px;
	margin: 0 0 14px 0;
}

.duk .question::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 4px;
	background: var(--site-accent-color);
	border-radius: 2px;
}

.duk .answer {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.7;
	color: #4A4A4A;
	padding-left: 15px;
	padding-bottom: 18px;
	margin: 0 0 18px 0;
	border-bottom: 1px solid var(--color-separator);
}

.duk .answer p {
	margin: 0 0 12px 0;
}

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

.faq-item:last-child .answer {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.duk-title {
		font-size: 28px;
	}

	.under--title--text {
		margin-bottom: 24px;
	}

	.duk .question {
		font-size: 14px;
	}

	.duk .answer {
		font-size: 13px;
	}
}

