/* Profile open houses cards (#2555) */
.pb-oh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.pb-oh-card {
  border: 1px solid #ebebeb;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.pb-oh-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.pb-oh-card__media {
  position: relative;
  width: 100%;
  height: 160px;
  background: #f4f4f4 center / cover no-repeat;
}
.pb-oh-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(17, 17, 17, 0.88);
  color: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pb-oh-card__datebar {
  background: #111;
  color: #fff;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pb-oh-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pb-oh-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
}
.pb-oh-card__meta {
  font-size: 13px;
  color: #6a6a6a;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pb-oh-card__meta i {
  color: #ff385c;
  width: 14px;
  text-align: center;
}
.pb-oh-card__details {
  margin: 8px 0 12px;
  font-size: 13px;
  color: #444;
  line-height: 1.45;
  flex: 1;
}
.pb-oh-card__footer {
  margin-top: auto;
}
.pb-oh-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 40px;
  border-radius: 10px;
  font-size: 13px;
  text-decoration: none;
  box-sizing: border-box;
}
@media (max-width: 560px) {
  .pb-oh-grid {
    grid-template-columns: 1fr;
  }
}
