.company-level-section {
	display: flex;
	flex-flow: row wrap;
	align-items: center;
	gap: 20px 16px;
	padding: 20px;
	border-radius: 28px;
	background-color: $color-green;

	@include desktop {
		gap: 32px;
		padding: 40px;
		border-radius: 32px;
	}
}

.company-level-section__item {
	flex: 1;
	display: flex;
	flex-flow: column;
	gap: 10px;
	color: $color-white;

	span {
		font-size: 24px;
		font-weight: 700;
		letter-spacing: -0.03em;
	}

	p {
		font-size: 14px;
		line-height: 16px;
	}

	@include desktop {
		flex-flow: row nowrap;
		align-items: center;
		gap: 12px;

		span {
			font-size: 38px;
			white-space: nowrap;
		}

		p {
			font-size: 16px;
			line-height: 18px;
		}
	}
}

.company-level-section__link-btn {
	flex: 0 0 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px 16px;
	height: 48px;
	border-radius: 14px;
	background-color: $color-white;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	color: $color-green;
	box-sizing: border-box;

	@include desktop {
		flex: 1;
		height: 54px;
		max-width: 171px;
		border-radius: 16px;
		padding: 0 20px;
		font-size: 16px;
		line-height: 18px;
	}
}
