/* ============================================
  LA TOUCHE K — HERO PAGE SECONDAIRE
  Fichier : ltk-cp-section-hero.css
  Composant : Bannière page secondaire
  ============================================ */


/* Banner hero */
.ltk-core-section--banner {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Image en position absolute, cover, centrée */
.ltk-cp-section-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.ltk-core-section--banner::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--ltk-core-color-primary) 75%, transparent) 0%,
    color-mix(in srgb, var(--ltk-core-color-primary) 55%, transparent) 100%
  );
  pointer-events: none;
}

.ltk-core-section--banner .ltk-core-container {
  position: relative;
  z-index: 2;
}

@media (max-width: 1024px) {
  .ltk-core-section--banner {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .ltk-core-section--banner {
    min-height: 180px;
  }
  .ltk-core-section--banner::before {
    background: color-mix(in srgb, var(--ltk-core-color-primary) 55%, transparent) 100%;
  }

  @media (max-width: 478px) {
  .ltk-core-section--banner {
    min-height: 150px;
    }
  }
}