/* FAQ hub layout — sidebar navigation + improved content area */

.fqa-sec.faq-hub {
	padding: 50px 0 80px;
}

.faq-hub__layout--with-sidebar {
	align-items: flex-start;
}

.faq-hub__sidebar-col {
	margin-bottom: 30px;
}

.faq-hub__sidebar-inner {
	background: #fff;
	border: 1px solid #e4e8ee;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(9, 43, 82, 0.08);
	overflow: hidden;
}

@media (min-width: 992px) {
	.faq-hub__sidebar-inner {
		position: sticky;
		top: 110px;
	}
}

.faq-hub__sidebar-header {
	background: linear-gradient(135deg, var(--blue) 0%, #0a3566 100%);
	color: #fff;
	padding: 24px 22px 20px;
}

.faq-hub__sidebar-kicker {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0 0 6px;
	opacity: 0.85;
}

.faq-hub__sidebar-title {
	font-size: 22px;
	line-height: 1.25;
	font-weight: 700;
	margin: 0 0 8px;
	color: #fff;
}

.faq-hub__sidebar-meta {
	font-size: 14px;
	margin: 0;
	opacity: 0.9;
}

.faq-hub__nav-list {
	list-style: none;
	margin: 0;
	padding: 8px 0;
}

.faq-hub__nav-item {
	margin: 0;
	border-bottom: 1px solid #eef1f5;
}

.faq-hub__nav-item:last-child {
	border-bottom: 0;
}

.faq-hub__nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 16px 20px;
	color: var(--blue);
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-hub__nav-link:hover {
	background: #f5f8fc;
	color: var(--red);
	text-decoration: none;
}

.faq-hub__nav-item.is-current .faq-hub__nav-link {
	background: #f0f5fb;
	border-left: 4px solid var(--red);
	padding-left: 16px;
	color: var(--blue);
}

.faq-hub__nav-text {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.faq-hub__nav-label {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.3;
}

.faq-hub__nav-desc {
	font-size: 13px;
	line-height: 1.4;
	color: #5f6b7a;
	font-weight: 500;
}

.faq-hub__nav-item.is-current .faq-hub__nav-desc {
	color: #3d4d61;
}

.faq-hub__nav-icon {
	flex-shrink: 0;
	opacity: 0.55;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-hub__nav-link:hover .faq-hub__nav-icon {
	opacity: 1;
	transform: translateX(3px);
}

.faq-hub__cta {
	padding: 22px 20px 24px;
	background: #fafbfc;
	border-top: 1px solid #e4e8ee;
	text-align: center;
}

.faq-hub__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(206, 61, 62, 0.1);
	margin-bottom: 12px;
}

.faq-hub__cta-title {
	font-size: 20px;
	font-weight: 700;
	color: var(--blue);
	margin: 0 0 8px;
}

.faq-hub__cta-text {
	font-size: 14px;
	line-height: 1.55;
	color: #4a5568;
	margin: 0 0 18px;
}

.faq-hub__cta-btn {
	display: inline-flex;
	min-width: 220px;
	justify-content: center;
}

.faq-hub__cta-phone {
	margin: 14px 0 0;
	font-size: 14px;
	font-weight: 600;
}

.faq-hub__cta-phone a {
	color: var(--red);
	text-decoration: none;
}

.faq-hub__cta-phone a:hover {
	text-decoration: underline;
}

.faq-hub__main {
	min-width: 0;
}

.faq-hub__intro {
	margin-bottom: 28px;
}

.faq-hub__title {
	margin-bottom: 14px;
}

.faq-hub__lead {
	font-size: 18px;
	line-height: 1.65;
	color: #334155;
	font-weight: 500;
}

.faq-hub__lead p:last-child {
	margin-bottom: 0;
}

.faq-hub__list {
	margin-top: 0;
}

.faq-hub__list > li {
	background: #fff;
	border: 1px solid #e4e8ee;
	border-radius: 6px;
	overflow: hidden;
	margin-bottom: 12px;
}

.faq-hub__list > li > .faq-question {
	border-radius: 0;
	text-transform: none;
	font-size: 18px;
	padding: 18px 46px 18px 20px;
}

.faq-hub__list > li .text-box {
	padding: 4px 20px 18px;
	background: #fff;
}

.faq-hub__list > li .text-box p {
	font-size: 17px;
	line-height: 1.65;
	font-weight: 400;
	color: #334155;
}

@media (max-width: 991px) {
	.fqa-sec.faq-hub {
		padding-top: 30px;
	}

	.faq-hub__sidebar-inner {
		box-shadow: 0 4px 16px rgba(9, 43, 82, 0.06);
	}

	.faq-hub__nav-list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0;
	}

	.faq-hub__lead {
		font-size: 16px;
	}
}

@media (max-width: 575px) {
	.faq-hub__sidebar-header {
		padding: 20px 16px;
	}

	.faq-hub__nav-link {
		padding: 14px 16px;
	}

	.faq-hub__nav-item.is-current .faq-hub__nav-link {
		padding-left: 12px;
	}

	.faq-hub__list > li > .faq-question {
		font-size: 16px;
		padding: 16px 40px 16px 16px;
	}
}
