/*!**********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/banner-hero/style.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* =====================================================
   HERO BLOCK — PRO VERSION
   Spacings aligned with design spec (desktop + mobile)
   ===================================================== */
.br-hero {
  position: relative;
  overflow: visible;
  margin: 0 0 48px !important;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  height: auto !important;
}

/* -----------------------------------------------------
   OVERLAY
   ----------------------------------------------------- */
.br-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.br-hero__container,
.br-hero__countdown {
  position: relative;
  z-index: 2;
  align-items: flex-start !important;
  padding: 24px 0 24px;
}

/* -----------------------------------------------------
   CONTAINER

   Mirroir EXACT du .ituContainer du thème pour un
   alignement pixel-perfect avec le contenu en dessous,
   à toutes les tailles d'écran.

   NB padding vertical : avec spacing-small (.br-hero = 24px),
   24 + 40 = 64px en haut ET en bas -> c'est CE padding qui
   donne les 64px de l'image (l'image n'a plus de marge propre).
   ----------------------------------------------------- */
.br-hero__container {
  width: 100%;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 64px;
  align-items: center;
}
@media screen and (min-width: 576px) {
  .br-hero__container {
    max-width: 720px;
  }
}
@media screen and (min-width: 768px) {
  .br-hero__container {
    max-width: 960px;
  }
}
@media screen and (min-width: 992px) {
  .br-hero__container {
    max-width: 1280px;
  }
}

.br-hero--no-media .br-hero__media {
  display: none !important;
}

/* -----------------------------------------------------
   EYEBROW / KICKER
   Design desktop : 20px font, 16px gap below
   ----------------------------------------------------- */
.br-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  padding: 0 0 16px !important;
  margin: 0;
}

/* -----------------------------------------------------
   TITLE
   Design desktop : 40px font, 16px gap below
   ----------------------------------------------------- */
.br-hero__title {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 16px !important;
  max-width: 640px;
}

/* -----------------------------------------------------
   SUBTITLE (border-left accent)
   ----------------------------------------------------- */
/* Reset default browser background on <mark> (Gutenberg text-color) */
.br-hero mark {
  background-color: transparent;
}

.br-hero__subtitle {
  border-left: 3px solid #009cd6;
  padding-left: 14px;
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
}

/* -----------------------------------------------------
   DESCRIPTION
   Design desktop : 28px font, 24px gap below (vers le bouton)
   ----------------------------------------------------- */
.br-hero__desc {
  font-size: 28px;
  font-weight: 400;
  line-height: 2.5rem;
  margin: 0 0 24px;
  max-width: 640px;
}

/* -----------------------------------------------------
   BUTTONS — desktop
   Design : 24px gap depuis la description (gere par desc margin-bottom)
   Le JS (adjustHeroButtons) repasse en wrap si depassement.
   ----------------------------------------------------- */
.br-hero__buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 0;
  margin: 0;
}

.br-hero__buttons .ituBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  word-break: normal;
  border: 2px solid #009cd6;
  border-radius: 4px;
  color: #009cd6;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.08);
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
  transform-origin: center center;
}
.br-hero__buttons .ituBtn:hover {
  transform: translateY(-2px);
  filter: brightness(0.95);
}

.br-hero__buttons .ituBtn.ituBtn--white {
  border-color: #fff;
  color: #fff;
}
.br-hero__buttons .ituBtn.ituBtn--white:hover {
  color: #fff;
}

/* -----------------------------------------------------
   MEDIA WRAPPER
   ----------------------------------------------------- */
.br-hero__media {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

/* -----------------------------------------------------
   IMAGE RIGHT
   Hauteur FIXE -> la taille du fichier uploade n'influence
   plus la hauteur du hero.
   PAS de marge verticale propre : les 64px haut/bas
   viennent du padding structurel (.br-hero 24 + container 40).
   ----------------------------------------------------- */
.br-hero__image {
  display: block;
  width: 100%;
  max-width: 420px;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0;
  padding: 0;
  justify-self: end;
  align-self: center;
}

/* -----------------------------------------------------
   VIDEO RIGHT
   ----------------------------------------------------- */
.br-hero__video {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  padding: 0 0 64px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* -----------------------------------------------------
   LOTTIE RIGHT
   ----------------------------------------------------- */
.br-hero__lottie {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  padding: 0 0 64px;
  transform-origin: top center;
}
.br-hero__lottie svg,
.br-hero__lottie canvas {
  display: block;
  width: 100% !important;
  height: auto !important;
}

/* -----------------------------------------------------
   CARD (announcement)
   ----------------------------------------------------- */
.br-hero__card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  color: black !important;
  border-radius: 0;
  padding: 28px 32px;
}
.br-hero__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #009cd6;
}

.br-hero__card-eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 12px;
}

.br-hero__card h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}

.br-hero__card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.br-hero__card a {
  color: #009cd6;
  font-weight: 600;
  text-decoration: none;
}
.br-hero__card a:hover {
  text-decoration: underline;
}

/* -----------------------------------------------------
   CORNER LOGOS
   ----------------------------------------------------- */
.br-hero__corner-group {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.br-hero__corner-group--bottom-right {
  bottom: 16px;
  right: 20px;
}
.br-hero__corner-group--bottom-left {
  bottom: 16px;
  left: 20px;
}
.br-hero__corner-group--top-right {
  top: 16px;
  right: 20px;
}
.br-hero__corner-group--top-left {
  top: 16px;
  left: 20px;
}

.br-hero__corner-logo {
  display: block;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.br-hero__corner-group--stacked {
  flex-direction: column !important;
  align-items: flex-end !important;
}

.br-hero__corner-group--bottom-left.br-hero__corner-group--stacked {
  align-items: flex-start !important;
}

/* -----------------------------------------------------
   COUNTDOWN
   ----------------------------------------------------- */
.br-hero__countdown {
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  backdrop-filter: blur(6px);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 28px 32px;
}

.br-countdown {
  display: flex;
  gap: 50px !important;
}

.br-countdown__unit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #e5f5fb;
  border-radius: 8px;
  padding: 14px 18px;
  min-width: 80px;
  font-weight: 700;
  transition: 0.2s;
}
.br-countdown__unit:hover {
  transform: translateY(-2px);
}

.br-countdown__number {
  font-size: 42px;
  line-height: 1;
  color: black;
}

.br-countdown__label {
  font-size: 20px;
  font-weight: 600;
  color: #009cd6 !important;
}

.br-hero--has-countdown {
  margin-bottom: 100px !important;
}

/* =====================================================
   SPACING SYSTEM
   ===================================================== */
.br-hero--spacing-small {
  padding: 24px 0 24px;
}

.br-hero--spacing-medium {
  padding: 100px 0 140px;
}

.br-hero--spacing-large {
  padding: 140px 0 180px;
}

/* =====================================================
   BACKGROUND MODES
   ===================================================== */
.br-hero--bg-color {
  background-image: none !important;
}

/* =====================================================
   RESPONSIVE — TABLET (<= 1024px)
   ===================================================== */
@media (max-width: 1024px) {
  .br-hero__container {
    gap: 40px;
  }
  .br-hero__image,
  .br-hero__video,
  .br-hero__lottie {
    max-width: 340px;
  }
  .br-hero__corner-group {
    display: none;
  }
}
/* =====================================================
   RESPONSIVE — MOBILE (<= 768px)
   Design mobile spec :
     - Top padding hero  : 32px
     - Eyebrow font      : 16px,  gap below 12px
     - Title font        : 32px,  gap below 12px
     - Desc  font        : 24px,  gap below 20px
     - Button -> image    : 32px
     - Image side margin : 40px (from container edge)
     - Image bottom      : 32px
   ===================================================== */
@media (max-width: 768px) {
  .br-hero {
    padding: 32px 0 16px;
    overflow: hidden;
  }
  .br-hero.br-hero--has-countdown {
    overflow: visible;
    padding-bottom: 40px;
    margin-bottom: 55px !important;
  }
  .br-hero.br-hero--no-media.br-hero--has-countdown {
    padding-bottom: 95px;
  }
  .br-hero__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    line-height: 1.15;
    padding-top: 0;
    padding-bottom: 0;
  }
  .br-hero--no-media .br-hero__container .br-hero__content {
    max-width: 100%;
  }
  .br-hero__eyebrow {
    font-size: 16px;
    padding: 0 0 12px !important;
  }
  .br-hero__title {
    font-size: 32px;
    line-height: 1.15;
    margin: 0 0 12px !important;
  }
  .br-hero__title:first-child {
    margin-top: 16px !important;
  }
  .br-hero__desc {
    font-size: 24px !important;
    line-height: 1.15;
    margin: 0 0 20px;
  }
  .br-hero__buttons {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    padding: 0;
    margin: 0;
    width: 100% !important;
  }
  .br-hero__buttons .ituBtn {
    flex: none;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    justify-content: center;
    white-space: normal;
    word-break: break-word;
  }
  .br-hero__image,
  .br-hero__video {
    display: block;
    width: calc(100% - 50px) !important;
    max-width: 420px !important;
    height: auto !important;
    margin: 0 auto 32px;
    padding: 0;
  }
  .br-hero__lottie {
    display: block;
    transform: none !important;
    width: calc(100% - 50px) !important;
    max-width: 420px !important;
    margin: 0 auto 32px;
    padding: 0;
  }
  .br-hero__media {
    width: 100%;
    justify-content: stretch;
  }
  .br-hero__card {
    width: 100%;
    max-width: none;
  }
  .br-hero__card [contenteditable] {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
  .br-hero__countdown {
    bottom: -35px;
  }
  .br-countdown {
    gap: 20px !important;
  }
  .br-countdown__number {
    font-size: 16px;
  }
}
/* =====================================================
   RESPONSIVE — PHONE (<= 480px)
   On garde les memes ratios que mobile, juste ajuste
   pour les petits ecrans
   ===================================================== */
@media (max-width: 480px) {
  .br-hero {
    padding: 28px 0 12px;
    overflow: hidden;
  }
  .br-hero.br-hero--has-countdown {
    overflow: visible;
    padding-bottom: 60px;
    margin-bottom: 45px !important;
  }
  .br-hero__container {
    gap: 28px;
  }
  .br-hero__eyebrow {
    font-size: 15px;
    padding: 0 0 10px !important;
  }
  .br-hero__title {
    font-size: 28px;
    margin: 0 0 10px !important;
  }
  .br-hero__desc {
    font-size: 20px !important;
    margin: 0 0 16px;
  }
  .br-hero__buttons {
    gap: 10px;
  }
  .br-hero__buttons .ituBtn {
    padding: 0.6rem 1rem;
  }
  .br-hero__image,
  .br-hero__video {
    width: calc(100% - 40px) !important;
    max-width: none !important;
    margin: 0 auto 28px;
  }
  .br-hero__lottie {
    transform: none !important;
    width: calc(100% - 40px) !important;
    max-width: none !important;
    margin: 0 auto 28px;
  }
  .br-hero__media {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  .br-hero__card {
    max-width: 100%;
    padding: 12px 10px;
  }
  .br-hero__countdown {
    bottom: -28px;
    max-width: calc(100% - 24px);
    padding: 16px 14px;
  }
  .br-countdown {
    gap: 10px !important;
    flex-wrap: nowrap;
  }
  .br-countdown__unit {
    min-width: auto;
    padding: 10px 12px;
  }
  .br-countdown__number {
    font-size: 18px;
  }
  .br-countdown__label {
    font-size: 14px;
  }
}

/*# sourceMappingURL=style-index.css.map*/