/*
 * "Partneri (slider)" widget - see class-widget-slider.php. The swiper
 * container/arrows/pagination themselves are styled by lte-ext's own
 * frontend CSS (same slider used by every other lte-* widget); only the
 * slide box needs its own rules here, to guarantee every logo renders at
 * the exact same size regardless of its original dimensions.
 */

.ptr-slider-wrap {
	width: 100%;
}

.ptr-slide-item {
	height: var( --ptr-slide-height, 230px );
}

.ptr-slide-photo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.ptr-slide-photo img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: opacity 0.2s ease;
}

.ptr-slide-photo:hover img {
	opacity: 0.7;
}
