/*
 * FAQ widget styles (sc_ticket_faq).
 *
 * Ported from the inline <style> block in mockups/ticket_page_draft1.html
 * (.faq-list / .faq-item / .faq-q / .faq-a — lines 712-753; FAQ markup lines
 * 1307-1341). Uses <details>/<summary> for progressive-enhancement
 * accessibility (works without JS). Scoped under .sc-faq-widget so the
 * shared .section / h2 utilities in other widgets are not disturbed.
 */

.sc-faq-widget {
	display: block;
	background: var(--bg-alt);
}

.sc-faq-widget .section {
	max-width: 860px;
	margin: 0 auto;
	padding: 60px 24px;
}

.sc-faq-widget .section-label {
	font-family: 'Barlow Condensed', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 12px;
}

.sc-faq-widget h2 {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: clamp(26px, 4vw, 38px);
	margin: 0 0 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ffffff;
}

.sc-faq-widget .faq-list {
	margin-top: 28px;
}

.sc-faq-widget .faq-item {
	border-bottom: 1px solid var(--border);
	padding: 0;
}

.sc-faq-widget .faq-q {
	font-weight: 700;
	color: var(--text);
	font-size: 15px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
	list-style: none;
	cursor: pointer;
	padding: 18px 0;
}

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

.sc-faq-widget .faq-q::after {
	content: '+';
	color: var(--accent);
	font-size: 20px;
	line-height: 1;
	font-weight: 400;
	margin-left: auto;
}

.sc-faq-widget .faq-item[open] .faq-q::after {
	content: '-';
}

.sc-faq-widget .faq-a {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.6;
	padding: 0 0 18px;
}

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

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

.sc-faq-widget .faq-a a {
	color: var(--accent);
	text-decoration: none;
}

.sc-faq-widget .faq-a a:hover,
.sc-faq-widget .faq-a a:focus {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.sc-faq-widget .section {
		padding: 40px 16px;
	}
}
