/* Start custom CSS for html, class: .elementor-element-7ee30fd *//* ── Wrapper : espace en haut pour le débordement de l'image ── */
.ea-banner-wrapper {
  width: 100%;
  padding-top: 60px;
  box-sizing: border-box;
  overflow: visible;
}
/* ── Bannière ── */
.ea-banner {
  background:#009CFF;
  border-radius: 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 20px 36px 0 0;
  min-height: 130px;
  gap: 25px;
  box-sizing: border-box;
  width: 100%;
  overflow: visible;
  position: relative;
}
/* ── Col 1 : image qui déborde ── */
.ea-banner__image-col {
  flex: 0 0 800;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: flex-end;
  position: relative;
}
.ea-banner__image-col img {
  width: 300px;
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
  margin-top: -60px;   /* déborde vers le haut */
  display: block;
  position: relative;
  z-index: 2;
}
/* ── Col 2 : texte + CTA ── */
.ea-banner__text-cta-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 20px 0 20px 0;
}
.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;
}
.ea-banner__subtitle strong { font-weight: 700; }
.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;
  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;   /* plus de débordement en mobile */
  }
  .ea-banner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px;
    min-height: auto;
    gap: 12px;
    overflow: hidden;   /* on contient tout en mobile */
  }
  .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-top: 0;     /* pas de débordement */
    margin-bottom: 0;
  }
  .ea-banner__text-cta-col {
    align-items: center;
    padding: 0 0 8px 0;
  }
  .ea-banner__cta {
    align-self: center;
    width: 100%;
    justify-content: center;
  }
}/* End custom CSS */