.cb-faq {
	--cb-faq-primary: #dc833b;
	--cb-faq-secondary: #2472b1;
	margin-block: 1.5rem 2.5rem;
}

.cb-faq .cb-faq__item {
	margin-bottom: 0.7rem;
	overflow: hidden;
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: 0.55rem;
	box-shadow: 0 0.25rem 0.9rem rgba(0, 0, 0, 0.04);
}

.cb-faq .cb-faq__item:last-child {
	margin-bottom: 0;
}

.cb-faq .cb-faq__question {
	gap: 0.75rem;
	background: #fff;
	color: #1f1f1f;
	cursor: pointer;
	font-family: "Arial Black", Arial, sans-serif;
	font-size: clamp(0.95rem, 1.8vw, 1.1rem);
	font-weight: 800;
	letter-spacing: 0.035em;
	line-height: 1.2;
	text-transform: uppercase;
	box-shadow: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.cb-faq .cb-faq__question.collapsed {
	background: #fff;
	color: #1f1f1f;
}

.cb-faq .cb-faq__question:not(.collapsed) {
	background: #fafafa;
	color: var(--cb-faq-primary);
	box-shadow: none;
}

.cb-faq .cb-faq__question:hover {
	background: #fafafa;
	color: var(--cb-faq-primary);
}

.cb-faq .cb-faq__question:focus {
	box-shadow: 0 0 0 0.16rem rgba(0, 0, 0, 0.08);
}

.cb-faq .cb-faq__question::after {
	width: 0.58rem;
	height: 0.58rem;
	background-image: none;
	border: solid currentColor;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	transition: transform 0.2s ease, color 0.2s ease;
}

.cb-faq .cb-faq__question:not(.collapsed)::after {
	transform: rotate(-135deg);
}

.cb-faq .cb-faq__answer {
	background: #fff;
	border-top: 1px solid #eeeeee;
	font-size: 1rem;
	line-height: 1.6;
}

.cb-faq .cb-faq__answer > :last-child {
	margin-bottom: 0;
}

.cb-html {
	--cb-html-heading-bg: #c77a32;
	--cb-html-heading-color: #fff;
	--cb-html-overlay: rgba(0, 0, 0, 0.45);
	position: relative;
	left: 50%;
	width: 100vw;
	margin-block: 0;
	margin-left: -50vw;
	padding-block: clamp(0.5rem, 1.5vw, 1rem);
	background-image: var(--cb-html-bg-image, none);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.cb-html__overlay {
	position: absolute;
	inset: 0;
	background: var(--cb-html-overlay);
	pointer-events: none;
}

.cb-html__container {
	position: relative;
	z-index: 1;
}

.cb-html__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1rem, 2.5vw, 1.5rem);
	align-items: start;
}

.cb-html__column {
	min-width: 0;
}

.cb-html__heading {
	margin: 0 0 0.75rem;
	padding: 0.45rem 0.75rem;
	background: var(--cb-html-heading-bg);
	color: var(--cb-html-heading-color);
	font-family: "Arial Black", Arial, sans-serif;
	font-size: clamp(0.85rem, 1.4vw, 1rem);
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.15;
	text-align: center;
	text-transform: uppercase;
}

.cb-html__content {
	background: #fff;
}

.cb-html--has-background .cb-html__content {
	background: transparent;
	color: #fff;
}

.cb-html--has-background .cb-html__content a {
	color: currentColor;
	text-decoration: underline;
}

.cb-html__content > :last-child {
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.cb-html--columns-2 .cb-html__grid,
	.cb-html--columns-3 .cb-html__grid,
	.cb-html--columns-4 .cb-html__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 992px) {
	.cb-html--columns-3 .cb-html__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.cb-html--columns-4 .cb-html__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}
