.dst-event-faq {
	--dst-faq-bg: transparent;
	--dst-faq-divider: rgba(248, 244, 240, 0.86);
	--dst-faq-divider-width: 1px;
	--dst-faq-icon-size: 30px;
	width: 100%;
	background: var(--dst-faq-bg);
	color: #f8f4f0;
}

.dst-event-faq,
.dst-event-faq * {
	box-sizing: border-box;
	letter-spacing: 0;
}

.dst-event-faq__inner {
	width: 100%;
	margin: 0 auto;
}

.dst-event-faq__title {
	margin: 0;
	color: inherit;
	font-size: clamp(56px, 8vw, 120px);
	font-weight: 800;
	line-height: 0.95;
	text-transform: uppercase;
}

.dst-event-faq__items {
	display: grid;
	width: 100%;
}

.dst-event-faq__item {
	border-bottom: var(--dst-faq-divider-width) solid var(--dst-faq-divider);
}

.dst-event-faq__button {
	display: grid;
	grid-template-columns: minmax(0, 1fr) var(--dst-faq-icon-size);
	align-items: center;
	gap: 28px;
	width: 100%;
	margin: 0;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font: inherit;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(28px, 4vw, 50px);
	font-weight: 400;
	line-height: 1.18;
	text-align: left;
}

.dst-event-faq__button:hover,
.dst-event-faq__button:focus {
	background: transparent;
	color: inherit;
}

.dst-event-faq__button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 6px;
}

.dst-event-faq__question {
	min-width: 0;
}

.dst-event-faq__icon {
	position: relative;
	display: block;
	width: var(--dst-faq-icon-size);
	height: var(--dst-faq-icon-size);
	justify-self: end;
	color: inherit;
}

.dst-event-faq__icon::before,
.dst-event-faq__icon::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 76%;
	height: 1.5px;
	background: currentColor;
	content: "";
	transform: translate(-50%, -50%);
	transition: transform 180ms ease, opacity 180ms ease;
}

.dst-event-faq__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.dst-event-faq__item.is-open .dst-event-faq__icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0.35);
}

.dst-event-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	overflow: hidden;
	color: rgba(248, 244, 240, 0.82);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(17px, 2vw, 23px);
	line-height: 1.45;
	transition: grid-template-rows 240ms ease;
}

.dst-event-faq__item.is-open .dst-event-faq__answer {
	grid-template-rows: 1fr;
}

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

.dst-event-faq__answer-inner {
	min-height: 0;
	overflow: hidden;
	padding-bottom: 30px;
}

.dst-event-faq__answer-inner > * {
	margin-top: 0;
}

.dst-event-faq__answer-inner > *:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.dst-event-faq__title {
		font-size: clamp(44px, 15vw, 76px);
	}

	.dst-event-faq__button {
		grid-template-columns: minmax(0, 1fr) 26px;
		gap: 16px;
		font-size: clamp(24px, 8vw, 36px);
	}

	.dst-event-faq__icon {
		--dst-faq-icon-size: 26px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.dst-event-faq__answer,
	.dst-event-faq__icon::before,
	.dst-event-faq__icon::after {
		transition: none;
	}
}
