.stats--container {
	padding: 30px;
}

.stats--small-title {
	text-align: center;
	color: var(--theme-green);
}

.stats--large-title {
	text-align: center;
}

.stats--copy,
.stats--stat {
	padding: 10px 20px 20px;
}

.stats--stat-title {
	position: relative;
	margin-bottom: 0;
}

.stats--stat-description {
	display: block;
	margin-bottom: 0;
	margin-top: 10px;
}

.stats--copy {
	margin-bottom: 0;
}

.stats--copy ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.stats--copy ul > li {
	padding-bottom: 10px;
}

.stats--copy ul > li:nth-child(odd) {
	color: var(--theme-green);
}

@media (max-width: 991px) {
	.stats--stat-description br {
		display: none;
	}
	
	.stats--stat.mod-1 { background-color: var(--theme-dk-dk-green); }
	.stats--stat.mod-3 { background-color: var(--theme-dk-green); }
	.stats--stat.mod-4 { background-color: var(--theme-lavender); }
}

@media (min-width: 992px) {
	
	.stats--small-title,
	.stats--large-title {
		text-align: left;
	}
	
	.stats--image {
		position: absolute;
		height: 100%;
		width: calc(100% - 30px);
	}
	
	.stats--stat {
		position:  relative;
		height: 100%;
		min-height: 320px;
		padding: 30px;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	
	.stats--stat-title {
		position: relative;
	}
	
	.stats--copy {
		height: 100%;
		position: relative;
	}
	
	.stats--copy * {
		position: relative;
	}
	
	.stats--copy:before,
	.stats--stat:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}
	
	.stats--stat.mod-1:before {
		background-color: var(--theme-dk-dk-green);
		clip-path: polygon(calc(100% - 365px) 0, 100% 0, 100% 100%, calc(100% - 154px) 100%, calc(100% - 290px) 50px);
	}

	.stats--stat.mod-2:before {
		background-color: var(--theme-lavender);
		clip-path: polygon(70% 0, 100% 0, 100% 100%, 51% 66%);
	}

	.stats--stat.mod-3:before {
		background-color: var(--theme-dk-green);
		clip-path: polygon(calc(100% - 145px) 0, 100% 0, 100% 100%, calc(100% - 25px) 100%);
	}
	
	.stats--stat.mod-4:before {
		background-color: var(--theme-lavender);
		clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 34% 19%, 0% 25%);
	}
	
	.stats--copy:before {
		background-color: var(--theme-chartreuse);
		clip-path: polygon(0 calc(100% - 80px), 0% 100%, 100px 100%);
	}
}