/*!**********************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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
   ===================================================== */
.br-hero {
  justify-items: center;
  position: relative;
  overflow: visible;
  margin: 0 0 48px !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 504px !important;
  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
   ----------------------------------------------------- */
.br-hero__container {
  max-width: 1200px;
  margin: 0 27px 0;
  padding: 40px 0 48px !important;
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 64px;
  align-items: center;
}

/* -----------------------------------------------------
  LABEL - kicker
   ----------------------------------------------------- */
.br-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
  padding: 0 0 16px !important;
}

/* -----------------------------------------------------
   TEXT
   ----------------------------------------------------- */
.br-hero__title {
  font-size: 40px;
  line-height: 1.15;
  margin: 30px 0 0 !important;
  max-width: 640px;
}

.br-hero__desc {
  font-size: 28px;
  font-weight: 400;
  line-height: 2.5rem;
  margin: 16px 0 28px;
  max-width: 640px;
}

/* -----------------------------------------------------
   BUTTONS (layout)
----------------------------------------------------- */
.br-hero__buttons {
  padding: 24px 0 0;
  margin: 24px 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* -----------------------------------------------------
   BUTTON base
----------------------------------------------------- */
.br-hero__buttons .ituBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  box-shadow: 0 0 1.5rem rgba(169, 202, 216, 0.0784313725);
  width: auto;
  font-size: 1rem;
  font-weight: 500;
  transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
  transform-origin: center center;
}

/* NORMAL (bleu) — adapte les couleurs à ton design */
.br-hero__buttons .ituBtn {
  border: 2px solid #009cd6;
  color: #009cd6;
}

.br-hero__buttons .ituBtn:hover {
  transform: translateY(-2px);
  filter: brightness(0.95);
}

/* WHITE variant */
.br-hero__buttons .ituBtn.ituBtn--white {
  border: 2px solid #fff;
  color: #fff;
}

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

/* -----------------------------------------------------
   IMAGE RIGHT
   ----------------------------------------------------- */
.br-hero__image {
  width: 100%;
  max-width: 420px;
  padding: 0 0 64px;
  justify-self: end;
  align-self: center;
  height: auto;
}

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

/* FLEX */
.br-countdown {
  display: flex;
  gap: 100px !important;
}

/* CARD */
.br-countdown__unit {
  background: #e5f5fb;
  padding: 14px 18px;
  border-radius: 8px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
}

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

/* LETTER (d h m s) */
.br-countdown__label {
  font-size: 20px;
  color: #009cd6 !important;
  font-weight: 600;
}

.br-countdown__unit {
  transition: 0.2s;
}

.br-countdown__unit:hover {
  transform: translateY(-2px);
}

.br-hero__countdown {
  backdrop-filter: blur(6px);
}

.br-hero--countdown-hidden {
  margin-bottom: 0 !important; /* si tu avais un margin réservé */
}

/* =====================================================
   SPACING SYSTEM (ULTRA IMPORTANT)
   ===================================================== */
.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
   ===================================================== */
@media (max-width: 1024px) {
  .br-hero__container {
    gap: 40px;
  }
  .br-hero__image {
    max-width: 340px;
  }
}
/* =====================================================
   MOBILE HERO — CLEAN STACK
===================================================== */
@media (max-width: 768px) {
  .br-hero {
    padding: 24px 0 16px;
  }
  /* container devient une simple stack */
  .br-hero__container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    line-height: 1.15;
  }
  /* TEXT */
  .br-hero__title {
    font-size: 32px;
    line-height: 1.15;
  }
  .br-hero__desc {
    font-size: 24px !important;
    line-height: 1.15;
    margin: 8 0 20px;
  }
  /* BUTTONS */
  .br-hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 0 0;
    width: 100% !important;
  }
  .br-hero__buttons .ituBtn {
    width: 100% !important;
    flex: 0 0 100% !important;
    align-self: stretch !important;
    max-width: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  /* IMAGE — dans le flow naturel */
  .br-hero__image {
    position: relative;
    max-width: 70% !important;
    margin: 40px auto 0;
    display: block;
  }
  .br-countdown {
    display: flex;
    gap: 20px !important;
  }
  .br-countdown__number {
    font-size: 16px;
    line-height: 1;
    color: black;
  }
}

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