.lo-slider {
  position: relative;
  margin: 16px 0;
  width: 100%;
  max-width: 100%;
  font-family: "Quicksand", Sans-serif;
  cursor: pointer;
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.lo-slider__swiper {
  flex: 1;
  width: auto;
  min-width: 0;
  cursor: pointer;
  height: auto;
  overflow: hidden;
  min-height: 55px;
}

.lo-slider__swiper .swiper-slide {
  height: auto;
}

.lo-slider__slide {
  display: flex;
  height: auto;
  cursor: pointer;
}

.lo-slider__card {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  width: 100%;
  background: #e9f5ff;
  color: #14324a;
  cursor: pointer;
  min-height: 130px;
}

.lo-slider__text {
  flex: 1;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  display: block; /* au lieu de flex */
}

.lo-slider__text > *:last-child {
  margin-top: 0; /* supprime le push vers le bas */
}

.lo-slider__text strong {
  font-weight: 700;
}

.lo-slider__text > *:last-child {
  margin-top: auto;
}

.lo-slider__pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: none;
}

.lo-slider__pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  opacity: 1;
  background: rgba(26, 57, 84, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.lo-slider__pagination .swiper-pagination-bullet-active {
  background: #1a3954;
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .lo-slider {
    flex-direction: row;
    max-width: 100%;
  }

  .lo-slider__card {
    min-height: 150px;
  }
}
