.gs-faq-highlight {
	padding: clamp(56px, 7vw, 92px) 16px;
	background: #fbf8f2;
	color: #3c2a17;
}

.gs-faq-highlight__inner {
	max-width: 1180px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: clamp(28px, 5vw, 48px);
}

.gs-faq-highlight__header {
	text-align: start;
}

.gs-faq-highlight__title {
	font-family: "STIX Two Text", sans-serif, serif;
    font-weight: 500;
    font-size: 44px;
    margin: 0 0 30px 0;
    padding: 0;
    line-height: 50px;
    font-weight: 400;
    clear: left;
    display: block;
}

.gs-faq-highlight__subtitle {
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7a5308;
	margin-bottom: 12px;
	font-family: "STIX Two Text", sans-serif;
	font-weight: 500;
	font-size: 16px;
	margin: 0;
	padding: 0;
	line-height: 22px;
	font-weight: normal;
	max-width: 500px;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

@media (max-width: 980px) {
	.gs-faq-highlight__title {
		text-align: center !important;
		display: block;
		width: fit-content;
		max-width: 100%;
		margin: 0 auto;
		margin-bottom: 10px;
	}
	.gs-faq-highlight__subtitle {
		text-align: center !important;
		display: block;
		width: fit-content;
		max-width: 100%;
		margin: 0 auto;
		border-bottom: 1px solid var(--primary-color);
		margin-bottom: 10px;
	}
}

.gs-faq-highlight__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 20px;
	row-gap: 18px;
	align-items: start;
}

.gs-faq-highlight__item {
	background: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	box-shadow: 0 16px 34px rgba(59, 42, 23, 0.08);
	border: 1px solid rgba(59, 42, 23, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gs-faq-highlight__item:hover,
.gs-faq-highlight__item:focus-within {
	transform: translateY(-3px);
	box-shadow: 0 22px 45px rgba(59, 42, 23, 0.12);
}

.gs-faq-highlight__question {
	margin: 0;
}

.gs-faq-highlight__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	border: none;
	background: transparent;
	padding: 18px 22px;
	text-align: left;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	color: inherit;
	transition: color 0.3s ease;
}

.gs-faq-highlight__trigger:hover,
.gs-faq-highlight__trigger:focus {
	color: #5e3e05;
}

.gs-faq-highlight__icon {
	width: 26px;
	height: 26px;
	border-radius: 10px;
	background: linear-gradient(135deg, #d6b258, #b48512);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex: 0 0 auto;
}

.gs-faq-highlight__icon::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff8e3;
	display: block;
}

.gs-faq-highlight__chevron {
	margin-left: auto;
	width: 18px;
	height: 18px;
	position: relative;
}

.gs-faq-highlight__chevron::before,
.gs-faq-highlight__chevron::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 2px;
	background: #b48512;
	border-radius: 999px;
	transition: transform 0.3s ease;
}

.gs-faq-highlight__chevron::before {
	transform: translateY(-50%) rotate(0);
}

.gs-faq-highlight__chevron::after {
	transform: translateY(-50%) rotate(90deg);
}

.gs-faq-highlight__trigger[aria-expanded="true"] .gs-faq-highlight__chevron::before {
	transform: translateY(-50%) rotate(45deg);
}

.gs-faq-highlight__trigger[aria-expanded="true"] .gs-faq-highlight__chevron::after {
	transform: translateY(-50%) rotate(-45deg);
}

.gs-faq-highlight__answer {
	padding: 0 22px 20px 56px;
}

.gs-faq-highlight__answer p {
	margin: 0;
	font-size: 0.97rem;
	line-height: 1.65;
	color: rgba(44, 30, 18, 0.78);
}

@media (max-width: 768px) {
	.gs-faq-highlight {
		padding-inline: 12px;
	}

	.gs-faq-highlight__grid {
		grid-template-columns: 1fr;
	}

	.gs-faq-highlight__trigger {
		padding: 16px 18px;
	}

	.gs-faq-highlight__answer {
		padding: 0 18px 18px 54px;
	}
}
