/* Start custom CSS for html, class: .elementor-element-91abe64 *//* ── Wrapper ── */
.ea-banner-wrapper {
  width: 100%;
  padding-top: 25px;
  box-sizing: border-box;
  overflow: hidden;
}

/* ── Bannière : flex row par défaut ── */
.ea-banner {
  background: #009CFF;
  border-radius: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px 36px 20px 0;
  min-height: 130px;
  gap: 25px;
  box-sizing: border-box;
  width: 100%;
  overflow: visible;
}

/* ── Col 1 : image ── */
.ea-banner__image-col {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: flex-end;
}

.ea-banner__image-col img {
  width: 180px;
  max-width: 100%;
  height: auto;
  margin-top: -48px;
  margin-bottom: -20px;
  display: block;
  position: relative;
  z-index: 2;
}

/* ── Col 2 : texte + CTA ensemble ── */
.ea-banner__text-cta-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.ea-banner__content {
  min-width: 0;
}

.ea-banner__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.25;
  margin: 0 0 10px 0;
}

.ea-banner__subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.82rem, 1.3vw, 1rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  margin: 0;
  text-justify: none;
}

.ea-banner__subtitle strong { font-weight: 700; }

/* CTA directement dans .ea-banner__text-cta-col */
.ea-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  background: #009A00;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none !important;
  border: 2px solid #fff;
  transition: background 0.2s;
  white-space: normal;
  text-align: center;
  box-sizing: border-box;
}

.ea-banner__cta:hover { background: #007a00; color: #fff !important; }

.ea-banner__cta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── MOBILE : colonne unique (< 750px) ── */
@media (max-width: 749px) {
  .ea-banner-wrapper { padding-top: 0; }

  .ea-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px;
    min-height: auto;
    gap: 12px;
    overflow: hidden;
  }

  .ea-banner__image-col {
    flex: none;
    width: 100%;
    justify-content: center;
    align-self: auto;
  }

  .ea-banner__image-col img {
    width: clamp(80px, 30vw, 120px);
    margin: 0 auto;
  }

  .ea-banner__text-cta-col {
    align-items: center;
  }

  .ea-banner__cta {
    align-self: center;
    width: 100%;
    justify-content: center;
  }
}/* End custom CSS */