/* Property Section */
div.aest-property-columns-section {
  display: grid;
  grid-template-columns: 60% 40%;
  column-gap: 24px;
  row-gap: 24px;
  height: 100vh;
}

div.property-grid-column {
  overflow-y: scroll;
}
div.property-map-column {

}

/* Property Card Styles */
.ae-property-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ae-property-link {
  display: block;
  position: relative;
}

/* Image Container */
.ae-property-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  /* Fixed height */
  overflow: hidden;
}

.ae-property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Transaction Tag */
.ae-property-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff5a5f;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
}

/* Property Details */
.ae-property-info {
  padding: 15px;
}

.ae-property-title {
  font-size: 18px;
  margin-bottom: 5px;
}

.ae-property-code {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.ae-property-location {
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 5px;
}

.ae-property-price {
  font-size: 16px;
  font-weight: bold;
  margin-top: 8px;
}

/* Feature Icons */
.ae-property-features {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ae-feature {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  background: #f8f8f8;
  padding: 8px;
  border-radius: 6px;
  flex: 1;
  text-align: center;
  justify-content: center;
}

.ae-feature i {
  font-size: 16px;
  color: #666;
}

#alterestate-pagination-btn {
  width: 175px;
  height: 40px;
  margin-top: 30px;
  border-radius: 3px;
  border: none;
  color: #fff;
  background: #0c4f84;
}

#alterestate-pagination-btn:hover {
  background: #00b9ce;
}

div.aest-map-toogle-button-container {
  position: fixed;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
div.aest-map-toogle-button-container .aest-map-toogle {
  width: 55px;
  height: 55px;
  font-size: 12px;
  border-radius: 50%;
  border: none;
  color: #fff;
  background: #0c4f84;
}

@media only screen and (min-width: 768px) {
  div.aest-map-toogle-button-container {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  div.aest-property-columns-section {
    grid-template-columns: 100%;
  }
  div.property-map-column {
    display: none;
  }
}
