/* Genel stiller */
.splide__slide img {
  border-radius: 20px;
}

/* Mobil ekranlar için stil */
@media only screen and (max-width: 767px) {
  .splide__slide img {
    width: calc(100% - 0px);
    max-width: calc(100% - 0px);
    height: auto;
    margin: 0 0px;
  }

  .banner {
    height: 100px;  /* Mobilde daha küçük yükseklik */
    margin: 3px 0;  /* Mobilde üst ve alt boşluk */
  }

  .banner:first-of-type {
    margin-top: 10px;  /* Mobilde ilk banner için daha fazla üst boşluk */
  }
}

/* Bilgisayar ekranları için stil */
@media only screen and (min-width: 768px) {
  .splide__slide img {
    width: calc(100% - 0px);
    max-width: calc(100% - 0px);
    height: 340px;
    object-fit: cover;
    margin: 0 0px;
  }

  .banner {
    height: 165px;
  }

  .banner:first-of-type {
    margin-bottom: 10px;
  }

  .banner:last-of-type {
    margin-top: 0;
  }
}

.banner {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.banner:hover {
  transform: scale(0.95);
}

.category img {
  width: 100%;
  padding: 0.25em;
  border-radius: 20px;
}

.category span {
  font-size: 12px;
}

.category {
  transition: transform 0.3s ease;
}

.category:hover {
  transform: scale(0.95);
}