.rh-popular {
	position: relative;
	background-color: #121B2E;
	margin-top: 0;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, var(--rh-container-max));
	align-items: center;
	justify-content: center;
}

.rh-popular::before {
	content: "";
	position: absolute;
	left: -250px;
	top: 58%;
	width: 860px;
	height: 860px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(196, 37, 63, 0.4) 0%,
		rgba(138, 24, 47, 0.22) 40%,
		rgba(18, 27, 46, 0) 76%
	);
	filter: blur(1px);
	pointer-events: none;
	z-index: 0;
}

.rh-popular__container {
	width: 100%;
	padding-block: 36px 56px;
	position: relative;
	z-index: 1;
	margin-inline: 0;
}

.rh-popular__content {
	text-align: center;
	position: relative;
}

.rh-popular__subtitle {
	margin: 0 0 32px;
}

.rh-popular__slider-wrap {
	position: relative;
}

.rh-popular__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 420px));
	column-gap: 20px;
	row-gap: 20px;
	justify-content: center;
}

.rh-popular__card {
	max-width: 420px;
	padding: 50px;
	border-radius: 24px;
	background: #ffffff;
	color: #121B2E;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.rh-popular__image {
	width: 100%;
	height: 320px;
	display: block;
	margin: 0;
	border-radius: 12px;
	object-fit: contain;
	object-position: center;
}

.rh-popular__card-title {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	color: #121B2E;
}

.rh-popular__nav {
	padding: 0;
	border: 0;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	cursor: pointer;
}

.rh-popular__specs {
	margin: 0;
	padding-left: 18px;
	text-align: left;
	color: #2d3544;
}

.rh-popular__specs li + li {
	margin-top: 2px;
}

.rh-popular__specs strong {
	font-weight: 700;
	color: #121B2E;
}

.rh-popular .rh_button {
	transition: background-color 0.2s ease;
}

.rh-popular__card .rh_button {
	margin-top: auto;
}

.rh-popular .rh_button:hover,
.rh-popular .rh_button:focus {
	background: #b82f36;
}

.rh-popular__dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.rh-popular__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
}

.rh-popular__dot.is-active {
	background: #ffffff;
}

@media (max-width: 1200px) {
	.rh-popular {
		grid-template-columns: minmax(0, 1fr);
	}

	.rh-popular__nav {
		display: none;
	}

	.rh-popular__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rh-popular__card {
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.rh-popular__container {
		padding-block: 28px 40px;
	}

	.section_tite,
	.section_title {
		font-size: 36px;
	}

	.rh-popular__subtitle {
		margin-bottom: 20px;
	}

	.rh-popular__slider-wrap {
		padding-inline: 0;
	}

	.rh-popular__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.rh-popular__card {
		padding: 28px 20px;
	}

	.rh-popular__card-title {
		font-size: 28px;
	}
}
