.rt-faqs-page {
	--faqs-red: #d81119;
	--faqs-red-dark: #ac0d13;
	--faqs-ink: #0c1117;
	--faqs-muted: #646e79;
	--faqs-paper: #f3f2ef;
	padding: 0;
	background: var(--faqs-paper);
	color: var(--faqs-ink);
	overflow: hidden;
}

.rt-faqs-page * {
	box-sizing: border-box;
}

.rt-faqs-page h1,
.rt-faqs-page h2,
.rt-faqs-page h3,
.rt-faqs-page p {
	margin-top: 0;
}

.rt-faqs-page h1,
.rt-faqs-page h2,
.rt-faqs-page h3 {
	font-family: "Bebas Neue", "Bebas Neue Fallback", "Arial Narrow", sans-serif;
	font-weight: 400;
	letter-spacing: 0;
}

.rt-faqs-kicker {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-bottom: 21px;
	color: var(--faqs-red);
	font: 700 12px/1.2 "Roboto Condensed", sans-serif;
	letter-spacing: 0;
	text-transform: uppercase;
}

.rt-faqs-kicker span {
	width: 34px;
	height: 2px;
	flex: 0 0 auto;
	background: currentColor;
}

.rt-faqs-hero {
	position: relative;
	min-height: 650px;
	background: var(--faqs-ink);
	color: #fff;
	isolation: isolate;
}

.rt-faqs-hero__image,
.rt-faqs-hero__overlay {
	position: absolute;
	inset: 0;
}

.rt-faqs-hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
}

.rt-faqs-hero__overlay {
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(5, 9, 13, .98) 0%, rgba(5, 9, 13, .91) 42%, rgba(5, 9, 13, .46) 72%, rgba(5, 9, 13, .26) 100%),
		linear-gradient(0deg, rgba(5, 9, 13, .82) 0%, transparent 55%);
}

.rt-faqs-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: inherit;
	align-items: center;
	padding-top: 56px;
	padding-bottom: 88px;
}

.rt-faqs-hero__content {
	width: min(790px, 67%);
}

.rt-faqs-hero h1 {
	margin-bottom: 27px;
	color: #fff;
	font-size: 112px;
	line-height: .84;
	letter-spacing: 0;
}

.rt-faqs-hero h1 span,
.rt-faqs-heading h2 span,
.rt-faqs-cta h2 span {
	display: block;
}

.rt-faqs-hero h1 span:last-child {
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(255, 255, 255, .92);
}

.rt-faqs-hero__text {
	max-width: 720px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, .79);
	font: 400 19px/1.65 "Outfit", sans-serif;
}

.rt-faqs-hero__status {
	position: absolute;
	right: 30px;
	bottom: 32px;
	display: flex;
	align-items: center;
	gap: 11px;
	min-height: 44px;
	padding: 0 17px;
	border: 1px solid rgba(255, 255, 255, .2);
	background: rgba(8, 12, 17, .88);
	font: 700 11px/1 "Roboto Condensed", sans-serif;
	letter-spacing: 0;
}

.rt-faqs-hero__status i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #2de181;
	box-shadow: 0 0 0 5px rgba(45, 225, 129, .12);
}

.rt-faqs-explorer {
	padding: 92px 0 112px;
}

.rt-faqs-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(320px, .62fr);
	gap: 80px;
	align-items: end;
	margin-bottom: 52px;
}

.rt-faqs-heading h2,
.rt-faqs-cta h2 {
	margin-bottom: 0;
	color: var(--faqs-ink);
	font-size: 82px;
	line-height: .88;
	letter-spacing: 0;
}

.rt-faqs-heading > p {
	margin-bottom: 4px;
	color: var(--faqs-muted);
	font: 400 16px/1.7 "Outfit", sans-serif;
}

.rt-faqs-tools {
	max-width: none;
	margin-left: 0;
	margin-bottom: 30px;
}

.rt-faqs-search {
	display: grid;
	min-height: 66px;
	grid-template-columns: 28px minmax(0, 1fr) 42px;
	gap: 14px;
	align-items: center;
	padding: 0 10px 0 22px;
	border: 1px solid #d5d7d8;
	border-radius: 5px;
	background: #fff;
	box-shadow: 0 12px 35px rgba(12, 17, 23, .05);
}

.rt-faqs-search > svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: var(--faqs-red);
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.rt-faqs-search input[type="search"] {
	width: 100%;
	min-width: 0;
	height: 64px;
	padding: 0;
	border: 0 !important;
	border-radius: 0;
	outline: 0;
	box-shadow: none !important;
	background: transparent;
	color: var(--faqs-ink);
	font: 500 17px/1 "Outfit", sans-serif;
	appearance: none;
}

.rt-faqs-search input[type="search"]::-webkit-search-cancel-button,
.rt-faqs-search input[type="search"]::-webkit-search-decoration {
	display: none;
	appearance: none;
}

.rt-faqs-search input[type="search"]::-ms-clear {
	display: none;
}

.rt-faqs-search input::placeholder {
	color: #8b929a;
	opacity: 1;
}

.rt-faqs-search:focus-within {
	border-color: var(--faqs-red);
	box-shadow: 0 0 0 3px rgba(216, 17, 25, .1);
}

.rt-faqs-search__clear {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	padding: 0;
	border: 0;
	border-radius: 3px;
	background: #eceeed;
	color: var(--faqs-ink);
	cursor: pointer;
}

.rt-faqs-search__clear:hover,
.rt-faqs-search__clear:focus-visible {
	background: var(--faqs-ink);
	color: #fff;
}

.rt-faqs-search__clear:focus-visible {
	outline: 2px solid var(--faqs-red);
	outline-offset: 2px;
}

.rt-faqs-search__clear svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
}

.rt-faqs-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.rt-faqs-filters button {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	gap: 13px;
	padding: 7px 9px 7px 16px;
	border: 1px solid #cfd2d3;
	border-radius: 4px;
	background: transparent;
	color: #39424b;
	cursor: pointer;
	font: 700 13px/1.15 "Roboto Condensed", sans-serif;
	letter-spacing: 0;
	text-align: left;
	transition: border-color .2s, background-color .2s, color .2s;
}

.rt-faqs-filters button small {
	display: grid;
	min-width: 28px;
	height: 28px;
	place-items: center;
	padding: 0 5px;
	border-radius: 3px;
	background: rgba(12, 17, 23, .08);
	font: 700 11px/1 "Outfit", sans-serif;
}

.rt-faqs-filters button:hover,
.rt-faqs-filters button:focus-visible {
	border-color: var(--faqs-ink);
	color: var(--faqs-ink);
}

.rt-faqs-filters button:focus-visible {
	outline: 2px solid var(--faqs-red);
	outline-offset: 2px;
}

.rt-faqs-filters button.is-active {
	border-color: var(--faqs-ink);
	background: var(--faqs-ink);
	color: #fff;
}

.rt-faqs-filters button.is-active small {
	background: var(--faqs-red);
	color: #fff;
}

.rt-faqs-results {
	margin: 15px 2px 0;
	color: #737c85;
	font: 600 12px/1.4 "Outfit", sans-serif;
}

.rt-faqs-list,
.rt-faqs-empty {
	max-width: none;
	margin-left: 0;
}

.rt-faqs-item {
	margin-bottom: 11px;
	border: 1px solid #d8dadb;
	border-radius: 5px;
	background: rgba(255, 255, 255, .78);
	transition: border-color .2s, background-color .2s, box-shadow .2s;
}

.rt-faqs-item:hover {
	border-color: #b8bdc1;
	background: #fff;
}

.rt-faqs-item[open] {
	border-color: rgba(216, 17, 25, .52);
	background: #fff;
	box-shadow: 0 16px 42px rgba(12, 17, 23, .06);
}

.rt-faqs-item summary {
	display: grid;
	min-height: 88px;
	grid-template-columns: 190px minmax(0, 1fr) 30px;
	gap: 25px;
	align-items: center;
	padding: 20px 24px;
	cursor: pointer;
	list-style: none;
}

.rt-faqs-item summary::-webkit-details-marker {
	display: none;
}

.rt-faqs-item summary:focus-visible {
	outline: 2px solid var(--faqs-red);
	outline-offset: 2px;
}

.rt-faqs-item__topic {
	color: var(--faqs-red);
	font: 700 12px/1.3 "Roboto Condensed", sans-serif;
	letter-spacing: 0;
	text-transform: uppercase;
}

.rt-faqs-item summary strong {
	color: var(--faqs-ink);
	font: 700 20px/1.35 "Outfit", sans-serif;
}

.rt-faqs-item__toggle {
	position: relative;
	width: 28px;
	height: 28px;
	border: 1px solid #c9cdcf;
	border-radius: 3px;
}

.rt-faqs-item__toggle::before,
.rt-faqs-item__toggle::after {
	position: absolute;
	top: 13px;
	left: 7px;
	width: 14px;
	height: 2px;
	background: var(--faqs-red);
	content: "";
	transition: transform .2s;
}

.rt-faqs-item__toggle::after {
	transform: rotate(90deg);
}

.rt-faqs-item[open] .rt-faqs-item__toggle {
	border-color: var(--faqs-red);
	background: var(--faqs-red);
}

.rt-faqs-item[open] .rt-faqs-item__toggle::before,
.rt-faqs-item[open] .rt-faqs-item__toggle::after {
	background: #fff;
}

.rt-faqs-item[open] .rt-faqs-item__toggle::after {
	transform: none;
}

.rt-faqs-item__answer {
	padding: 0 72px 29px 239px;
}

.rt-faqs-item__answer p {
	max-width: 760px;
	margin-bottom: 0;
	color: var(--faqs-muted);
	font: 400 16px/1.75 "Outfit", sans-serif;
}

.rt-faqs-empty {
	padding: 70px 28px;
	border: 1px solid #d8dadb;
	border-radius: 5px;
	background: #fff;
	text-align: center;
}

.rt-faqs-empty svg {
	width: 54px;
	height: 54px;
	margin-bottom: 20px;
	fill: none;
	stroke: var(--faqs-red);
	stroke-width: 1.8;
	stroke-linecap: round;
}

.rt-faqs-empty h3 {
	margin-bottom: 12px;
	font-size: 44px;
	line-height: 1;
}

.rt-faqs-empty p {
	max-width: 650px;
	margin: 0 auto 24px;
	color: var(--faqs-muted);
	font: 400 15px/1.7 "Outfit", sans-serif;
}

.rt-faqs-empty button {
	min-height: 48px;
	padding: 0 21px;
	border: 1px solid var(--faqs-ink);
	border-radius: 3px;
	background: var(--faqs-ink);
	color: #fff;
	cursor: pointer;
	font: 700 13px/1 "Roboto Condensed", sans-serif;
}

.rt-faqs-empty button:hover,
.rt-faqs-empty button:focus-visible {
	border-color: var(--faqs-red);
	background: var(--faqs-red);
}

.rt-faqs-empty button:focus-visible {
	outline: 2px solid var(--faqs-ink);
	outline-offset: 3px;
}

.rt-faqs-page [hidden] {
	display: none !important;
}

.rt-faqs-cta {
	position: relative;
	padding: 104px 0;
	background: var(--faqs-ink);
	color: #fff;
}

.rt-faqs-cta::before {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 4px;
	background: var(--faqs-red);
	content: "";
}

.rt-faqs-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, .85fr) minmax(440px, .65fr);
	gap: 90px;
	align-items: center;
}

.rt-faqs-cta h2 {
	color: #fff;
	font-size: 82px;
}

.rt-faqs-cta__action > p {
	margin-bottom: 28px;
	color: #aab2bb;
	font: 400 16px/1.7 "Outfit", sans-serif;
}

.rt-faqs-cta__action > div {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.rt-faqs-button {
	display: grid;
	min-height: 62px;
	grid-template-columns: 40px minmax(0, 1fr) 14px;
	gap: 12px;
	align-items: center;
	padding: 7px 16px 7px 8px;
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 3px;
	color: #fff !important;
	text-decoration: none;
	transition: border-color .2s, background-color .2s;
}

.rt-faqs-button--primary {
	border-color: var(--faqs-red);
	background: var(--faqs-red);
}

.rt-faqs-button:hover,
.rt-faqs-button:focus-visible {
	border-color: #fff;
	background: rgba(255, 255, 255, .08);
}

.rt-faqs-button--primary:hover,
.rt-faqs-button--primary:focus-visible {
	background: var(--faqs-red-dark);
}

.rt-faqs-button:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.rt-faqs-button svg {
	width: 40px;
	height: 40px;
	padding: 10px;
	background: rgba(255, 255, 255, .13);
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.rt-faqs-button strong {
	min-width: 0;
	font: 700 13px/1.2 "Roboto Condensed", sans-serif;
	letter-spacing: 0;
	text-align: left;
}

.rt-faqs-button i {
	width: 8px;
	height: 8px;
	justify-self: end;
	border-top: 2px solid;
	border-right: 2px solid;
	transform: rotate(45deg);
}

@media (max-width: 1200px) {
	.rt-faqs-hero h1 {
		font-size: 92px;
	}

	.rt-faqs-heading h2,
	.rt-faqs-cta h2 {
		font-size: 72px;
	}

	.rt-faqs-cta__inner {
		gap: 55px;
	}
}

@media (max-width: 900px) {
	.rt-faqs-hero__content {
		width: 88%;
	}

	.rt-faqs-heading,
	.rt-faqs-cta__inner {
		grid-template-columns: 1fr;
	}

	.rt-faqs-heading {
		gap: 20px;
	}

	.rt-faqs-tools,
	.rt-faqs-list,
	.rt-faqs-empty {
		max-width: none;
		margin-left: 0;
	}

	.rt-faqs-cta__inner {
		gap: 38px;
	}

	.rt-faqs-cta__action {
		max-width: 720px;
	}
}

@media (max-width: 720px) {
	.rt-faqs-hero {
		min-height: 570px;
	}

	.rt-faqs-hero__inner {
		align-items: flex-start;
		padding-top: 78px;
		padding-bottom: 90px;
	}

	.rt-faqs-hero__content {
		width: 100%;
	}

	.rt-faqs-hero h1 {
		font-size: 70px;
	}

	.rt-faqs-hero__text {
		font-size: 16px;
	}

	.rt-faqs-hero__status {
		right: auto;
		bottom: 24px;
		left: 20px;
		max-width: calc(100% - 40px);
	}

	.rt-faqs-explorer {
		padding: 82px 0 88px;
	}

	.rt-faqs-heading {
		margin-bottom: 38px;
	}

	.rt-faqs-heading h2,
	.rt-faqs-cta h2 {
		font-size: 58px;
	}

	.rt-faqs-filters {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rt-faqs-filters button {
		justify-content: space-between;
	}

	.rt-faqs-item summary {
		min-height: 0;
		grid-template-columns: minmax(0, 1fr) 30px;
		gap: 10px 18px;
		padding: 21px;
	}

	.rt-faqs-item__topic {
		grid-column: 1;
	}

	.rt-faqs-item summary strong {
		grid-column: 1;
		font-size: 18px;
	}

	.rt-faqs-item__toggle {
		grid-row: 1 / span 2;
		grid-column: 2;
	}

	.rt-faqs-item__answer {
		padding: 0 21px 24px;
	}

	.rt-faqs-cta {
		padding: 78px 0;
	}

	.rt-faqs-cta__action > div {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 480px) {
	.rt-faqs-hero {
		min-height: 550px;
	}

	.rt-faqs-hero h1 {
		font-size: 56px;
	}

	.rt-faqs-heading h2,
	.rt-faqs-cta h2 {
		font-size: 50px;
	}

	.rt-faqs-search {
		min-height: 60px;
		grid-template-columns: 24px minmax(0, 1fr) 38px;
		gap: 10px;
		padding-left: 15px;
	}

	.rt-faqs-search input[type="search"] {
		height: 58px;
		font-size: 15px;
	}

	.rt-faqs-filters {
		grid-template-columns: 1fr;
	}

	.rt-faqs-empty {
		padding: 55px 20px;
	}

	.rt-faqs-empty h3 {
		font-size: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.rt-faqs-page *,
	.rt-faqs-page *::before,
	.rt-faqs-page *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
