/* Equal-height, cover-fitted, centered images for every slide. */

.cars1.renax-ic .item {
	height: 100%;
}

.cars1.renax-ic .item .img {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 280px; /* overridden inline by the widget's Image Height control */
	overflow: hidden;
	border-radius: 8px;
	background: #f4f4f4;
}

.cars1.renax-ic .item .img.rx-disable-border-radius {
	border-radius: 0;
}

.cars1.renax-ic .item .img > a,
.cars1.renax-ic .item .img > img {
	display: block;
	width: 100%;
	height: 100%;
}

.cars1.renax-ic .item .img > a {
	cursor: zoom-in;
}

.cars1.renax-ic .item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.4s ease;
}

.cars1.renax-ic .item .img:hover img {
	transform: scale(1.04);
}

/* Make Owl stage stretch items so they share the tallest height (defensive — height
   is already enforced on .img, but this keeps surrounding wrappers aligned). */
.cars1.renax-ic .owl-stage {
	display: flex;
	align-items: stretch;
}
.cars1.renax-ic .owl-stage .owl-item {
	display: flex;
}
.cars1.renax-ic .owl-stage .owl-item > .item {
	width: 100%;
}

/* Nav arrow fallback styling. */
.cars1 .owl-theme .owl-nav {
	margin-top: 20px;
	text-align: center;
}
.cars1 .owl-theme .owl-nav [class*="owl-"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0 6px;
	border-radius: 50%;
	background: #111;
	color: #fff;
	border: none;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}
.cars1 .owl-theme .owl-nav [class*="owl-"]:hover {
	background: #333;
}
