.related-box {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 24px;
}

.related-card-img {
	height: auto;
	border-radius: 8px;
	margin-bottom: 10px;
	transition: opacity ease .1s;
}

.related-card:hover .related-card-img {
	opacity: .9;
}

.related-card-title {
	display: block;
	font-size: 18px;
	color: var(--mirage-950);
	font-weight: 700;
	margin-bottom: 4px;
	transition: color ease .1s;
}

.related-card:hover .related-card-title {
	color: var(--thunderbird-500);
}

.related-card-data {
	font-size: 12px;
	color: var(--grey);
}

@media (max-width: 576px) {
	.related-box {
		grid-template-columns: 1fr;
	}
}