.sg-education__lists {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	grid-row-gap: 12px;
	grid-column-gap: 24px;
}

.sg-education__list {
	position: relative;
	padding: 16px;
	background-color: var(--mirage-950);
	color: var(--mirage-50);
	text-align: center;
}

.sg-education__list-achievement {
	position: absolute;
	top: 15px;
	left: 13px;
	width: 87px;
	height: 87px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 14px;
	color: var(--white);
	line-height: 20px;
}

.sg-education__list-achievement.complete {
	font-size: 12px;
	line-height: 14px;
}

.sg-education__list-achievement .icon--education-achievement {
	position: absolute;
	top: 0;
	left: 0;
	width: 87px;
	height: 87px;
	color: var(--pastel-green-600);
}

.sg-education__list-achievement.complete .icon--education-achievement {
	color: var(--mirage-600);
}

.sg-education__list-achievement--icon {
	position: relative;
	font-size: 24px;
}

.sg-education__list-achievement--count {
	position: relative;
	font-size: 32px;
	font-weight: 600;
	line-height: 26px;
}

.sg-education__list-achievement-text {
	position: relative;
	margin-top: 2px;
}

.sg-education__list-thumb {
	width: 100%;
	height: 170px;
	object-fit: contain;
	margin-bottom: 8px;
}

.sg-education__list-rtg {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 4px;
}

.sg-education__list-rtg--stars .stars {
	font-size: 16px;
}

.sg-education__list-rtg--stars .stars::before {
	order: 1;
}

.sg-education__list-rtg--label {
	opacity: .6;
}

.sg-education__list-title {
	font-size: 24px;
	font-weight: 600;
	line-height: 32px;
	margin-bottom: 4px;
}

.sg-education__list-label {
	max-width: max-content;
	margin: 4px auto 8px;
	padding: 2px 12px;
	font-size: 12px;
	font-weight: 600;
	color: var(--pastel-green-400);
	background-color: var(--pastel-green-900);
	text-transform: uppercase;
	line-height: 20px;
	border-radius: 10px;
}

.sg-education__list-label.red {
	color: var(--thunderbird-50);
	background-color: var(--thunderbird-600);
}

.sg-education__list-students {
	opacity: .6;
	margin-bottom: 8px;
}

.sg-education__list-btn {
	height: 64px;
	font-size: 18px;
}

.sg-education__list-btn.button--outline-green {
	color: var(--pastel-green-400);
}

.sg-education__list-btn.button--outline-green:hover {
	color: var(--mirage-950);
}

.sg-education__list-btn.button--mirage900:hover {
	color: var(--mirage-950);
	background: var(--pastel-green-500);
}

@media (min-width: 576px) {
	.sg-education__list {
		display: flex;
		flex-direction: column;
	}

	.sg-education__list-btn {
		margin-top: auto;
	}
}