/*!**********************************************************************************************************************************************************************************************************************************************************!*\
  !*** 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: top !important;
  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;
}

/* -----------------------------------------------------
   HERO CARD (announcement style)
----------------------------------------------------- */
.br-hero__media {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

/* CARD Announcement */
.br-hero__card {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  color: black !important;
  border-radius: 0px;
  padding: 28px 32px;
}

/* TOP ACCENT LINE */
.br-hero__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #009cd6;
  border-radius: 0;
}

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

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

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

/* LINKS */
.br-hero__card a {
  color: #009cd6;
  font-weight: 600;
  text-decoration: none;
}

.br-hero__card a:hover {
  text-decoration: underline;
}

/* COUNTDOWN WRAPPER */
.br-hero__countdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  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;
  }
  /* le container media doit prendre toute la largeur */
  .br-hero__media {
    width: 100%;
    justify-content: stretch; /* au lieu de flex-end */
  }
  /* la card doit s'étirer */
  .br-hero__card {
    width: 100%;
    max-width: none;
  }
  /* si ton contenu est dans un [contenteditable] */
  .br-hero__card [contenteditable] {
    width: 100%;
    max-width: none;
    box-sizing: border-box;
  }
  .br-countdown {
    display: flex;
    gap: 20px !important;
  }
  .br-countdown__number {
    font-size: 16px;
    line-height: 1;
    color: black;
  }
}
/* =====================================================
   PHONE — EXTRA TIGHT (<= 480px)
===================================================== */
@media (max-width: 480px) {
  .br-hero {
    padding: 20px 0 12px;
  }
  .br-hero__container {
    gap: 24px;
    margin: 0 16px 0; /* si tu veux éviter le bord collé */
  }
  .br-hero__title {
    font-size: 28px;
  }
  .br-hero__desc {
    font-size: 20px !important;
    margin: 8px 0 16px;
  }
  /* Buttons: toujours full width mais plus compact */
  .br-hero__buttons {
    gap: 10px;
  }
  .br-hero__buttons .ituBtn {
    padding: 0.6rem 1rem;
  }
  /* Image: un peu moins grande */
  .br-hero__image {
    max-width: 80% !important;
    margin: 28px auto 0;
  }
  .br-hero__media {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  /* CARD */
  .br-hero__card {
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 0px);
    padding: 12px 10px;
  }
  .br-hero__countdown {
    left: 50%;
    transform: translateX(-50%);
    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*/