.open-houses-page .page-header-stats {
  min-width: min(100%, 280px);
}

.open-houses-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 22px;
  padding: 8px 0 40px;
}

@media (max-width: 980px) {
  .open-houses-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .open-houses-grid {
    grid-template-columns: 1fr;
  }
}

a.oh-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--stone);
  transition: border-color 0.25s ease;
}

a.oh-card:hover {
  border-color: var(--ink);
}

.oh-card .prop-image {
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.oh-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh-card-when {
  margin: 0;
  color: var(--warm-dark, #a8861e);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.oh-card-price {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.oh-card-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
}

.oh-card-meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.oh-card-notes {
  margin: 4px 0 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.oh-card-office {
  margin: 8px 0 0;
  font-size: 0.75rem;
  color: rgba(28, 28, 26, 0.45);
}

.open-houses-empty {
  padding: 48px 0 64px;
  text-align: center;
}

.open-houses-empty h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 10px;
}

.open-houses-empty p {
  margin: 0 auto 20px;
  max-width: 36rem;
  color: var(--ink-soft);
}

.open-houses-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
  margin-top: 8px;
}

.home-open-houses {
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 48px);
  background: var(--cream, #f7f5f0);
  border-top: 1px solid var(--stone);
}

.home-open-houses .section-header {
  margin-bottom: 28px;
}

.home-oh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 900px) {
  .home-oh-grid {
    grid-template-columns: 1fr;
  }
}

a.home-oh-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--stone);
  color: inherit;
  text-decoration: none;
  min-height: 120px;
  transition: border-color 0.25s ease;
}

a.home-oh-card:hover {
  border-color: var(--ink);
}

.home-oh-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--stone);
}

.home-oh-card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.home-oh-card-when {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--warm-dark, #a8861e);
}

.home-oh-card-title {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.home-oh-card-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
