.carousel-settins-wrapper {
  background: #fff;
  padding: 40px 0 80px 0;
  width: 100%;
}

.custom-carousel-swiper {
  width: 90%;
  margin: 0 auto;
}
.carousel-cards-row {
  display: flex;
  justify-content: center;
}

.carousel-card {
  background: linear-gradient(to bottom, transparent 0 60%, #fff 60% 100%);
  width: 650px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-card-img {
  width: 500px;
  max-width: 100%;
  height: 400px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.carousel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
  color: #222;
}

.carousel-card-desc {
  font-size: 12px;
  color: #000;
  text-align: center;
  min-height: 48px;
}

.carousel-card-btn {
  display: inline-block;
  padding: 8px 28px;
  border: 2px solid #1fcba0;
  color: #1fcba0;
  border-radius: 24px;
  font-weight: 500;
  font-size: 1rem;
  background: #fff;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.carousel-card-btn:hover {
  background: #1fcba0;
  color: #fff;
}

.carousel-settins-nav {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 56px;
  height: 56px;
  background: #0e7bce;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.2rem;
  transition: background 0.2s;
  position: static;
  margin: 0 12px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 2rem;
}

@media (max-width: 700px) {
  .carousel-cards-row {
    flex-direction: column;
    align-items: center;
  }

  .carousel-card {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    margin: 0 16px;
    border-radius: 0;
    padding: 0 16px;
    background: linear-gradient(to bottom, transparent 0 66%, #fff 66% 100%);
    box-shadow: none;
  }

  .carousel-card-img {
    width: 100%;
    min-height: 180px;
    margin-bottom: 0;
    border-radius: 0;
  }

  .carousel-card-img img {
    height: 400px;
    object-fit: cover;
    object-position: left;
  }

  .carousel-card-title {
    font-size: 20px;
    margin-top: 18px;
    margin-bottom: 8px;
    text-align: center;
  }

  .carousel-card-desc {
    font-size: 12px;
    min-height: 32px;
    margin-bottom: 16px;
    text-align: center;
  }

  .carousel-card-btn {
    font-size: 1.07rem;
    padding: 12px 32px;
    margin-bottom: 16px;
  }

  .carousel-settins-nav {
    margin-top: 22px;
    gap: 24px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 48px;
    height: 48px;
    font-size: 1.7rem;
  }
}
