.fixed-width-slider {
  margin: 0 auto;
  width: 100%;
}

.slider-card {
  width: 250px;
  margin: 0 10px;
  display: flex;
}

.slider-card .card {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  overflow: hidden;
}

a {
  text-decoration: white;
}

.slider-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-card {
    width: 180px;
  }

  .slider-card img {
    max-height: 60px;
  }
}

.fixed-width-slider .slider-card {
  width: 240px !important;
}

.fixed-width-slider .card {
  height: 140px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed-width-slider img {
  width: auto !important;
  max-width: 90% !important;
  max-height: 70px !important;
  object-fit: contain;
}

.fixed-width-slider .card-body {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  text-align: center;
  padding: 10px;
}

/* Contenedor de imagen */
.fixed-width-slider .card-body img {
  margin: auto 0;
  display: block;
}

/* Texto siempre abajo */
.fixed-width-slider .card-body h5 {
  margin-top: auto;
  text-align: center;
}

/* Mobile */
@media (max-width: 768px) {
  .fixed-width-slider .slider-card {
    width: 180px !important;
  }

  .fixed-width-slider img {
    max-height: 50px !important;
  }
}

.fixed-width-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: relative !important;
  bottom: 0 !important;
  margin-top: 15px;
}

/* Evita que los dots se monten sobre contenido */
.slick-slider {
  overflow: visible !important;
}

/* Mobile fix */
@media (max-width: 768px) {
  .fixed-width-slider {
    margin-bottom: 40px;
  }

  .slick-dots {
    bottom: -30px;
  }
}