/* FAQ page — loaded after global theme (see Layout postStyles slot) */
.faq-area.ptb-100 {
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
}
.faq-area .container {
	max-width: 100%;
	overflow-x: clip;
}

.faq-shell {
	max-width: 73.75rem;
	margin: 0 auto;
	padding: 3.5rem 1.5rem 5rem;
	box-sizing: border-box;
}

.faq-shell button,
.faq-shell .faq-question-button,
.faq-shell .faq-sidebar-button {
	appearance: none;
	-webkit-appearance: none;
	border: 0;
	font: inherit;
	text-transform: none;
	letter-spacing: normal;
	box-shadow: none;
}

.faq-shell .visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.faq-shell .faq-search-wrap {
	display: block;
	margin: 0 0 1.75rem;
}

.faq-shell .faq-search {
	box-sizing: border-box;
	width: 100%;
	height: 52px;
	padding: 0 1.1rem;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	font-size: 1rem;
	color: #071f3f;
	background: #fff;
	font-family: inherit;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq-shell .faq-search:focus {
	outline: none;
	border-color: rgba(7, 31, 63, 0.35);
	box-shadow: 0 0 0 3px rgba(7, 31, 63, 0.12);
}

.faq-shell .faq-search-meta {
	margin: 0.65rem 0 1rem;
	font-size: 0.875rem;
	color: rgba(7, 31, 63, 0.65);
	text-align: left;
}

.faq-shell .faq-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 1.25rem;
	align-items: start;
}

@media (min-width: 1024px) {
	.faq-shell .faq-layout {
		grid-template-columns: 280px minmax(0, 1fr);
		gap: 2rem;
	}
}

.faq-shell .faq-sidebar {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 0.5rem;
	padding: 12px;
	margin: 0 0 0.25rem;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	box-sizing: border-box;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	max-width: 100%;
}

@media (min-width: 1024px) {
	.faq-shell .faq-sidebar {
		flex-direction: column;
		flex-wrap: nowrap;
		overflow-x: visible;
		margin: 0;
		position: sticky;
		top: 24px;
		align-self: start;
		gap: 4px;
		border-color: #dfe5ee;
		padding: 10px;
	}
}

.faq-shell .faq-sidebar-button {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-shrink: 0;
	width: 100%;
	min-width: 0;
	min-height: 46px;
	padding: 0 14px;
	border-radius: 12px;
	background: transparent;
	color: #071f3f;
	font-size: 0.9375rem;
	line-height: 1.35;
	font-weight: 600;
	text-align: left;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.faq-shell .faq-sidebar-button:hover {
	background: #f4f7fb;
	color: #071f3f;
}

.faq-shell .faq-sidebar-button.is-active {
	background: #071f3f;
	color: #fff;
	box-shadow: 0 10px 24px rgba(7, 31, 63, 0.16);
}

.faq-shell .faq-sidebar-label {
	font-weight: 600;
}

.faq-shell .faq-sidebar-count {
	margin-left: auto;
	flex-shrink: 0;
	font-size: 12px;
	color: #7a8798;
	font-weight: 600;
	line-height: 1;
}

.faq-shell .faq-sidebar-button.is-active .faq-sidebar-count {
	color: rgba(255, 255, 255, 0.82);
}

.faq-shell .faq-content {
	margin: 0;
	min-width: 0;
	width: 100%;
}

.faq-shell .faq-section-title {
	font-size: 1.35rem;
	margin: 0 0 0.35rem;
	color: #071f3f;
	line-height: 1.3;
	font-weight: 700;
	text-transform: none;
	font-family: inherit;
}

.faq-shell .faq-question-count {
	margin: 0 0 1.25rem;
	font-size: 0.875rem;
	color: rgba(7, 31, 63, 0.6);
	font-weight: 400;
}

.faq-shell .faq-empty {
	padding: 2rem 1rem;
	text-align: center;
	color: rgba(7, 31, 63, 0.7);
	font-size: 0.9375rem;
}

.faq-shell .faq-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 14px;
	width: 100%;
}

.faq-shell .faq-list[hidden] {
	display: none !important;
}

.faq-shell .faq-list > .faq-item {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.faq-shell .faq-item {
	display: block;
	width: 100%;
	background: #ffffff;
	border: 1px solid #dfe5ee;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.faq-shell .faq-item.is-open {
	border-color: #cfd8e6;
	box-shadow: 0 12px 30px rgba(7, 31, 63, 0.06);
}

.faq-shell .faq-item-meta {
	margin: 0;
	padding: 14px 24px 0;
	font-size: 0.6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgba(7, 31, 63, 0.45);
}

.faq-shell .faq-question-button {
	width: 100%;
	min-height: 64px;
	padding: 20px 24px;
	margin: 0;
	display: flex !important;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background: #ffffff !important;
	font-size: 1rem;
	line-height: 1.45;
	text-align: left;
	cursor: pointer;
	color: #071f3f;
}

.faq-shell .faq-question-button:hover {
	background: #f8fafc !important;
}

.faq-shell .faq-question-button:focus-visible {
	outline: 2px solid rgba(7, 31, 63, 0.35);
	outline-offset: -2px;
}

.faq-shell .faq-question-text {
	flex: 1 1 auto;
	min-width: 0;
	font-weight: 700;
	color: #071f3f;
	text-transform: none;
}

.faq-shell .faq-question-icon {
	margin-left: auto;
	flex: 0 0 auto;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: #eef2f7;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
	color: #071f3f;
}

.faq-shell .faq-item.is-open .faq-question-icon {
	background: #071f3f;
	color: #ffffff;
}

.faq-shell .faq-answer {
	padding: 0 24px 22px;
	font-weight: 400;
	color: #25364d;
	line-height: 1.65;
	font-size: 0.9375rem;
}

.faq-shell .faq-item.is-open .faq-answer {
	border-top: 1px solid #eef2f7;
	padding-top: 6px;
}

.faq-shell .faq-answer[hidden] {
	display: none !important;
}

.faq-shell .faq-answer p {
	margin: 0 0 0.75rem;
}

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

.faq-shell .faq-answer a {
	color: #c41e3a;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.faq-shell .faq-answer a:hover {
	color: #071f3f;
}

html[data-faq-ssr-patch='1'] .faq-shell .faq-content {
	visibility: hidden;
}
