/* FAQ Page Styles */

/* ── Hero ──────────────────────────────────────────────────── */
.faq-hero {
	background: linear-gradient(135deg, var(--orange) 0%, #c94e00 100%);
	color: white;
	padding: 4rem 1rem 3rem;
	text-align: center;
}
.faq-hero h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0 0 0.75rem;
}
.faq-hero p {
	font-size: 1.1rem;
	font-weight: 300;
	max-width: 640px;
	margin: 0 auto;
	opacity: 0.92;
}

/* ── Layout ────────────────────────────────────────────────── */
.faq-body {
	max-width: 820px;
	margin: 3rem auto 4rem;
	padding: 0 1.5rem;
}

/* ── Category sections ─────────────────────────────────────── */
.faq-category {
	margin-bottom: 3rem;
}
.faq-category-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--orange);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border-bottom: 2px solid var(--orange);
	padding-bottom: 0.4rem;
	margin: 0 0 1rem;
}

/* ── Accordion items ───────────────────────────────────────── */
.faq-item {
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	margin-bottom: 0.55rem;
	overflow: hidden;
	transition: box-shadow 0.2s;
}
.faq-item:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.faq-item[open] {
	box-shadow: 0 2px 10px rgba(240, 99, 0, 0.15);
}
.faq-item summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.95rem 1.25rem;
	cursor: pointer;
	font-weight: 500;
	font-size: 1rem;
	list-style: none;
	user-select: none;
	gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: '+';
	font-size: 1.4rem;
	font-weight: 300;
	color: var(--orange);
	flex-shrink: 0;
	transition: transform 0.2s;
}
.faq-item[open] summary::after {
	transform: rotate(45deg);
}
.faq-answer {
	padding: 0 1.25rem 1.1rem;
	color: rgba(0, 0, 0, 0.78);
	line-height: 1.75;
	border-top: 1px solid rgba(0, 0, 0, 0.07);
}
.faq-answer p { margin: 0.75rem 0 0; }
.faq-answer p:first-child { margin-top: 0.9rem; }
.faq-answer a {
	color: var(--orange);
	text-decoration: none;
}
.faq-answer a:hover { text-decoration: underline; }

/* ── Inline citations ──────────────────────────────────────── */
.faq-cite {
	display: inline;
	font-size: 0.82rem;
	color: rgba(0, 0, 0, 0.5);
	font-style: italic;
}

/* ── Leadership quotes ─────────────────────────────────────── */
.faq-quote {
	margin: 1rem 0 0.5rem;
	padding: 0.9rem 1.2rem;
	border-left: 3px solid var(--orange);
	background: rgba(240, 99, 0, 0.05);
	border-radius: 0 4px 4px 0;
	font-style: italic;
	color: rgba(0, 0, 0, 0.7);
	line-height: 1.7;
}
.faq-quote p { margin: 0; }
.faq-quote .quote-attr {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.82rem;
	font-style: normal;
	color: rgba(0, 0, 0, 0.45);
}

/* ── Glossary ──────────────────────────────────────────────── */
.faq-glossary {
	margin: 0;
	padding: 0;
}
.faq-glossary dt {
	font-weight: 700;
	color: rgba(0, 0, 0, 0.85);
	margin-top: 1rem;
}
.faq-glossary dt:first-child { margin-top: 0; }
.faq-glossary dd {
	margin: 0.2rem 0 0 0;
	color: rgba(0, 0, 0, 0.72);
	line-height: 1.7;
	padding-left: 1rem;
	border-left: 2px solid rgba(240, 99, 0, 0.3);
}
.faq-glossary dd a {
	color: var(--orange);
	text-decoration: none;
}
.faq-glossary dd a:hover { text-decoration: underline; }

/* ── Sources footer ────────────────────────────────────────── */
.faq-sources {
	margin-top: 3rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	font-size: 0.82rem;
	color: rgba(0, 0, 0, 0.5);
	line-height: 1.8;
}
.faq-sources p { margin: 0 0 0.4rem; }
.faq-sources a {
	color: rgba(0, 0, 0, 0.5);
	text-decoration: underline;
}
.faq-sources a:hover { color: var(--orange); }

/* ── CTA ───────────────────────────────────────────────────── */
.faq-cta {
	background-color: #f9f9f9;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	text-align: center;
	padding: 3rem 1.5rem;
}
.faq-cta h2 {
	font-size: 1.5rem;
	margin: 0 0 0.75rem;
}
.faq-cta p {
	color: rgba(0, 0, 0, 0.7);
	margin: 0 0 1.5rem;
}
.faq-cta .btn {
	display: inline-block;
	background-color: var(--orange);
	color: white;
	padding: 0.75rem 2rem;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 500;
	transition: background-color 0.2s;
}
.faq-cta .btn:hover { background-color: #c94e00; }

/* ── Mobile ────────────────────────────────────────────────── */
@media screen and (max-width: 649px) {
	.faq-hero h1 { font-size: 1.8rem; }
	.faq-body { margin-top: 2rem; }
}
