.mod_old_swiper {
	display: block !important;
}
.mod_swiper {
	display: flex;
	flex-direction: column;
	max-height: fit-content;
	overflow: hidden;
}
.swiper-container {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	height: auto;
	--swiper-navigation-color: rgb(198, 123, 53);
	--swiper-navigation-size: 30px;
	--swiper-pagination-color: rgb(198, 123, 53);
	--swiper-slide-shadow-color: rgba(0, 0, 0, 0.5);
}
.swiper-title {
	text-align: left;
	font-size: 24px;
	color: rgb(198, 123, 53);
	font-weight: bold;
}
.swiper-pagination {
	position: relative;
	bottom: 10px;
	margin-top: auto;
	color: rgb(198, 123, 53);
}
.swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease-in-out; /* Ensures smooth sliding */
}
.swiper-slide {
  	display: flex;
  	flex-direction: column;
  	flex-shrink: 0;
  	width: 100%; /* Ensures each slide takes full width */
	text-align: left !important;
}
.swiper-slide p.swiper-cus-title {
	font-weight: bold;
	margin-bottom: 10px;
	color: rgb(52, 53, 50);
	display: inline-block !important;
	text-align: left !important;
	margin-left: 0 !important;
	flex: none !important;
}
.swiper-slide p {
	max-width: 90%;
	margin: 0 auto;
	text-align: left !important;
	align-self: flex-start;
}
@media (max-width: 768px) {
  	.swiper-button-prev, .swiper-button-next {
	  	display: none !important;
	}
	.swiper-slide p {
	  	max-width: 100% !important;
  	}
}
