/* Banner partagée — catalog, blog, blog-article, contact */

.page-banner {
  position: relative;
  height: 225px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* Fondu sur les côtés */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 50%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 50%,
    transparent 100%
  );
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../../images/ui/catalog/hero-catalog.jpg");
  background-position: center calc(50% + 20px);
  background-size: 115%;
  background-repeat: no-repeat;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='s'><feConvolveMatrix order='3' preserveAlpha='true' kernelMatrix='0 -0.5 0 -0.5 3 -0.5 0 -0.5 0'/></filter></svg>#s") contrast(1.08) saturate(1.08);
  z-index: 0;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(58, 28, 113, 0.6) 0%,
    rgba(58, 28, 113, 0.22) 50%,
    rgba(58, 28, 113, 0.6) 100%
  );
  z-index: 1;
}
