/* Hilink Product Grid — profence red skin compatible */
.hlg-grid {
  display: grid;
  gap: 22px;
  margin: 28px 0 36px;
  grid-template-columns: repeat(3, 1fr);
}
.hlg-cols-2 { grid-template-columns: repeat(2, 1fr); }
.hlg-cols-3 { grid-template-columns: repeat(3, 1fr); }
.hlg-cols-4 { grid-template-columns: repeat(4, 1fr); }

.hlg-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hlg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(198,3,21,.14);
  border-color: #C60315;
}
.hlg-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: #f3f3f3;
}
.hlg-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg,#f6f6f6,#f6f6f6 12px,#efefef 12px,#efefef 24px);
  color: #999;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hlg-title {
  margin: 16px 18px 6px;
  font-size: 18px;
  color: #444444;
  line-height: 1.3;
}
.hlg-ex {
  margin: 0 18px 14px;
  font-size: 14px;
  color: #666;
  line-height: 1.55;
  flex: 1;
}
.hlg-cta {
  margin: 0 18px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #C60315;
  letter-spacing: .02em;
}
.hlg-empty {
  color: #666;
  font-style: italic;
  padding: 18px 0;
}

@media (max-width: 900px) {
  .hlg-grid, .hlg-cols-3, .hlg-cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hlg-grid, .hlg-cols-2, .hlg-cols-3, .hlg-cols-4 { grid-template-columns: 1fr; }
}
