/* === İLAN DÜZENİ === */
.ilan-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 15px auto;
  max-width: 1200px;
  padding: 0 10px;
}

.ilan {
  width: 48%;
  background: #111;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
}

.ilan:hover {
  transform: scale(1.02);
}

.ilan-fotolar {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}

.ilan-fotolar img {
  width: 32%;
  aspect-ratio: 1 / 1;       /* Görsel kare kalır */
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}

.ilan-baslik {
  background: #ff7b00;
  color: #fff;
  padding: 8px 0;
  font-weight: 600;
  font-size: 16px;
  margin-top: 8px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.ilan a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* === MOBİL DÜZEN === */
@media (max-width: 768px) {
  .ilan {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
  }

  .ilan-fotolar {
    gap: 4px;
  }

  .ilan-fotolar img {
    width: 32%;
    aspect-ratio: 1 / 1;      /* Kare görünüm */
    object-fit: cover;
    height: auto;
  }

  .ilan-baslik {
    font-size: 15px;
    padding: 10px 0;
  }

  /* “İlan Ver” görseline özel oran */
  .ilan-fotolar img:first-child[src*="ilanver"] {
    aspect-ratio: 3 / 4;      /* dikey oran düzeltme */
  }
}