.cc-faq {
	padding: 2.5rem 0;
	background: #f5f5f5;
	font-family: 'Manrope', Arial, Helvetica, sans-serif;
}

.cc-faq__heading {
	display: block;
	margin: 0 0 1.75rem;
	font-family: 'Manrope', Arial, Helvetica, sans-serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 106%;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #111;
}

.cc-faq__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cc-faq__item {
	background: #ffffff;
	border-radius: 32px;
	overflow: hidden;
}

.cc-faq__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	width: 100%;
	margin: 0;
	padding: 32px 40px;
	border: 0;
	background: transparent;
	cursor: pointer;
	text-align: left;
	appearance: none;
	-webkit-appearance: none;
}

.cc-faq__item.is-open .cc-faq__trigger {
	padding-bottom: 0;
}

.cc-faq__trigger:focus {
	outline: none;
}

.cc-faq__trigger:focus-visible {
	outline: 2px solid #0c79ef;
	outline-offset: -2px;
}

.cc-faq__question {
	display: block;
	flex: 1 1 auto;
	font-family: 'Manrope', Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: 500;
	line-height: 106%;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #111;
}

.cc-faq__icon {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #b0b0b0;
	line-height: 0;
	transition: transform 0.25s ease, color 0.2s ease;
}

.cc-faq__icon svg {
	display: block;
	width: 24px;
	height: 24px;
}

.cc-faq__item.is-open .cc-faq__icon {
	transform: rotate(180deg);
	color: #888;
}

.cc-faq__answer {
	padding: 20px 40px 32px;
}

.cc-faq__answer[hidden] {
	display: none;
}

.cc-faq__answer-inner {
	max-width: 52rem;
	font-family: 'Manrope', Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 120%;
	letter-spacing: 0;
	color: #6b6b6b;
	white-space: pre-line;
}

@media (max-width: 1198px) {
	.cc-faq__heading {
		font-size: 26px;
		margin-bottom: 1.5rem;
	}

	.cc-faq__item {
		border-radius: 24px;
	}

	.cc-faq__trigger {
		padding: 24px 28px;
		gap: 1.25rem;
	}

	.cc-faq__item.is-open .cc-faq__trigger {
		padding-bottom: 0;
	}

	.cc-faq__question {
		font-size: 20px;
	}

	.cc-faq__answer {
		padding: 16px 28px 24px;
	}

	.cc-faq__answer-inner {
		font-size: 16px;
	}
}

@media (max-width: 767px) {
	.cc-faq {
		padding: 1.75rem 0;
	}

	.cc-faq__heading {
		font-size: 22px;
		margin-bottom: 1.25rem;
	}

	.cc-faq__list {
		gap: 10px;
	}

	.cc-faq__item {
		border-radius: 20px;
	}

	.cc-faq__trigger {
		padding: 20px 20px;
		gap: 1rem;
	}

	.cc-faq__item.is-open .cc-faq__trigger {
		padding-bottom: 0;
	}

	.cc-faq__question {
		font-size: 16px;
	}

	.cc-faq__icon {
		width: 20px;
		height: 20px;
	}

	.cc-faq__icon svg {
		width: 20px;
		height: 20px;
	}

	.cc-faq__answer {
		padding: 12px 20px 20px;
	}

	.cc-faq__answer-inner {
		font-size: 15px;
	}
}
