/* HP Encarts catégorie, rendu front
   Parti pris : image plein cadre, pied bleu marine coupé en biseau avec un filet vert,
   en écho à la virgule verte du logo Harry Plast. */

.products li.hp-encart {
  list-style: none;
}

.products li.hp-encart > a.hp-encart__lien {
  --hp-marine: #13154e;
  --hp-vert: #0db200;
  --hp-biseau: 34px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 380px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--hp-marine);
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}

.products li.hp-encart .hp-encart__img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  z-index: -1;
}

/* Pied : couche verte, puis couche marine décalée de 5 px = filet vert sur le biseau */
.products li.hp-encart .hp-encart__pied {
  display: block;
  background: var(--hp-vert);
  clip-path: polygon(0 var(--hp-biseau), 100% 0, 100% 100%, 0 100%);
}

.products li.hp-encart .hp-encart__contenu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-top: 5px;
  padding: calc(var(--hp-biseau) + 14px) 22px 22px;
  background: var(--hp-marine);
  clip-path: polygon(0 var(--hp-biseau), 100% 0, 100% 100%, 0 100%);
  text-align: left;
}

.products li.hp-encart .hp-encart__surtitre {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--hp-vert);
}

.products li.hp-encart .hp-encart__titre {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  color: #fff;
}

.products li.hp-encart .hp-encart__texte {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .86);
}

/* Bouton : même vocabulaire que « En savoir plus » du site (contour blanc, capitales) */
.products li.hp-encart .hp-encart__cta {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
  transition: background-color .2s ease, color .2s ease;
}

.products li.hp-encart > a.hp-encart__lien:hover .hp-encart__cta,
.products li.hp-encart > a.hp-encart__lien:focus-visible .hp-encart__cta {
  background: #fff;
  color: var(--hp-marine);
}

.products li.hp-encart > a.hp-encart__lien:focus-visible {
  outline: 3px solid var(--hp-vert);
  outline-offset: 3px;
}

/* Tablette et mobile : grille à 2 colonnes, cases étroites */
@media (max-width: 991.98px) {
  .products li.hp-encart > a.hp-encart__lien {
    --hp-biseau: 20px;
    min-height: 300px;
  }
  .products li.hp-encart .hp-encart__contenu {
    gap: 5px;
    padding: calc(var(--hp-biseau) + 8px) 12px 14px;
  }
  .products li.hp-encart .hp-encart__surtitre { font-size: 11px; }
  .products li.hp-encart .hp-encart__titre { font-size: 15px; }
  .products li.hp-encart .hp-encart__texte {
    -webkit-line-clamp: 2;
    font-size: 12px;
  }
  .products li.hp-encart .hp-encart__cta {
    margin-top: 4px;
    padding: 7px 10px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .products li.hp-encart .hp-encart__cta { transition: none; }
}
