/**
 * VAMOK slider styles.
 *
 * Banners keep their natural aspect ratio (full width, auto height) so no
 * image is cropped. Swiper's autoHeight adjusts the slider height per slide.
 */
.vamok-slider {
	width: 100%;
	overflow: hidden;
}

.vamok-slider .swiper-slide {
	display: block;
	height: auto;
	box-sizing: border-box;
}

.vamok-slider .vamok-slide-link {
	display: block;
	line-height: 0;
}

.vamok-slider .swiper-slide img {
	display: block;
	width: 100%;
	height: auto;
}

/* Side-by-side pair: two columns on desktop, stacked on mobile. */
.vamok-sliders {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: flex-start;
}

.vamok-sliders > .vamok-slider {
	flex: 1 1 0;
	min-width: 0; /* allow the banners to shrink instead of overflowing */
}

@media ( max-width: 767px ) {
	.vamok-sliders {
		flex-direction: column;
	}

	.vamok-sliders > .vamok-slider {
		flex-basis: auto;
		width: 100%;
	}
}
