/* ====================================
   CHARM RESIDENCE CATALOG SPECIFIC STYLES
   ==================================== */

.apartment-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 30px;
}

.apartment-card .img-wrap {
  height: 220px;
  overflow: hidden;
}

.apartment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.apartment-card:hover img {
  transform: scale(1.03);
}

.apartment-card .body {
  padding: 16px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.apartment-card h3 {
  margin: 0;
  color: #1d3f47;
  font-size: 1.2rem;
}

.apartment-card p {
  margin: 0;
  color: #557178;
}

.status-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.status-available {
  background: #a1c570;
  color: #fff;
}

.status-sold {
  background: #1d3f47;
  color: #e5decc;
}

.cta-link {
  color: #1d3f47;
  font-weight: 700;
  text-decoration: none;
}

.cta-link:hover {
  color: #a1c570;
  text-decoration: none;
}

.newsletter_box {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
