.rv-block {
	margin: 0 0 24px 0;
}

.rv-block__head {
	margin-bottom: 0.75rem;
}

.rv-block__title {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.3;
}

.rv-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.rv-item {
	display: flex;
	align-items: stretch;
	min-height: 4.5rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 0.5rem;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.rv-item:hover {
	border-color: rgba(0, 0, 0, 0.16);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	color: inherit;
}

.rv-item__media {
	width: 4.5rem;
	flex-shrink: 0;
	align-self: stretch;
	height: 72px;
	padding-top: 10px;
	padding-left: 10px;
}

.rv-item__media img {
	display: block;
	width: 50px;
	height: 50px;
	object-fit: cover;
}

.rv-item__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.25rem;
	padding: 0.5rem 0.75rem;
	min-width: 0;
	flex: 1;
}

.rv-item__name {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.35;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.rv-item__price {
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.2;
}

.rv-item__old {
	font-weight: 400;
	color: #888;
	margin-right: 0.35rem;
	font-size: 0.75rem;
}

@media (min-width: 768px) {
	.rv-list {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.625rem;
	}
}

@media (min-width: 992px) {
	.rv-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (min-width: 1280px) {
	.rv-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
