.aw-faq {
	--aw-deep: #251134;
	--aw-orange: #f19542;
	--aw-orange-strong: #fd7b35;
	--aw-yellow: #ffd90a;
	--aw-white: #fff;
	--aw-line: rgba(255, 255, 255, .62);
	position: relative;
	width: 100%;
	padding: 70px 24px 82px;
	color: var(--aw-white);
	background: transparent;
	font-family: inherit;
}

.aw-faq,
.aw-faq * {
	box-sizing: border-box;
}

.aw-faq__inner {
	width: min(1109px, 100%);
	margin: 0 auto;
}

.aw-faq__hero {
	max-width: 900px;
	margin: 0 0 44px;
}

.aw-faq__eyebrow {
	margin: 0 0 11px;
	color: var(--aw-orange);
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
}

.aw-faq__title {
	max-width: 880px;
	margin: 0;
	color: var(--aw-white);
	font-size: 48px;
	line-height: 60px;
	font-weight: 700;
	letter-spacing: -.01em;
}

.aw-faq__lead {
	max-width: 780px;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, .9);
	font-size: 18px;
	line-height: 28px;
	font-weight: 400;
}

.aw-faq__layout {
	display: block;
}

.aw-faq__nav {
	display: flex;
	margin: 0 0 38px;
}

.aw-faq__nav-title {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.aw-faq__nav-list {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aw-faq__nav-link {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 11px 19px;
	border: 1px solid var(--aw-orange);
	border-radius: 24px;
	color: var(--aw-white);
	text-decoration: none;
	transition: background .18s ease, color .18s ease, transform .18s ease;
}

.aw-faq__nav-link:hover {
	background: var(--aw-orange);
	color: var(--aw-deep);
	transform: translateY(-1px);
}

.aw-faq__nav-link:focus-visible,
.aw-faq-item__source-link:focus-visible,
.aw-faq__cta-link:focus-visible {
	outline: 3px solid var(--aw-yellow);
	outline-offset: 3px;
}

.aw-faq__nav-copy {
	display: block;
}

.aw-faq__nav-copy strong {
	font-size: 17px;
	line-height: 24px;
	font-weight: 500;
}

.aw-faq__groups {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	gap: 56px;
}

.aw-faq-group {
	min-width: 0;
	scroll-margin-top: 110px;
}

.aw-faq-group__header {
	padding: 0 0 25px;
}

.aw-faq-group__label {
	display: block;
	margin: 0 0 9px;
	color: var(--aw-yellow);
	font-size: 16px;
	line-height: 23px;
	font-weight: 500;
}

.aw-faq-group__title {
	margin: 0;
	color: var(--aw-white);
	font-size: 30px;
	line-height: 38px;
	font-weight: 500;
}

.aw-faq-group__summary {
	max-width: 650px;
	margin: 8px 0 0;
	color: rgba(255, 255, 255, .82);
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}

.aw-faq-list {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--aw-line);
}

.aw-faq-item {
	overflow: hidden;
	scroll-margin-top: 24px;
	border: 0;
	border-bottom: 1px solid var(--aw-line);
	border-radius: 0;
	background: transparent;
	transition: background .18s ease, border-color .18s ease;
}

.aw-faq-item[open] {
	border-color: rgba(255, 255, 255, .78);
	background: rgba(255, 255, 255, .055);
}

.aw-faq-item__question {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 44px;
	gap: 16px;
	align-items: center;
	min-height: 78px;
	width: 100%;
	padding: 16px 12px 16px 20px;
	color: var(--aw-white);
	cursor: pointer;
	list-style: none;
}

.aw-faq-item__question::-webkit-details-marker {
	display: none;
}

.aw-faq-item__question::marker {
	content: "";
}

.aw-faq-item__question:focus-visible {
	outline: 3px solid var(--aw-yellow);
	outline-offset: -4px;
}

.aw-faq-item__title {
	margin: 0;
	color: inherit;
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
}

.aw-faq-item__toggle {
	position: relative;
	width: 44px;
	height: 44px;
	transition: transform .18s ease;
}

.aw-faq-item__toggle::before,
.aw-faq-item__toggle::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 15px;
	height: 2px;
	border-radius: 1px;
	background: var(--aw-orange);
	transform: translate(-50%, -50%);
	transition: opacity .18s ease, background .18s ease;
}

.aw-faq-item__toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.aw-faq-item[open] .aw-faq-item__toggle {
	transform: rotate(180deg);
}

.aw-faq-item[open] .aw-faq-item__toggle::after {
	opacity: 0;
}

.aw-faq-item__answer {
	max-width: 920px;
	padding: 0 70px 27px 20px;
	color: rgba(255, 255, 255, .84);
	font-size: 16px;
	line-height: 26px;
	font-weight: 400;
}

.aw-faq-item__answer p {
	margin: 0 0 10px;
}

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

.aw-faq-item__answer strong {
	color: var(--aw-white);
	font-weight: 500;
}

.aw-faq-item__source-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 5px;
	color: var(--aw-orange) !important;
	font-size: 16px;
	line-height: 23px;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.aw-faq-item__source-link::after {
	content: "→";
}

.aw-faq__note {
	max-width: 820px;
	margin: 30px 0 0;
	color: rgba(255, 255, 255, .76);
	font-size: 14px;
	line-height: 22px;
	font-weight: 400;
}

.aw-faq__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 48px;
	padding: 28px 30px;
	border-left: 4px solid var(--aw-orange);
	background: rgba(37, 17, 52, .72);
}

.aw-faq__cta-copy {
	max-width: 680px;
}

.aw-faq__cta-title {
	margin: 0;
	color: var(--aw-white);
	font-size: 24px;
	line-height: 32px;
	font-weight: 500;
}

.aw-faq__cta-text {
	margin: 6px 0 0;
	color: rgba(255, 255, 255, .78);
	font-size: 15px;
	line-height: 23px;
}

.aw-faq__cta-link {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	background: var(--aw-orange-strong);
	color: var(--aw-white);
	font-size: 17px;
	line-height: 24px;
	font-weight: 500;
	text-decoration: none;
	transition: background .18s ease, transform .18s ease;
}

.aw-faq__cta-link:hover {
	background: #e73f29;
	color: var(--aw-white);
	transform: translateY(-1px);
}

@media (max-width: 900px) {
	.aw-faq {
		padding: 58px 20px 68px;
	}

	.aw-faq__title {
		font-size: 42px;
		line-height: 52px;
	}

	.aw-faq__groups {
		gap: 48px;
	}
}

@media (max-width: 640px) {
	.aw-faq {
		padding: 42px 15px 54px;
	}

	.aw-faq__hero {
		margin-bottom: 29px;
	}

	.aw-faq__eyebrow {
		font-size: 13px;
		line-height: 18px;
	}

	.aw-faq__title {
		font-size: 34px;
		line-height: 42px;
	}

	.aw-faq__lead {
		font-size: 17px;
		line-height: 26px;
	}

	.aw-faq__nav {
		margin-bottom: 34px;
	}

	.aw-faq__nav-list {
		width: 100%;
	}

	.aw-faq__nav-list li {
		flex: 1 1 calc(50% - 6px);
	}

	.aw-faq__nav-link {
		justify-content: center;
		width: 100%;
		min-height: 44px;
		padding: 9px 12px;
		text-align: center;
	}

	.aw-faq__nav-copy strong {
		font-size: 16px;
		line-height: 22px;
	}

	.aw-faq__groups {
		gap: 42px;
	}

	.aw-faq-group__header {
		padding-bottom: 20px;
	}

	.aw-faq-group__title {
		font-size: 27px;
		line-height: 35px;
	}

	.aw-faq-group__summary {
		font-size: 15px;
		line-height: 23px;
	}

	.aw-faq-item__question {
		grid-template-columns: minmax(0, 1fr) 42px;
		gap: 9px;
		min-height: 76px;
		padding: 14px 8px 14px 18px;
	}

	.aw-faq-item__title {
		font-size: 18px;
		line-height: 26px;
	}

	.aw-faq-item__answer {
		padding: 0 18px 21px;
		font-size: 16px;
		line-height: 25px;
	}

	.aw-faq__note {
		font-size: 13px;
		line-height: 21px;
	}

	.aw-faq__cta {
		align-items: flex-start;
		flex-direction: column;
		margin-top: 38px;
		padding: 24px 20px;
	}

	.aw-faq__cta-link {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.aw-faq * {
		scroll-behavior: auto !important;
		transition: none !important;
	}
}
