/* Featured inventory cards + detail */
.feat-checks {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}
.feat-checks li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--hts-muted);
  font-size: .88rem;
  line-height: 1.4;
}
.feat-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--hts-teal);
  font-weight: 800;
}
.feat-why-block {
  background: var(--hts-teal-soft);
  border: 1px solid #c5e4e4;
  border-radius: 10px;
  padding: 10px 12px;
  margin-top: 4px;
}
.feat-why-block h3 {
  margin: 0 0 6px;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--hts-teal-dark);
}
.feat-why-block .feat-checks li { color: var(--hts-teal-dark); }
.feat-id {
  font-weight: 800;
  color: var(--hts-teal-dark);
  font-size: .78rem;
  letter-spacing: .03em;
}

.feat-detail { display: grid; gap: 18px; }
.feat-hero-panel {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--hts-line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--hts-shadow);
}
.feat-hero-media { min-height: 260px; background: linear-gradient(145deg, #0d3d40, #0d7377); }
.feat-hero-media img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; display: block; }
.feat-hero-fallback {
  min-height: 260px;
  color: #fff;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.feat-id-xl { font-size: 1rem; font-weight: 800; letter-spacing: .06em; opacity: .9; }
.feat-fallback-title { font-size: clamp(1.35rem, 3vw, 1.85rem); font-weight: 800; line-height: 1.2; max-width: 18ch; }
.feat-fallback-price { font-size: 1.55rem; font-weight: 800; }
.feat-fallback-loc { opacity: .88; font-size: .95rem; }
.feat-hero-copy { padding: 24px 22px; display: grid; align-content: start; gap: 8px; }
.feat-hero-copy h1 { margin: 0; font-size: clamp(1.35rem, 2.8vw, 1.75rem); color: var(--hts-ink); line-height: 1.2; }
.feat-loc { margin: 0; color: var(--hts-muted); }
.feat-price { font-size: 1.45rem; font-weight: 800; color: var(--hts-ink); }
.feat-status { margin: 0; color: var(--hts-teal-dark); font-weight: 700; font-size: .92rem; }
.feat-cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feat-box {
  background: #fff;
  border: 1px solid var(--hts-line);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--hts-shadow);
}
.feat-box h2 { margin: 0 0 10px; font-size: 1.05rem; color: var(--hts-ink); }
.feat-box ul { margin: 0; padding-left: 1.1rem; color: var(--hts-text); }
.feat-box li { margin: 5px 0; }
.feat-why { background: var(--hts-teal-soft); border-color: #c5e4e4; }
.feat-why h2 { color: var(--hts-teal-dark); }

.feat-contact-band {
  background: #13222c;
  color: #fff;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.feat-contact-band div { color: #c9d5dc; font-size: .92rem; }
.feat-contact-band strong { display: block; color: #fff; margin-bottom: 4px; font-size: 1.05rem; }

@media (max-width: 900px) {
  .feat-hero-panel, .feat-grid { grid-template-columns: 1fr; }
  .feat-hero-media, .feat-hero-fallback, .feat-hero-media img { min-height: 240px; }
}
