.services-showcase {
	width: 100svw;
	background-color: var(--color-alabaster-gray-100);
}

.services-showcase__container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 60px 40px;
}

.services-showcase__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	text-align: center;
	color: var(--color-vintage-grape-900);
	padding-bottom: 32px;
}

.services-showcase__title {
	margin: 0;
	font-family: var(--text-h1-family);
	font-weight: var(--text-h1-weight);
	font-size: var(--text-h1-size);
	line-height: var(--text-h1-line-height);
	letter-spacing: var(--text-h1-letter-spacing);
}

.services-showcase__divider {
	width: 80px;
	height: 2px;
	background-color: var(--color-copper-500);
}

.services-showcase__subtitle {
	margin: 0;
	font-family: var(--text-body-family);
	font-weight: var(--text-body-weight);
	font-size: var(--text-body-size);
	line-height: var(--text-body-line-height);
	letter-spacing: var(--text-body-letter-spacing);
}

.services-showcase__groups {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1440px;
}

.services-showcase__group {
	border-bottom: 1px solid var(--color-vintage-grape-900);
	scroll-margin-top: 120px;
}

.services-showcase__group:first-child {
	border-top: 1px solid var(--color-vintage-grape-900);
}

.services-showcase__group-toggle {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 25px 0;
	border: 0;
	border-left: 1px solid var(--color-vintage-grape-900);
	border-right: 1px solid var(--color-vintage-grape-900);
	background: transparent;
	color: var(--color-vintage-grape-900);
	cursor: pointer;
	font: inherit;
}

.services-showcase__group-toggle:hover,
.services-showcase__group-toggle[aria-expanded="true"] {
	background-color: var(--silo-accent-500);
	color: var(--color-alabaster-gray-100);
}

.services-showcase__chevron {
	position: absolute;
	right: 20px;
	display: flex;
	width: 11px;
}

.services-showcase__chevron--up {
	display: none;
}

.services-showcase__group-toggle[aria-expanded="true"] .services-showcase__chevron--down {
	display: none;
}

.services-showcase__group-toggle[aria-expanded="true"] .services-showcase__chevron--up {
	display: flex;
}

.services-showcase__group-name {
	margin: 0;
	font-family: var(--text-offer-heading-family);
	font-weight: var(--text-offer-heading-weight);
	font-size: var(--text-offer-heading-size);
	line-height: var(--text-offer-heading-line-height);
	letter-spacing: var(--text-offer-heading-letter-spacing);
}

.services-showcase__group-content {
	width: 100%;
	border-left: 1px solid var(--color-alabaster-gray-500);
	border-right: 1px solid var(--color-alabaster-gray-500);
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows var(--duration-slow) var(--easing-standard);
}

.services-showcase__group-content-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 22px;
	padding: 0 22px;
	min-height: 0;
	overflow: hidden;
	transition: padding var(--duration-slow) var(--easing-standard);
}

.services-showcase__group-content[aria-hidden="false"] {
	grid-template-rows: 1fr;
}

.services-showcase__group-content[aria-hidden="false"] .services-showcase__group-content-inner {
	padding: 22px;
}

.services-showcase__service {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 310px;
	min-height: 310px;
	padding: 24px;
	border: 1px solid var(--color-alabaster-gray-500);
	border-radius: 16px;
	font-family: var(--font-family-display);
	color: var(--color-vintage-grape-900);
}

.services-showcase__service-title-row {
	display: flex;
	gap: 10px;
}

.services-showcase__bullet {
	width: 11px;
	margin-top: 3px;
	flex-shrink: 0;
}

.services-showcase__bullet rect {
	fill: var(--silo-accent-500);
}

.services-showcase__service-title {
	margin: 0;
	font-family: var(--text-h3-family);
	font-weight: var(--text-h3-weight);
	font-size: var(--text-h3-size);
	line-height: var(--text-h3-line-height);
	letter-spacing: var(--text-h3-letter-spacing);
	width: 100%;
}

.services-showcase__service-description {
	margin: 0;
	font-family: var(--text-body-family);
	font-weight: var(--text-body-weight);
	font-size: var(--text-body-size);
	line-height: var(--text-body-line-height);
	letter-spacing: var(--text-body-letter-spacing);
}

.services-showcase__service-cta {
	margin-left: auto;
	margin-top: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	font-family: var(--text-body-small-family);
	font-weight: var(--text-body-small-weight);
	font-size: var(--text-body-small-size);
	line-height: var(--text-body-small-line-height);
	letter-spacing: var(--text-body-small-letter-spacing);
}

@media (max-width: 1050px) {
	.services-showcase__container {
		padding: 30px 15px;
	}
}

@media (max-width: 820px) {
	.services-showcase__group-toggle {
		justify-content: flex-start;
		padding: 25px 10px;
	}

	.services-showcase__chevron {
		right: 10px;
	}

	.services-showcase__group-content-inner {
		flex-direction: column;
		flex-wrap: nowrap;
		padding: 0;
		gap: 0;
	}

	.services-showcase__group-content[aria-hidden="false"] .services-showcase__group-content-inner {
		padding: 0;
	}

	.services-showcase__service {
		width: auto;
		min-width: 0;
		min-height: 0;
		padding: 16px 24px 24px;
		border: 0;
		border-top: 1px solid var(--color-alabaster-gray-500);
		border-radius: 0;
	}

	.services-showcase__service-description {
		margin-bottom: 24px;
	}

	.services-showcase__group-name {
		max-width: 90%;
	}
}
