/* Importing Google fonts - Inter */
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");

.container_1 {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9efe7;
  /* background: var(--bg-color); */
  /* font-family: "Inter", sans-serif; */
  margin-top: 2rem;
}
.carousel-title {
  text-align: center;
  padding: 20px 0 5px;
}
.card-wrapper {
  max-width: 1100px;
  margin: 0 60px 20px;
  padding: 20px 10px;
  overflow: hidden;
}
.card-list .card-item {
  list-style: none;
}
.card-list .card-item .card-link {
  user-select: none;
  display: block;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  border: 2px solid transparent;
  /* box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05); */
  box-shadow: 0 3px 10px var(--primary-shadow);
  transition: 0.2s ease;
  text-align: center;
  color: #000;
}
.card-list .card-item .card-link:active {
  cursor: grabbing;
}

.card-list .card-item .card-link:hover {
  border-color: #5372f0;
}
.card-list .card-link .card-image {
  width: 100%;
  /* aspect-ratio: 16 / 9; */
  object-fit: cover;
  border-radius: 10px;
}
.card-title {
  min-height: 90px;
}
.card-list .card-link .badge {
  color: #5372f0;
  padding: 4px 8px;
  font-size: 0.95rem;
  font-weight: 500;
  background: #dde4ff;
  width: fit-content;
  border-radius: 50px;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  margin: 10px auto 0;
}
.card-list .card-link h3 {
  margin-bottom: 10px; /* Adds 10px space below the title */
}

.card-list .card-link .card-button {
  height: 35px;
  width: 35px;
  color: #5372f0;
  border-radius: 50%;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  border: 2px solid #5372f0;
  transform: rotate(-45deg);
  transition: 0.4s ease;
}
.card-list .card-link:hover .card-button {
  color: #fff;
  background: #5372f0;
}
.card-wrapper .swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: #5372f0;
}
.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}
.card-wrapper .swiper-slide-button {
  color: #5372f0;
  margin-top: -35px;
}

@media (max-width: 1020px) {
  .card-title {
    min-height: 70px;
  }
}
@media (max-width: 800px) {
  .card-title {
    min-height: 100px;
  }
}
@media (max-width: 770px) {
  .card-title {
    min-height: 70px;
  }
}
@media (max-width: 520px) {
  .card-wrapper {
    margin: 0 40px 20px;
  }
}
@media (max-width: 320px) {
  .card-wrapper {
    margin: 0 10px 25px;
  }
  .card-wrapper .swiper-slide-button {
    display: none;
  }
}
