/**
 * Home page visual polish (TASK-019)
 * Fixes crushed hero headline and tightens featured/category presentation.
 */

.hero-copy h1 {
  max-width: 11.5em;
  margin: 0;
}

.hero-copy .lead {
  max-width: 36rem;
}

.hero-chips {
  margin-bottom: 22px;
}

.categories .cat-card {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  color: inherit;
  text-decoration: none;
}

.categories .cat-card .cat-link {
  margin-top: auto;
}

.product-grid {
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-grid .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-grid .product-media {
  min-height: 0;
}

.product-grid .product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-grid .product-actions {
  margin-top: auto;
}

@media (max-width: 1080px) {
  .hero-copy h1 {
    max-width: none;
  }
}
