.lgpm-swiper-container {
	position: relative;
	padding: 10px 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	max-width: calc(var(--wp--style--global--content-size) - 60px);
}

.swiper.mySwiper {
	height: 266px;
	width: calc(100% - 60px);
	overflow: hidden; /* keep slides contained */
}

.swiper-slide {
	border-radius: 8px;
	overflow: hidden;
	text-align: center;
	padding: 4px;
	box-shadow: 0 2px 8px rgba(9, 8, 8, 0.1);
}

.swiper-slide img {
	height: 250px;
	object-fit: cover;
	display: block;
	margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
	.swiper-slide img {
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.swiper-slide img {
		width: 70%;
	}
}

.swiper-slide h4 {
	font-size: 1rem;
	margin: 0;
}

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	color: white;
	font-size: 24px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: start;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
}

.swiper-button-prev {
	left: 10px;
}

.swiper-button-next {
	right: 10px;
}
