.core-faqs,
.core-faqs.magical-dining {
	--jumplink-title: var(--text-4xl);
	--one-col-max-width: var(--width-comfortable);
	--two-col-max-width: var(--width-base);

	position: relative;
	padding: 0 var(--space-5);
	margin: var(--space-10) auto;
	background-image: url(/includes/client_public/assets/shared/faq-default-mobile-background.svg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center top;
}

.core-faqs.magicaldining {
	background-image: url(/includes/client_public/assets/shared/faq-md-mobile-background.svg);
}

@media screen and (min-width: 40em) {
	.core-faqs {
		background-image: url(/includes/client_public/assets/shared/faq-default-tablet-background.svg);
	}
	.core-faqs.magicaldining {
		background-image: url(/includes/client_public/assets/shared/faq-md-tablet-background.svg);
	}
}

@media screen and (min-width: 64em) {
	.core-faqs {
		background-image: url(/includes/client_public/assets/shared/faq-default-desktop-background.svg);
	}
	.core-faqs.magicaldining {
		background-image: url(/includes/client_public/assets/shared/faq-md-desktop-background.svg);
	}
}

.core-faqs .faq-title,
.core-faqs .faq-jump-links h2 {
	font-size: var(--jumplink-title);
	margin: 15px 0;
}

.core-faqs .faq-title {
	font-size: var(--space-10);
	line-height: 1.2;
	text-align: center;
}

.core-faqs:has(.faq-title + .faqs-container) .faq-title {
	margin-bottom: 30px;
}

@media (min-width: 40em) {
	.core-faqs .faq-title {
		font-size: 50px;
	}
	.core-faqs:has(.faq-title + .faqs-container) .faq-title {
		margin-bottom: var(--space-10);
	}
}

@media (min-width: 64em) {
	.core-faqs .faq-title {
		font-size: 60px;
	}
	.core-faqs:has(.faq-title + .faqs-container) .faq-title {
		margin-bottom: 50px;
	}
}

.core-faqs .description {
	width: 50%;
	margin: 0 auto;
	padding-bottom: var(--space-5);
	font-size: var(--text-base);
	font-weight: var(--font-weight-normal);
	line-height: var(--leading-normal);
	text-align: center;
}

@media screen and (min-width: 40em) {
	.core-faqs .description {
		font-size: var(--text-xl);
		line-height: 30px;
	}
}

.core-faqs .faq-jump-links ol,
.core-faqs .faq-jump-links ul {
	margin: 0 0 35px 25px;
}

.core-faqs .faqs-container {
	display: grid;
	grid-template-columns: 1fr;
	align-items: start;
	max-width: var(--width-base);
	padding: 0 var(--space-5);
	margin: 0 auto;
}

@media screen and (min-width: 40em) {
	.core-faqs .faqs-container {
		padding: var(--space-10);
		max-width: var(--width-base);
		padding: 0 var(--space-20);
	}
}

@media screen and (min-width: 64em) {
	.core-faqs .faqs-container,
	.core-faqs.expandable .faqs-container {
		grid-template-columns: repeat(2, 50%);
	}

	.core-faqs .faqs-container:has(.single-col),
	.core-faqs.expandable .faqs-container:has(.single-col) {
		grid-template-columns: unset;
		max-width: 545px;
		padding: 0;
	}
}

.core-faqs .faqs-container .single-col,
.core-faqs.expandable .faqs-container .single-col {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}

.core-faqs .faqs-container .first-col,
.core-faqs .faqs-container .second-col,
.core-faqs.expandable .faqs-container .first-col,
.core-faqs.expandable .faqs-container .second-col {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}

.core-faqs .faqs-container .first-col {
	margin-bottom: 30px;
}

@media screen and (min-width: 64em) {
	.core-faqs .faqs-container .first-col {
		margin-right: 15px;
		margin-bottom: 0px;
	}
	.core-faqs .faqs-container .second-col {
		margin-left: 15px;
	}
}

.core-faqs .faq-item {
	border: 2px solid var(--black);
	border-radius: 1.25rem;
	background-color: var(--white);
	list-style-type: none;
	transition: 0.2s;
}

@media screen and (min-width: 64em) {
	.core-faqs .faq-item:hover {
		outline: 4px solid var(--blue);
		outline-offset: -3px;
		order: 2px solid transparent;
		transition: outline 0.1s linear;
	}
	.core-faqs.magicaldining .faq-item:hover {
		outline: 4px solid var(--blue-dark);
		outline-offset: -3px;
		order: 2px solid transparent;
		transition: outline 0.1s linear;
	}
}

.core-faqs .faq-item .question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	width: 100%;
	padding: var(--space-5);
	border-radius: 1.25rem;
	font-family: var(--font-body);
	font-weight: bold;
	font-size: 1.25rem;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-align: left;
	background: var(--white);
}

.core-faqs .faq-item .question:focus {
	outline: none;
}

.core-faqs .faq-item .question::after {
	transform: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--space-10);
	aspect-ratio: 1;
	flex-shrink: 0;
	font: var(--fa-font-solid);
	font-size: var(--text-3xl);
	color: var(--blue);
	content: '\f107';
	transition: transform var(--transition-appendix);
}

.core-faqs .faq-item .question * {
	display: inline;
	margin: 0;
	font-size: var(--text-xl);
	line-height: var(--leading-normal);
	word-break: break-word;
	color: var(--black);
}

.core-faqs.expandable .faq-item .question .toggle-answer {
	margin-left: 15px;
	cursor: pointer;
}

.core-faqs .faq-item .answer p {
	margin-bottom: 15px;
	font-size: var(--text-xl);
}

.core-faqs .faq-item[open] .answer {
	height: 100%;
}

.core-faqs.expandable .faq-item.active .question::after {
	transform: rotateX(180deg);
}

.core-faqs.expandable .faq-item .answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.core-faqs .faq-item .inner,
.core-faqs.expandable .faq-item .inner {
	padding: var(--space-5);
}