.customer-spotlight__header {
	margin-bottom: 3rem;
}

.customer-spotlight__dark-theme {
	color: var(--white);
}

.customer-spotlight__sidebar {
	padding: 3.75rem 1.5rem;
	border-radius: 0.75rem;
}

.customer-spotlight__sidebar-header {
	margin-bottom: 2.5rem;
}

.customer-spotlight__sidebar-title {
	margin: 0;
}

.customer-spotlight__stack {
	padding: 0 0.25rem;
}

.customer-spotlight__stack-title {
	text-transform: uppercase;
}

.stack-list__ctas {
	padding: 0.5rem 0.5rem;
	margin-bottom: 1.5rem;
	display: grid;
	gap: 0.75rem;
}

.stack-list__ctas .stack-list__cta {
	font-size: 0.875rem;
	font-weight: 600;
	background-image: linear-gradient(to bottom, #fff 0%, #fff 98%);
	background-size: 0 2px;
	background-repeat: no-repeat;
	background-position: left 100%;
	color: var(--white);
}

.stack-list__ctas .stack-list__cta:hover {
	font-weight: 800;
	text-decoration: none;
	background-size: 100% 2px;
}

.customer-spotlight-list__ctas {
	margin-top: 3rem;
}

.customer-spotlight-list__cta {
	width: 100%;
}

.customer-spotlight__about {
	padding-top: 3.75rem;
	grid-area: about;
}

.customer-spotlight__highlights {
	grid-area: highlights;
}

.customer-spotlight__results {
	grid-area: results;
}

.customer-spotlight__layout {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr;
	grid-template-areas:
		"about"
		"highlights"
		"results"
		"sidebar";
}

.customer-spotlight__result {
	padding: 0.75rem 1rem;
	display: flex;
	align-items: center;
}

.customer-spotlight__results-data {
	flex-wrap: wrap;
}

.customer-spotlight__result:first-child {
	border: none;
}

.customer-spotlight__result-number {
	font-size: 2.75rem;
	line-height: 1;
	font-weight: 700;
	margin-right: 1rem;
	word-break: keep-all;
}

.customer-spotlight__result-summary {
	font-weight: 400;
	font-size: 1rem;
	word-break: keep-all;
	line-height: 1.5;
}

.about-content-block__sub-title,
.customer-spotlight__results-title {
	font-size: 1.125rem;
}

.about-content-block__short-description {
	padding-left: 0.5rem;
}

@media all and (min-width: 768px) {
	.customer-spotlight {
		padding-top: 6.75rem;
	}

	.customer-spotlight__layout {
		grid-template-columns: 19rem 1fr;
		gap: 2rem 3.75rem;
		grid-template-areas:
			"sidebar about"
			"highlights highlights"
			"results results";
	}

	.customer-spotlight__results-data {
		flex-wrap: nowrap;
	}

	.customer-spotlight__result {
		border-left: 1px solid var(--black);
		flex-wrap: wrap;
	}
}

@media all and (min-width: 992px) {
	.customer-spotlight__highlights,
	.customer-spotlight__results-title {
		padding: 0 0.75rem;
	}
}

@media all and (min-width: 1180px) {
	.customer-spotlight__layout {
		grid-template-columns: 20.5rem 1fr;
		grid-template-rows: auto auto auto;
		grid-template-areas:
			"sidebar about"
			"sidebar highlights"
			"sidebar results";
		gap: 3rem 3.75rem;
		align-items: start;
	}

	.customer-spotlight__sidebar {
		grid-area: sidebar;
		grid-row: 1 / -1;
		padding: 2.25rem 4rem 4rem;
	}

	.customer-spotlight__result {
		flex-wrap: nowrap;
		min-height: 6rem;
	}
}
