/* Site FAQs — industrial navy/amber, matches home/about */

.asb-faqs {
	--asb-faq-navy: #1a2744;
	--asb-faq-amber: #c45c26;
	--asb-faq-bg: #f3f5f8;
	--asb-faq-surface: #ffffff;
	--asb-faq-line: #d7dde8;
	--asb-faq-text: #243047;
	--asb-faq-muted: #66758d;
	--asb-faq-answer: #707070;
	--asb-faq-radius: 6px;
	--asb-faq-max: 1180px;
	width: 100%;
	max-width: var(--asb-faq-max);
	margin: 0 auto;
	padding: 40px 20px;
	box-sizing: border-box;
	color: var(--asb-faq-text);
	font-family: "open_sansregular", "Segoe UI", sans-serif;
}

.asb-faqs-head {
	margin-bottom: 22px;
}

.asb-faqs-eyebrow {
	margin: 0 0 8px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--asb-faq-amber);
}

.asb-faqs-head h2 {
	margin: 0 0 10px;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: clamp(22px, 2.2vw, 28px);
	line-height: 1.25;
	color: var(--asb-faq-navy);
}

.asb-faqs-lead {
	margin: 0;
	max-width: 62ch;
	font-size: 15px;
	line-height: 1.65;
	color: var(--asb-faq-muted);
}

.asb-faqs-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.asb-faq-item {
	background: var(--asb-faq-surface);
	border: 1px solid var(--asb-faq-line);
	border-radius: var(--asb-faq-radius);
	overflow: hidden;
}

.asb-faq-q {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 18px;
	cursor: pointer;
	list-style: none;
	font-family: "open_sanssemibold", "Segoe UI", sans-serif;
	font-size: 15px;
	line-height: 1.45;
	color: var(--asb-faq-navy);
	user-select: none;
}

.asb-faq-q::-webkit-details-marker {
	display: none;
}

.asb-faq-q::marker {
	content: "";
}

.asb-faq-q:hover {
	background: #f7f9fc;
}

.asb-faq-q-text {
	flex: 1;
}

.asb-faq-icon {
	position: relative;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	margin-top: 2px;
}

.asb-faq-icon::before,
.asb-faq-icon::after {
	content: "";
	position: absolute;
	background: var(--asb-faq-amber);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.asb-faq-icon::before {
	left: 0;
	top: 8px;
	width: 18px;
	height: 2px;
}

.asb-faq-icon::after {
	left: 8px;
	top: 0;
	width: 2px;
	height: 18px;
}

.asb-faq-item[open] .asb-faq-icon::after {
	opacity: 0;
	transform: scaleY(0);
}

.asb-faq-a {
	padding: 0 18px 18px;
	font-size: 15px;
	line-height: 1.65;
	color: var(--asb-faq-answer);
	border-top: 1px solid transparent;
}

.asb-faq-item[open] .asb-faq-a {
	border-top-color: var(--asb-faq-line);
	padding-top: 14px;
}

.asb-faq-a,
.asb-faq-a p,
.asb-faq-a li {
	color: var(--asb-faq-answer);
}

.asb-faq-a p {
	margin: 0 0 10px;
}

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

.asb-faq-a ul,
.asb-faq-a ol {
	margin: 0 0 10px;
	padding-left: 1.2em;
}

.asb-faq-a strong,
.asb-faq-a b {
	color: #5f6d75;
	font-weight: 600;
}

.asb-faq-a a {
	color: var(--asb-faq-amber);
}

/* Nested contexts: home / about / product / detail already pad */
.home-page .asb-faqs,
.ab-page .asb-faqs,
.pl-page .asb-faqs,
.pd-page .asb-faqs,
.ct-page .asb-faqs,
.gl-page .asb-faqs,
.outerpages .asb-faqs {
	padding-left: 0;
	padding-right: 0;
}

.home-body .asb-faqs,
.ab-page .asb-faqs,
.pl-main .asb-faqs,
.pd-full .asb-faqs,
.ct-body .asb-faqs,
.gl-page .asb-faqs {
	max-width: none;
}

@media (max-width: 640px) {
	.asb-faqs {
		padding: 28px 16px;
	}
	.asb-faq-q {
		padding: 14px 14px;
		font-size: 14px;
	}
	.asb-faq-a {
		padding: 0 14px 14px;
		font-size: 14px;
	}
}
