/* HORIZON HAWK 1.7.0 — product-conversion and public-content refinement. */

/* Keep resource cards balanced when only one or two real posts remain after
   default/sample content is excluded. */
.hh-blog-grid-count-1 {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.hh-blog-grid-count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Vehicle pages: replace repetitive generic image panels with a shorter,
   product-focused coordination strip. */
.hh-vehicle-coordination .hh-section-head {
  max-width: 820px;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.hh-vehicle-coordination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px);
}
.hh-vehicle-coordination-grid article {
  min-height: 0;
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}
.hh-vehicle-coordination-grid article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(91, 201, 137, .14);
  color: #b9f0cf;
  font-weight: 800;
  letter-spacing: .04em;
}
.hh-vehicle-coordination-grid h3 {
  margin: 0 0 10px;
  font-size: clamp(19px, 1.4vw, 23px);
}
.hh-vehicle-coordination-grid p {
  margin: 0;
  color: rgba(255,255,255,.76);
  line-height: 1.65;
}
.hh-coordination-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 26px;
}
.hh-vehicle-coordination .hh-text-link {
  color: #c7f2d8;
}

.hh-inquiry-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.hh-inquiry-checklist li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--hh-muted, #5f6d67);
}
.hh-inquiry-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--hh-green, #168a55);
  font-weight: 800;
}

@media (max-width: 900px) {
  .hh-vehicle-coordination-grid {
    grid-template-columns: 1fr;
  }
  .hh-vehicle-coordination-grid article {
    padding: 22px;
  }
}

@media (max-width: 767px) {
  .hh-blog-grid-count-2,
  .hh-blog-grid-count-1 {
    grid-template-columns: 1fr;
  }
  .hh-inquiry-checklist {
    grid-template-columns: 1fr;
  }
  .hh-coordination-links {
    display: grid;
    gap: 10px;
  }
}
