/* MINI BANNERLARI YAN YANA GÖSTERMEK İÇİN */

#banners-wrapper .container {
  display: flex !important;
  flex-direction: row !important; /* Yatay diz */
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 20px 0;
}

/* Görsellerin responsive ve yan yana düzgün durması için */
#banners-wrapper .container img {
  width: calc(33.333% - 16px) !important;
  max-width: 100% !important;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

/* Hover animasyonu istersen */
#banners-wrapper .container img:hover {
  transform: scale(1.03);
}

/* Tablet görünüm */
@media (max-width: 1024px) {
  #banners-wrapper .container img {
    width: calc(50% - 16px);
  }
}

/* Mobil görünüm */
@media (max-width: 600px) {
  #banners-wrapper .container img {
    width: 100%;
  }
}
