/*
Theme Name:     Traveler Childtheme
Description:    Traveler Child Theme
Theme URI:      https://travelerwp.com/
Author:         the ShineTheme
Author URI:     http://shinetheme.com
Version:        1.0
Template:       traveler
*/
/* === Grid Produk Properti Mobile === */
.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 kolom di mobile */
  gap: 16px;
  padding: 10px;
}

/* Tablet */
@media (min-width: 768px) {
  .property-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .property-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Styling kartu produk */
.property-grid .property-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.property-grid .property-card:hover {
  transform: scale(1.02);
}

.property-grid .property-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}