.dci-post-video-section,
.dci-post-faq-section {
	margin: 36px 0;
}

.dci-section-title {
	color: #071a2d;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.25;
	margin: 0 0 20px;
}

.dci-post-video-wrapper {
	aspect-ratio: 16 / 9;
	background: #071a2d;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.dci-post-video-wrapper iframe,
.dci-post-video-wrapper video,
.dci-post-video-wrapper object,
.dci-post-video-wrapper embed {
	border: 0;
	height: 100% !important;
	left: 0;
	position: absolute;
	top: 0;
	width: 100% !important;
}

.dci-faq-list {
	display: grid;
	gap: 10px;
}

.dci-faq-item {
	background: #fff;
	border: 1px solid #e1e6ea;
	border-radius: 5px;
	overflow: hidden;
}

.dci-faq-item summary {
	align-items: center;
	color: #071a2d;
	cursor: pointer;
	display: flex;
	font-size: 16px;
	font-weight: 600;
	gap: 18px;
	justify-content: space-between;
	line-height: 1.4;
	list-style: none;
	padding: 17px 18px;
}

.dci-faq-item summary::-webkit-details-marker {
	display: none;
}

.dci-faq-item summary:hover {
	background: #f8f9fa;
}

.dci-faq-item[open] summary {
	color: #b18b43;
}

.dci-faq-icon {
	flex: 0 0 14px;
	height: 14px;
	position: relative;
	width: 14px;
}

.dci-faq-icon::before,
.dci-faq-icon::after {
	background: currentColor;
	content: '';
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.dci-faq-icon::before {
	height: 2px;
	width: 14px;
}

.dci-faq-icon::after {
	height: 14px;
	transition: transform 0.2s ease;
	width: 2px;
}

.dci-faq-item[open] .dci-faq-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.dci-faq-answer {
	color: #5b6672;
	font-size: 15px;
	line-height: 1.7;
	padding: 0 18px 18px;
}

.dci-faq-answer > :first-child {
	margin-top: 0;
}

.dci-faq-answer > :last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.dci-post-video-section,
	.dci-post-faq-section {
		margin: 28px 0;
	}

	.dci-section-title {
		font-size: 24px;
	}

	.dci-faq-item summary {
		font-size: 15px;
		padding: 15px;
	}

	.dci-faq-answer {
		font-size: 14px;
		padding: 0 15px 15px;
	}
}

