/*
 * Page d'accueil : rayons, mises en avant, produits vedettes.
 *
 * Les marges sont portées par les sections et non par le gabarit : un bloc qui
 * ne rend rien ne doit pas laisser de blanc. Voir docs/accueil.md.
 */

.fhema-hero .wp-block-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
}

.fhema-categories,
.fhema-highlights,
.fhema-featured-products {
  margin-top: 64px;
}

.fhema-categories:first-child,
.fhema-highlights:first-child,
.fhema-featured-products:first-child {
  margin-top: 0;
}

.fhema-categories__title,
.fhema-highlights__title,
.fhema-featured-products__title {
  margin: 0 0 32px;
  text-align: center;
}

.fhema-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fhema-category__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
  text-decoration: none;
}

.fhema-category__image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
}

.fhema-category__name {
  flex: 1;
  margin-top: 12px;
  color: var(--fhema-color-text);
  font-weight: 600;
}

.fhema-category__link:hover .fhema-category__name {
  text-decoration: underline;
}

.fhema-category__count {
  color: var(--fhema-color-muted);
  font-size: var(--wp--preset--font-size--tiny);
}

.fhema-highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.fhema-highlight {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--fhema-color-border);
  border-radius: 12px;
  background-color: var(--fhema-color-surface);
}

.fhema-highlight__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.fhema-highlight__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.fhema-highlight__heading {
  margin: 0 0 12px;
  font-size: var(--wp--preset--font-size--large);
}

.fhema-highlight__content > :first-child {
  margin-top: 0;
}

.fhema-highlight__content .wp-block-buttons {
  margin-top: auto;
  padding-top: 16px;
}

.fhema-highlight__content > :last-child {
  margin-bottom: 0;
}

.fhema-featured-products__more {
  margin: 32px 0 0;
  text-align: center;
}

.fhema-featured-products__more .wp-element-button {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  text-decoration: none;
}

@media (min-width: 1440px) {
  .fhema-home-links {
    max-width: 1190px !important;
  }

  .fhema-home-links .wp-block-buttons {
    flex-wrap: nowrap;
    max-width: none;
  }

  .fhema-home-links .wp-block-button {
    flex: 0 0 auto;
  }
}
