.elementor-widget-text-editor{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-28f18c60 *//* --- LINKS (general) --- */
.my-access-box a {
  color: #005fc9;
  font-weight: bold;
  text-decoration: none;
  background-color: transparent;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.my-access-box a:hover {
  color: #ffffff;
  background-color: #005fc9;
  text-decoration: underline;
}

.my-access-box a:visited {
  color: #800080; /* purple visited */
  background-color: transparent;
}

/* --- LISTS --- */
ul, ol {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

li::marker {
  content: none !important;
}

ul.no-dot li {
  list-style-type: none;
  -webkit-list-style-type: none;
}

ul.no-dot li::marker {
  content: none;
}

/* --- SNOWFLAKE ITEMS --- */
ul.no-dot li span.snowflake {
  color: #005fc9;
  font-size: 1.2em;
  margin-right: 5px;
}

ul.no-dot li:hover {
  background-color: #eef6ff;
  transition: background-color 0.3s ease;
}

/* --- SPECIAL BUTTON: SAVIEZ-VOUS QUE --- */
.my-access-box h3.saviez-title {
  text-align: center;
  margin: 20px 0;
}

.my-access-box h3.saviez-title a {
  display: inline-block;
  color: #ffffff;
  background-color: #003366; /* dark blue button */
  font-weight: 900;
  font-size: 1.2em;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.my-access-box h3.saviez-title a:hover {
  background-color: #005fc9; /* lighter blue */
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

.dynamic-h2 {
  text-align: center;              /* center the text */
  display: inline-block;           /* so background and padding shrink to content */
  font-size: 2.2em;
  font-weight: 800;
  color: #ffffff;
  background-color: #00468c;       /* dark blue background */
  padding: 15px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease-in-out;
  cursor: default;
  animation: fadeInUp 1s ease forwards; /* entrance animation */
}

/* Hover effect */
.dynamic-h2:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Fade-in from bottom animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Center the block horizontally */
.dynamic-h2-container {
  text-align: center;
}

.flashing-text {
  font-weight: bold;
  font-size: 1.5em;
  color: #ff0000; /* rouge vif */
  text-align: center;
  animation: flash 2s infinite;
}

/* Animation de clignotement */
@keyframes flash {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}/* End custom CSS */