.company-snapshot {
	position: relative;
	z-index: 1;
	margin-top: -40px;
	border-radius: 40px 40px 0 0;
	background-color: #FFFFFF;
	padding-top: 100px;
	padding-bottom: 100px;
}

.company-snapshot__heading {
	margin: 0;
	color: #031527;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
}

.company-snapshot__subheading {
	margin: 16px 0 64px;
	color: #42505D;
	font-size: 18px;
	line-height: 1.4;
	text-align: center;
}

.company-snapshot__stats {
	display: grid;
	gap: 24px;
	margin-bottom: 32px;
}

.company-snapshot__stats--items-1 {
	grid-template-columns: 1fr;
}

.company-snapshot__stats--items-2 {
	grid-template-columns: repeat(2, 1fr);
}

.company-snapshot__stats--items-3 {
	grid-template-columns: repeat(3, 1fr);
}

.company-snapshot__stats--items-4 {
	grid-template-columns: repeat(4, 1fr);
}

.company-snapshot__stat {
	display: flex;
	flex-direction: column;
	padding: 32px;
	border: 1px solid #E9E9E9;
	border-radius: 16px;
}

.company-snapshot__stat-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin: 0 0 24px auto;
	border-radius: 16px;
	background-color: #FFD367;
}

.company-snapshot__stat-value {
	color: #031527;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
}

.company-snapshot__stat-label {
	margin-top: 16px;
	color: #42505D;
	font-size: 16px;
	line-height: 1.4;
}

.company-snapshot__chip-cards {
	display: grid;
	gap: 24px;
	margin-bottom: 32px;
}

.company-snapshot__chip-cards--items-1 {
	grid-template-columns: 1fr;
}

.company-snapshot__chip-cards--items-2 {
	grid-template-columns: repeat(2, 1fr);
}

.company-snapshot__chip-cards--items-3 {
	grid-template-columns: repeat(3, 1fr);
}

.company-snapshot__chip-card {
	padding: 32px;
	border: 1px solid #E9E9E9;
	border-radius: 16px;
}

.company-snapshot__chip-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 24px;
}

.company-snapshot__chip-title {
	margin: 0;
	color: #031527;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.company-snapshot__chip-caption {
	flex-shrink: 0;
	color: #42505D;
	font-size: 14px;
	line-height: 1.4;
}

.company-snapshot__chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.company-snapshot__chip {
	display: inline-flex;
	align-items: center;
	height: 48px;
	padding: 0 16px;
	border-radius: 999px;
	background-color: #F7F7F6;
	color: #031527;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	white-space: nowrap;
}

.company-snapshot__chip-view {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 48px;
	padding: 0 16px;
	border: 1px solid #FFD367;
	border-radius: 999px;
	background-color: #FFFAEF;
	font-family: inherit;
	cursor: pointer;
	color: #031527;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease;
}

.company-snapshot__chip-view:hover,
.company-snapshot__chip-view:focus-visible {
	background-color: #FFF0CC;
}

.company-snapshot__summary {
	padding: 32px;
	border-radius: 16px;
	background-color: #F7F7F6;
}

.company-snapshot__summary-heading {
	margin: 0 0 16px;
	color: #031527;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.3;
}

.company-snapshot__summary-text {
	margin: 0;
	color: #42505D;
	font-size: 16px;
	line-height: 1.6;
}

@media (max-width: 1024px) {
	.company-snapshot__stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.company-snapshot__chip-cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.company-snapshot {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.company-snapshot__heading {
		font-size: 28px;
	}

	.company-snapshot__subheading {
		margin-bottom: 40px;
	}

	.company-snapshot__stats {
		grid-template-columns: 1fr;
	}

	.company-snapshot__stat,
	.company-snapshot__chip-card,
	.company-snapshot__summary {
		padding: 20px;
	}

	.company-snapshot__chip-head {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
}
