.elementor-133 .elementor-element.elementor-element-126b7e8{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-133 .elementor-element.elementor-element-b137f30{width:var( --container-widget-width, 33.102% );max-width:33.102%;--container-widget-width:33.102%;--container-widget-flex-grow:0;}.elementor-133 .elementor-element.elementor-element-b137f30.elementor-element{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for html, class: .elementor-element-b137f30 *//* GRID LAYOUT */
.property-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 40px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden; /* 🔥 important */
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.card img {
  width: 100%;
  height: 180px !important;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.card-content {
  padding: 15px;
}

/* TEXT */
.card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.card p {
  margin: 5px 0;
  color: #555;
  font-size: 14px;
}

/* BUTTON */
.card button {
  margin-top: 15px;
  padding: 10px 20px;
  background: #0d3b66;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.card button:hover {
  background: #092a4a;
}/* End custom CSS */