/* Responsive Grid */
.containerIce {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Card */
.property-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Image */
.image-wrapper {
  height: 200px;
}

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

.badgeIce{
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #31b9a8;
  color: #fff;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 12px;
}

/* Content */
.card-content {
  padding: 16px;
}

h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 24px;
  
}

.location {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}

/* Price */
.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 14px;
}

.price-row strong {
  color: #2563eb;
  font-size: 17px;
}

/* Button */
.cta-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: #31b9a8;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

/* Expandable details */
.details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.details.open {
  max-height: 250px;
  margin-top: 12px;
}

.details p {
  margin: 8px 0;
  font-size: 14px;
}

.details a {
  color: #2563eb;
  text-decoration: none;
}

.addressIce{
  color: #2563eb;
}

.timeIce{
  margin-right: 4px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  background-color: #31b9a8;
  padding: 4px 10px;
  border-radius: 16px;
  font-size: 12px;
  color: #ffff;
}

.card-description-ice{
  margin-bottom: 10px;
}



/* Tablet */
@media (min-width: 600px) {
  .containerIce {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 992px) {
  .containerIce {
    grid-template-columns: repeat(3, 1fr);
  }
}
