/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 15 2025 | 11:50:51 */
.custom-property-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.property-type-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.property-type-image {
  width: 100%;
  height: 230px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.property-type-card:hover .property-type-image {
  transform: scale(1.05);
}

.property-type-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border-radius: 12px;
}

.property-type-overlay h3 {
  font-size: 20px;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.property-type-btn {
  display: inline-block;
  background: #ff5a00;
  color: #fff;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.property-type-btn:hover {
  background: #ff7c2a;
}
