@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

.cs-slider-wrap {
  max-width: 1500px;
  margin: 30px auto;
  padding: 0 18px;
  position: relative;
}

/* VIEWPORT */
.cs-slider-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cs-slider-viewport::-webkit-scrollbar {
  display: none;
}

/* TRACK */
.cs-slider-track {
  display: flex;
  gap: 22px;
  margin-bottom: 30px;
  padding-bottom: 70px;
  align-items: stretch;
}

/* SLIDE */
.cs-slide {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 6px 18px rgba(16,24,40,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 280px;
  max-width: 360px;
  flex: 0 0 auto;
}

/* IMAGE */
.cs-slide img,
.cs-image {
  width: 100%;
  height: auto;
  display: block;
}

.cs-slide .cs-image {
  height: 195px;
  object-fit: cover;
}

.cs-image.cs-image-placeholder {
  background: #f3f4f6;
  height: 150px;
}

/* CONTENT */
.cs-slide .cs-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.cs-slide h3 {
  margin: 0 0 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #111827;
}

.cs-slide .cs-desc {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #6b7280;
  margin-bottom: 16px;
}

/* BUTTON */
.cs-slide .cs-cta {
  padding: 12px 20px;
  border-radius: 6px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

/* ARROWS */
.cs-arrow {
  position: absolute;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #EEEEEE;
  border: 1px solid #E7E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
}

.cs-arrow svg {
  width: 18px;
  height: 18px;
}

.cs-arrow.left {
  right: 660px;
	   background: #EEEEEE !important;
	  border-radius: 50px;
	  border: 1px solid #E7E6E6 !important; 
}

.cs-arrow.right {
  right: 600px;
	   background: #EEEEEE !important;
	  border-radius: 50px;
	  border: 1px solid #E7E6E6 !important; 
}

/* RESPONSIVE SLIDES */
@media (min-width: 1200px) {
  .cs-slide { min-width: 320px; }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .cs-slide { min-width: 45%; }
}

@media (max-width: 767px) {

  .cs-slide {
    min-width: 85%;
    max-width: 85%;
  }

  /* ✅ KEEP ARROWS VISIBLE ON MOBILE */
  .cs-arrow {
    bottom: 10px;
    pointer-events: auto;
  }

  /* center arrows */
  .cs-arrow.left {
    left: calc(50% - 60px);
    right: auto;
	    background: #EEEEEE !important;
	  border-radius: 50px;
	  border: 1px solid #E7E6E6 !important; 

  }

  .cs-arrow.right {
    left: calc(50% + 14px);
    right: auto;
	    background: #EEEEEE !important;
	    border-radius: 50px;
	  border: 1px solid #E7E6E6 !important; 


  }
}
