.elementor-1537 .elementor-element.elementor-element-1c69713{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-ac212dd *//* Section générique */
.cee-section {
  padding: 60px 0;
}

.cee-section--overview {
  background: #f9fcf6; /* fond très clair, proche de #d7f1ca mais plus doux */
}

/* Titre & sous-titre de section */
.cee-section__head {
  text-align: left;
  margin-bottom: 30px;
}

.cee-section__title {
  margin: 0 0 6px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2933;
}

.cee-section__subtitle {
  margin: 0;
  font-size: 0.98rem;
  color: #5b6a7b;
}

/* Grille de cartes */
.cee-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

/* Carte */
.cee-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 18px 20px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(125, 190, 42, 0.15); /* contour léger vert */
  position: relative;
  overflow: hidden;
}

.cee-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
    rgba(125, 190, 42, 0.12),
    transparent 60%);
  opacity: 0;
  transition: opacity 0.18s ease-out;
}

.cee-card:hover::before {
  opacity: 1;
}

.cee-card__label {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  margin-bottom: 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: #d7f1ca;
  color: #476524;
  font-weight: 600;
}

.cee-card__title {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 600;
  color: #1f2933;
}

.cee-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #4b5563;
}

/* CTA bandeau en bas de section */
.cee-section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #3498db; /* bleu principal cee-station */
  color: #ffffff;
}

.cee-section-cta__text {
  flex: 1 1 260px;
}

.cee-section-cta__text h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 600;
}

.cee-section-cta__text p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.92;
}

.cee-section-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Réutilisation des boutons du hero */
.cee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}

/* bouton principal (vert) avec petite ombre */
.cee-btn--primary {
  background: #7dbe2a;
  border-color: #6aa323;
  color: #ffffff;
}

.cee-btn--primary:hover {
  background: #6aa323;
  border-color: #59891d;
}

.cee-btn--shadow {
  box-shadow: 0 8px 18px rgba(69, 130, 18, 0.32);
}

.cee-btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.8);
  color: #ffffff;
}

.cee-btn--ghost:hover {
  background: rgba(255,255,255,0.12);
}

/* Responsive */
@media (max-width: 1024px) {
  .cee-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cee-overview-grid {
    grid-template-columns: 1fr;
  }

  .cee-section-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cee-section-cta__actions {
    width: 100%;
  }

  .cee-section-cta__actions .cee-btn {
    width: 100%;
    justify-content: center;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-b4cd450 *//* SECTION DETAILS (C’est quoi / C’est pour qui / Conditions) */
.cee-section--details {
  background: #ffffff;
}

/* Grille 2 colonnes responsive */
.cee-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.cee-details-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 20px 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(52, 152, 219, 0.18); /* léger bleu */
}

.cee-details-card__title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2933;
}

.cee-details-card__body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4b5563;
}

.cee-details-card__body p:last-child {
  margin-bottom: 0;
}

/* Bloc conditions */
.cee-conditions {
  margin-top: 10px;
  padding: 18px 20px 20px;
  border-radius: 18px;
  background: #f0f7ff;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

.cee-conditions__header h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2933;
}

.cee-conditions__header p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: #556375;
}

.cee-conditions__intro {
  font-size: 0.92rem;
  color: #374151;
  margin-bottom: 10px;
}

.cee-conditions__list {
  font-size: 0.92rem;
  color: #374151;
}

.cee-conditions__list ul {
  padding-left: 1.2rem;
  margin: 0;
}

.cee-conditions__list li {
  margin-bottom: 4px;
}

/* CTA bloc dans les conditions */
.cee-conditions__cta {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(52, 152, 219, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.cee-conditions__cta-text {
  font-size: 0.9rem;
  color: #1f2933;
  max-width: 420px;
}

.cee-conditions__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* variante de bouton ghost bleu */
.cee-btn--ghost-blue {
  background: transparent;
  border-color: #3498db;
  color: #3498db;
}

.cee-btn--ghost-blue:hover {
  background: rgba(52,152,219,0.08);
}

/* Responsive */
@media (max-width: 1024px) {
  .cee-details-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cee-section--details {
    padding: 40px 0;
  }

  .cee-details-card {
    padding: 18px 16px 20px;
  }

  .cee-conditions__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cee-conditions__cta-actions .cee-btn {
    width: 100%;
    justify-content: center;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-58bec26 *//* SECTION CALCUL DES CEE */
.cee-section--calcul {
  background: #f4f8fd; /* fond bleu très clair */
}

/* Layout : texte + colonne droite */
.cee-calcul-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 24px;
  margin-bottom: 26px;
  align-items: flex-start; /* on évite les colonnes de même hauteur forcée */
}

.cee-calcul-main,
.cee-calcul-aside {
  min-width: 0;
}

/* Colonne gauche */
.cee-calcul-main__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #374151;
}

.cee-calcul-main__text p:last-child {
  margin-bottom: 0;
}

/* Bloc formule */
.cee-formule {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px dashed rgba(52, 152, 219, 0.45); /* #3498db */
}

.cee-formule__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3498db;
  font-weight: 600;
  margin-bottom: 4px;
}

.cee-formule__body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  color: #111827;
}

/* Colonne droite : cartes */
.cee-calcul-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Cartes calcul (zones + facteurs) */
.cee-section--calcul .cee-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 16px 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(52, 152, 219, 0.25);
  height: auto;
  min-height: 0;
}

.cee-card__title-sm {
  margin: 0 0 10px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #1f2933;
}

/* Tableau zones */
.cee-zones-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.cee-zones-table th,
.cee-zones-table td {
  padding: 6px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.cee-zones-table thead {
  background: #3498db;
  color: #ffffff;
}

.cee-zones-table tbody tr:nth-child(even) {
  background: #d7f1ca; /* vert très clair cee-station */
}

/* Facteurs (contenu WYSIWYG) */
.cee-card--facteurs .cee-card__body {
  font-size: 0.9rem;
  color: #374151;
}

.cee-card--facteurs table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.cee-card--facteurs table th,
.cee-card--facteurs table td {
  padding: 5px 7px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

/* Variante CTA light sous la section calcul */
.cee-section-cta--light {
  background: #ffffff;
  border: 1px solid rgba(52, 152, 219, 0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .cee-calcul-layout {
    grid-template-columns: 1fr;
  }

  .cee-calcul-aside {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cee-section--calcul .cee-card {
    flex: 1 1 260px;
  }
}

@media (max-width: 640px) {
  .cee-section--calcul {
    padding: 40px 0;
  }

  .cee-calcul-aside {
    flex-direction: column;
  }

  .cee-section--calcul .cee-card {
    padding: 14px 12px 16px;
    flex: 1 1 auto;
    height: auto;
    min-height: 0;
  }
}


/* Correction : texte du CTA light dans section calcul */
.cee-section-cta--light .cee-section-cta__text h3,
.cee-section-cta--light .cee-section-cta__text p {
  color: #1f2933 !important; /* gris foncé */
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-31b169c *//* SECTION NORMES / DUREE / ATTESTATION */
.cee-section--normes {
  background: #ffffff;
}

/* Layout des 2 blocs (normes + durée) */
.cee-normes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 20px;
  margin-bottom: 26px;
}

/* Bloc générique */
.cee-normes-block {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #f9fcf6; /* léger rappel vert */
  border: 1px solid rgba(125, 190, 42, 0.18); /* #7dbe2a */
}

/* Badge rond à gauche (N / D) */
/* Icônes retirées → on harmonise les blocs */
.cee-normes-block {
  padding-left: 20px;
}

.cee-normes-block__content {
  width: 100%;
}


/* Contenu du bloc */
.cee-normes-block__content {
  flex: 1 1 auto;
}

.cee-normes-block__title {
  margin: 0 0 6px;
  font-size: 1.02rem;
  font-weight: 600;
  color: #1f2933;
}

.cee-normes-block__body {
  font-size: 0.94rem;
  line-height: 1.65;
  color: #4b5563;
}

.cee-normes-block__body p:last-child {
  margin-bottom: 0;
}

.cee-normes-block__note {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #6b7280;
  font-style: italic;
}

/* Couleurs spécifiques par type (optionnel si tu veux nuancer) */
.cee-normes-block--normes {
  border-color: rgba(52, 152, 219, 0.25); /* bleu */
}

.cee-normes-block--normes .cee-normes-block__icon {
  background: #3498db;
}

.cee-normes-block--duree .cee-normes-block__icon {
  background: #7dbe2a;
}

/* Bloc Attestation */
.cee-attestation {
  margin-top: 4px;
  padding: 18px 18px 20px;
  border-radius: 18px;
  background: #f0f7ff;
  border: 1px solid rgba(52, 152, 219, 0.3);
}

.cee-attestation__header h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2933;
}

.cee-attestation__header p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: #556375;
}

.cee-attestation__body {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #374151;
}

.cee-attestation__body p:last-child {
  margin-bottom: 0;
}

.cee-attestation__footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(52, 152, 219, 0.25);
  font-size: 0.88rem;
  color: #4b5563;
}

/* Responsive */
@media (max-width: 1024px) {
  .cee-normes-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .cee-section--normes {
    padding: 40px 0;
  }

  .cee-normes-block {
    padding: 14px 14px;
  }

  .cee-attestation {
    padding: 16px 14px 18px;
  }
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-1c23e53 *//*********************************************************
  SECTION TABLEAU RECAPITULATIF PAR SECTEUR — CEE-STATION
**********************************************************/

.cee-section--tableau {
  background: #ffffff;
  padding: 40px 0;
}

/*********************************************************
  INDICATEUR MOBILE AU-DESSUS DU TABLEAU
**********************************************************/

.cee-table-indicator {
  display: none;
  font-size: 0.8rem;
  color: #3498db;
  margin-bottom: 8px;
  padding-left: 4px;
  font-weight: 600;
}

/*********************************************************
  WRAPPER TABLEAU (PC + MOBILE)
**********************************************************/

.cee-table-wrapper {
  width: 100%;
  margin-top: 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f4f8fd;
  border: 1px solid rgba(52, 152, 219, 0.25);
  overflow: hidden;
}

/*********************************************************
  TABLEAU — STYLE GLOBAL (DESKTOP)
**********************************************************/

.cee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.cee-table th,
.cee-table td {
  padding: 10px 12px;
  text-align: left;
  white-space: nowrap;
}

/* En-tête */
.cee-table thead th {
  background: #3498db;
  color: #ffffff;
  font-weight: 600;
}

/* Lignes alternées */
.cee-table tbody tr:nth-child(even) {
  background: #f3f9f0;
}

/* Hover desktop */
.cee-table tbody tr:hover {
  background: #e8f4ff;
}

/*********************************************************
  LIENS
**********************************************************/

.cee-table a {
  color: #1f2937;
  font-weight: 600;
  text-decoration: underline;
}

.cee-table a:hover {
  color: #3498db;
}

@media (max-width: 768px) {

  .cee-section--tableau {
    padding: 32px 0;
  }

  /* Indicateur au-dessus */
  .cee-table-indicator {
    display: block;
    margin-bottom: 12px;
  }

  /* Wrapper simplifié */
  .cee-table-wrapper {
    padding: 0;
    border: none;
    background: transparent;
    overflow: visible;
  }

  /* Le tableau devient une liste de cartes */
  .cee-table {
    border-collapse: separate;
    border-spacing: 0 18px; /* espace entre cartes */
    font-size: 0.92rem;
  }

  /* On masque l'en-tête */
  .cee-table thead {
    display: none;
  }

  /* Chaque ligne = une carte */
  .cee-table tbody tr {
    display: block;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(52, 152, 219, 0.45); /* bleu bordure */
    padding: 16px 16px 10px;
    transition: background 0.25s ease, border-color 0.25s ease;
  }

  /* Hover tactile + esthétique */
  .cee-table tbody tr:active,
  .cee-table tbody tr:hover {
    background: rgba(52, 152, 219, 0.06); /* bleu très clair */
    border-color: #3498db;
  }

  /* Cellules verticales */
  .cee-table tbody td {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 4px;
    border-bottom: 1px solid rgba(52, 152, 219, 0.18);
    white-space: normal;
  }

  .cee-table tbody td:last-child {
    border-bottom: none;
    padding-bottom: 2px;
  }

  /* Labels */
  .cee-table tbody td::before {
    font-weight: 600;
    color: #2d6fa4; /* bleu plus sombre */
    flex: 0 0 auto;
    min-width: 130px; /* alignement propre */
  }

  .cee-table tbody td:nth-child(1)::before {
    content: "Sous-secteur : ";
  }

  .cee-table tbody td:nth-child(2)::before {
    content: "N° de la fiche : ";
  }

  .cee-table tbody td:nth-child(3)::before {
    content: "Nom de la fiche : ";
  }

  .cee-table tbody td:nth-child(4)::before {
    content: "Zone d’application : ";
  }

  .cee-table tbody td:nth-child(5)::before {
    content: "Arrêté associé : ";
  }

  /* Liens */
  .cee-table tbody td a {
    text-decoration: underline;
    font-weight: 600;
    color: #1f2937;
  }

  .cee-table tbody td a:hover {
    color: #3498db;
  }
}
@media (max-width: 768px) {
  .cee-table tbody tr {
    margin-bottom: 22px !important; /* espace entre les cartes */
  }
}/* End custom CSS */