/* Рекламный блок товара в обзорах */
.rpa-block {
	margin: 1.5em 0;
	border: 1px solid #555;
	border-radius: 8px;
	overflow: hidden;
	background: #676767;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.rpa-block__link {
	text-decoration: none;
	color: #fff;
	transition: color 0.2s ease;
}

.rpa-block__link:hover {
	color: #cce5ff;
	text-decoration: underline;
}

.rpa-block__inner {
	display: flex;
	align-items: stretch;
	gap: 1rem;
	padding: 1rem;
}

.rpa-block__img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
}

.rpa-block__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.35em;
	flex: 1;
	min-width: 0;
}

.rpa-block__title {
	font-weight: 600;
	font-size: 2em;
	line-height: 1.3;
}

.rpa-block__title .rpa-block__stars {
	margin-left: 0.35em;
	vertical-align: middle;
}

.rpa-block__stars {
	color: #ffc107;
	font-size: 1.1em;
	letter-spacing: 0.05em;
}

.rpa-block__price {
	font-size: 1.9em;
	opacity: 0.95;
}

.rpa-block__price .woocommerce-Price-amount,
.rpa-block__price bdi {
	color: inherit;
	font-weight: 600;
}

.rpa-block__price del {
	opacity: 0.85;
}

@media (max-width: 480px) {
	.rpa-block__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.rpa-block__img {
		width: 100%;
		max-width: 200px;
		height: auto;
		aspect-ratio: 1;
	}
}
