.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel-card {
  flex: 0 0 300px;
  height: 200px;
  margin: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  scroll-snap-align: start;
}

.carousel-card a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  text-decoration: none;
  color: #333;
}

.carousel-card p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.9em;
}

.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}


.carousel-card hr {
  margin: 0 !important;
}


.carousel-card img {
  margin: 0 !important;
}

.logo-container img {
  margin: 0 !important;
}

.logo-container {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;

}


.carousel {
  width: 100%; /* Ocupa todo el ancho del contenedor */
  overflow-x: auto;
}

.logo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.carousel {
  overflow-x: auto;
  -ms-overflow-style: none; /* Ocultar scroll en IE y Edge */
  scrollbar-width: none; /* Ocultar scroll en Firefox */
}

.carousel::-webkit-scrollbar {
  display: none; /* Ocultar scroll en Chrome, Safari y Opera */
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  margin: 0 5px;
  cursor: pointer;
}

.indicator.active {
  background-color: #333;
}


