body { 
  font-family: system-ui, sans-serif; 
  margin: 2rem; 
  }

.thumb { 
  width: 120px; 
  height: 90px; 
  object-fit: cover; 
  border: 1px solid #ddd; 
  border-radius: 8px; 
}

}

.subtitle { 
  margin: 0.25rem 0; 
  color: #20c997;
}

.rent { 
  margin: 0.25rem 0; 
  color: #20c997;
  text-transform: capitalize;
  font-family: Nunito, sans-serif;
}


ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.apartment {
  display: flex;
  align-items: flex-start; /* keep text top-aligned with image */
  border: 1px solid #ccc;
  margin-bottom: 20px;
  padding: 10px;
  border-radius: 8px;
}

.apartment img.thumb {
  width: 120px;      /* thumbnail size */
  height: auto;
  object-fit: cover; /* crop nicely */
  margin-right: 15px;
  border-radius: 6px;
}

.apartment .details {
  flex: 1; /* take remaining space */
}

.apartment .title {
  font-weight: bold;
  font-size: 1.1em;
}


