.kkk-faq-questions,
.kkk-faq-panel {
	font-family: Jost, ui-sans-serif, system-ui, sans-serif;
}

/* ----- Questions list (shared) ----- */
.kkk-faq-questions__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.kkk-faq-questions__item {
	margin: 0;
	padding: 0;
}

.kkk-faq-questions__trigger {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 0;
	margin: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.3;
	color: #454545;
}

.kkk-faq-questions__trigger:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.kkk-faq-questions__chevron {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #454545;
	transition: transform 0.35s ease;
}

.kkk-faq-questions__chevron svg {
	display: block;
	width: 24px;
	height: 24px;
}

/* Desktop: chevron points right; active rotates 180° (points left) */
@media (min-width: 768px) {
	.kkk-faq-questions__item.is-active .kkk-faq-questions__chevron {
		transform: rotate(180deg);
	}

	.kkk-faq-questions__answer--mobile {
		display: none !important;
	}
}

/* Mobile: chevron down; open points up (180° from down) */
@media (max-width: 767px) {
	.kkk-faq-questions__chevron {
		transform: rotate(90deg);
	}

	.kkk-faq-questions__item.is-open .kkk-faq-questions__chevron {
		transform: rotate(270deg);
	}

	.kkk-faq-panel {
		display: none !important;
	}

	.kkk-faq-questions__answer--mobile {
		margin: 0;
		padding: 0;
		display: block;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s cubic-bezier(0.33, 1, 0.68, 1);
	}

	.kkk-faq-questions__answer-inner {
		padding-bottom: 1rem;
		font-weight: 300;
		font-size: 20px;
		line-height: 1.5;
		color: #454545;
		transform: translate3d(0, -10px, 0);
		transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
	}

	.kkk-faq-questions__item.is-open .kkk-faq-questions__answer-inner {
		transform: translate3d(0, 0, 0);
	}

	.kkk-faq-questions__answer-inner p {
		margin: 0 0 0.75em;
		font-weight: 400;
		font-size: 20px;
		color: #454545;
	}
}

/* ----- Desktop answer panel ----- */
@media (min-width: 768px) {
	.kkk-faq-panel {
		overflow: hidden;
	}

	.kkk-faq-panel__inner {
		transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
		will-change: transform;
	}

	.kkk-faq-panel__inner--no-trans {
		transition: none !important;
	}

	.kkk-faq-panel__inner--exit-left {
		transform: translateX(-100%);
	}

	.kkk-faq-panel__inner--exit-right {
		transform: translateX(100%);
	}

	.kkk-faq-panel__inner--off-right {
		transform: translateX(100%);
	}

	.kkk-faq-panel__inner--off-left {
		transform: translateX(-100%);
	}

	.kkk-faq-panel__title {
		margin: 0 0 30px;
		font-weight: 700;
		font-size: 32px;
		line-height: 1.25;
		text-align: left;
		color: #fff;
	}

	.kkk-faq-panel__body {
		font-weight: 300;
		font-size: 20px;
		line-height: 1.5;
		color: #fff;
	}

	.kkk-faq-panel__body p {
		margin: 0 0 0.75em;
		font-weight: 400;
		font-size: 20px;
		color: #fff;
	}
}

@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
	.kkk-faq-panel__inner {
		transition: none;
	}
}
