
.mySwiper {
  max-width: 1650px;       /* обмежуємо ширину всієї каруселі */
  margin: 0 auto;
  padding: 40px 30px 70px; /* паддінг збільшено */
  box-sizing: border-box;
}

.swiper-wrapper {
  display: flex;          /* відстань між слайдами */
}

.meta {
  margin-left: -8px;
  display: flex;
  justify-content:space-between;
}

.badge {
  background-color: #ffffff; /* наприклад синій фон */
  color: #000000;               /* білий текст */
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 1.85rem;
  font-weight: 600;
}

.swiper-slide {
  display: flex;
  justify-content: center;        /* не дозволяємо Swiper “розтягувати” слайди */
  width: auto;
  flex-shrink: 0;          /* щоб карти не зжимались */
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 580px;
  gap: 12px;
  width: 100%;
  max-width: 400px;        /* картка не розтягується */
  padding: 16px;
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: 0 10px 30px rgba(12,24,40,0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}



.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12,24,40,0.16);
}

/* обмеження тексту */
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  
}

.card-footer {
  padding-right: -10px;
}

/* стрілки */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  color: #1f406b;
  cursor: pointer;
}

.swiper-button-prev::before {
  content: "←";
}

.swiper-button-next::before {
  content: "→";
}
/* пагінація */
.swiper-pagination {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s;
}
.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background: #1f406b;
}

.pros-list {
  list-style: none; 
}

.pros-list li::before {
  content: "⦿"; 
  font-weight: 900;   
  display: inline-block; 
  width: 1em;
  margin-left: -1em;
  color: rgb(35, 118, 213); 
}

.card-footer {
  font-size: 12px;
  list-style: none;
  color: rgb(164, 164, 164);
}