.reno-related-products {
	margin: 48px 0;
}

.reno-related-products__title {
	margin: 0 0 24px;
	color: #111;
	font-size: 26px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
}

.reno-related-products__grid {
	--reno-related-columns: 3;
	display: grid;
	grid-template-columns: repeat(var(--reno-related-columns), minmax(0, 1fr));
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.reno-related-products__item {
	min-width: 0;
}

.reno-related-products__card {
	display: grid;
	grid-template-rows: auto 1fr;
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(144, 40, 44, 0.32);
	border-radius: 4px;
	background: #fff;
	color: #111;
	text-decoration: none;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.reno-related-products__card:hover,
.reno-related-products__card:focus {
	border-color: rgba(144, 40, 44, 0.72);
	box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
	color: #111;
	text-decoration: none;
	transform: translateY(-2px);
}

.reno-related-products__card:focus-visible {
	outline: 2px solid #90282c;
	outline-offset: 3px;
}

.reno-related-products__image {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	padding: 22px;
	background: #fff;
}

.reno-related-products__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.reno-related-products__body {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	padding: 0 18px 22px;
}

.reno-related-products__name {
	color: #111;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.18;
	letter-spacing: 0;
}

.reno-related-products__price {
	margin-top: 16px;
	color: #12366e;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: 0;
}

.reno-related-products__price del {
	color: #777;
	font-weight: 400;
}

.reno-related-products__price ins {
	color: inherit;
	text-decoration: none;
}

@media (max-width: 900px) {
	.reno-related-products__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.reno-related-products {
		margin: 36px 0;
	}

	.reno-related-products__title {
		font-size: 23px;
	}

	.reno-related-products__grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.reno-related-products__name {
		font-size: 18px;
	}
}
