.bh-rc-carousel {
	width: 100%;
	max-width: 100%;
}
.bh-rc-track {
	width: 100%;
}
.bh-rc-slide {
	display: none;
}
.bh-rc-slide.is-active {
	display: block;
}
.bh-rc-pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.bh-rc-img-wrap {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
	border-radius: 8px;
}
.bh-rc-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.bh-rc-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 16px;
}
.bh-rc-nav {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background-color: #ffffff;
	box-shadow: 0 2px 10px rgba(0,0,0,.18);
	font-size: 20px;
	line-height: 1;
	color: #2D3748;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.bh-rc-nav:hover,
.bh-rc-nav:focus-visible {
	background-color: #ff0000;
	color: #ffffff;
	transform: scale(1.06);
}
.bh-rc-dots {
	display: flex;
	align-items: center;
	gap: 8px;
}
.bh-rc-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: none;
	background: #d9d9d9;
	padding: 0;
	cursor: pointer;
}
.bh-rc-dot.is-active {
	background: #444444;
}
@media (max-width: 599px) {
	.bh-rc-pair {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.bh-rc-nav {
		width: 48px;
		height: 48px;
		font-size: 24px;
	}
}