.card-wrapper{
  max-width: 1100px;
  margin: 0 60px 35px;
  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);
  transition: 0.2s ease;
}

.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-list .card-link .badge{
  color: blue;
  margin: 16px 0 18px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  background: #dde4ff;
  width: fit-content;
  border-radius: 50px;
}

.card-list .card-link .card-title{
  font-size: 16px;
  color: #000;
  font-weight: bold;
  padding-top: 15px;
}

.card-list .card-link .card-button{
  height: 35px;
  width: 35px;
  color: #5372f0;
  border-radius: 50%;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  transform: rotate(-45deg);
  border: 2px solid #5382f0;
  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: #fff;
}

.card-wrapper .swiper-pagination-bullet-active{
  opacity: 1;
}

.card-wrapper .swiper-slide-button{
  color: #fff;
  margin-top: -35px;
} 

@media screen and (max-width: 768px){
  .card-wrapper{
      margin: 0 10px 25px;
  }

  .card-wrapper .swiper-slide-button{
      display: none;
  }
}

.countdown-box {
  width: 70px;
  padding: 10px;
  border: 2px solid #000;
  border-radius: 5px;
}
.countdown-value {
  font-size: 2rem;
  font-weight: bold;
}
.countdown-label {
  font-size: 0.9rem;
}