/* Cottom Image Slider CSS */
.cottom-is-wrapper {
	position: relative;
	width: 100%;
}

.cottom-is-header {
	text-align: center;
	margin-bottom: 30px;
}

.cottom-is-title {
	margin: 0 0 10px 0;
	padding: 0;
}

.cottom-is-subtitle {
	margin: 0;
	padding: 0;
}

.cottom-is-slider-container {
	width: 100%;
	overflow: hidden; /* Hide scrollbar for slider container */
}

/* We'll use a flex container that scrolls horizontally */
.cottom-is-slider-container .swiper-wrapper {
	display: flex;
	flex-wrap: nowrap;
	scroll-snap-type: x mandatory;
	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none; /* Firefox */
	gap: 20px; /* Overridden by JS inline style per-screen size */
}

.cottom-is-slider-container .swiper-wrapper::-webkit-scrollbar { 
	display: none; /* Safari and Chrome */
}

.cottom-is-slide {
	position: relative;
	flex-shrink: 0;
	scroll-snap-align: start;
	/* Width will be set by JS via CSS Variables or directly based on columns */
}

.cottom-is-slide img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.cottom-is-slide-link,
.cottom-is-slide-inner {
	display: block;
	width: 100%;
}

.cottom-is-navigation {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	gap: 15px;
}

.cottom-is-navigation button {
	background: transparent;
	border: 1px solid currentColor;
	color: #333;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
}

.cottom-is-navigation button:hover {
	opacity: 0.7;
}

.cottom-is-navigation button svg {
	display: block;
	width: 20px;
	height: 20px;
}
