@charset "UTF-8";
/*
* -------------------------------------------------
* ------------- PAGE NOTRE HISTOIRE ---------------
* -------------------------------------------------
*/
body.page-template-page-notre-histoire section#section-histoire-timeline {
  background-color: #b8d97d;
  /* Ligne centrale */
  /* Grille de contenu */
  /* Cartes */
  /* ≤ 992px : colonne centrale plus fine + labels rapprochés */
  /* ≤ 768px : pile verticale, ligne à gauche, dot+label en ligne */
  /* ≤ 420px : micro-ajustements */
}
body.page-template-page-notre-histoire section#section-histoire-timeline .section-title {
  text-align: center;
  margin-bottom: 75px;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-container {
  position: relative;
  padding: 10px 0 10px;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-line .timeline-track,
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-line .timeline-progress {
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: 4px;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-line .timeline-track {
  top: 0;
  bottom: 0;
  background: #1e1e1e;
  opacity: 0.15;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-line .timeline-progress {
  top: 0;
  height: 0%;
  background: #1d665d;
  transition: height 0.15s linear;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  row-gap: 80px;
  column-gap: 30px;
  position: relative;
  z-index: 1;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-row {
  display: contents;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.left, body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.right {
  align-self: stretch;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.center .timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #1d665d;
  box-shadow: 0 0 0 3px #ffffff, 0 0 0 6px rgba(0, 0, 0, 0.06);
  z-index: 2;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.center .timeline-label {
  position: absolute;
  font-size: 1rem;
  color: #0F332F;
  min-width: 100px;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.center .timeline-label.left {
  right: 70px;
  text-align: right;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.center .timeline-label.right {
  left: 70px;
  text-align: left;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 18px 22px;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-card .card-image {
  width: 200px;
  margin-bottom: 15px;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-card .card-header {
  margin-bottom: 6px;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-card .card-header .card-title {
  color: #0F332F;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-card .card-body p {
  margin-bottom: 0;
  color: #0F332F;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-card .card-body a {
  color: #1d665d;
  text-decoration: none;
}
body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-card .card-body a:hover {
  text-decoration: underline;
}
@media (max-width: 992px) {
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-grid {
    grid-template-columns: 1fr 60px 1fr;
    row-gap: 56px;
    column-gap: 24px;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.center .timeline-label {
    font-size: 0.95rem;
    min-width: 80px;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.center .timeline-label.left {
    right: 56px;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.center .timeline-label.right {
    left: 56px;
  }
}
@media (max-width: 768px) {
  body.page-template-page-notre-histoire section#section-histoire-timeline {
    /* Ligne verticale fixée à gauche */
    /* La colonne “centre” devient un petit bloc (dot + label) avant chaque carte */
    /* Les cartes prennent toute la largeur, avec un retrait à gauche pour la ligne */
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-grid {
    grid-template-columns: 1fr;
    /* 1 colonne: les cartes empilées */
    row-gap: 36px;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-line {
    left: 22px;
    transform: none;
    width: 3px;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-row.timeline-row-content-left .timeline-col.right {
    display: none;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-row.timeline-row-content-right .timeline-col.left {
    display: none;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.center {
    grid-column: 1/-1;
    display: flex;
    flex-direction: row;
    /* ✅ Dot + label sur la même ligne */
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 24px;
    /* garde un peu d’air */
    /* Le label n'est plus en absolute en mobile */
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.center .timeline-dot {
    width: 12px;
    height: 12px;
    border-width: 2px;
    margin-left: 0;
    flex: 0 0 auto;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.center .timeline-label {
    position: static !important;
    min-width: 0;
    font-size: 0.9rem;
    color: #BEBEBE;
    text-align: left !important;
    margin: 0;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.left,
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.right {
    grid-column: 1/-1;
    margin-left: 52px;
    /* espace entre ligne et cartes */
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-card {
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 -4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 4px;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-card .card-image {
    width: 160px;
    max-width: 60%;
    margin-bottom: 12px;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-card .card-header .card-title {
    font-size: 1.05rem;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-card .card-body p {
    font-size: 0.95rem;
  }
}
@media (max-width: 420px) {
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-line {
    left: 18px;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.left,
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.right {
    margin-left: 46px;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-col.center .timeline-label {
    font-size: 0.85rem;
  }
  body.page-template-page-notre-histoire section#section-histoire-timeline .timeline-card .card-image {
    width: 140px;
  }
}

/*
* -------------------------------------------------
* --------------- PAGE INVESTISSEURS --------------
* -------------------------------------------------
*/
body.page-template-page-investisseurs section#section-investisseurs {
  padding-top: 0;
}
body.page-template-page-investisseurs section#section-investisseurs .investisseur:not(:last-child) {
  margin-bottom: 50px;
}
body.page-template-page-investisseurs section#section-investisseurs .investisseur .col-logo .logo-inner {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #F3F3F3;
}
body.page-template-page-investisseurs section#section-investisseurs .investisseur .col-logo .logo-inner .investisseur-logo {
  display: block;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
body.page-template-page-investisseurs section#section-investisseurs .investisseur .col-logo .logo-inner .investisseur-logo img {
  width: 100%;
}
body.page-template-page-investisseurs section#section-investisseurs .investisseur .col-content .content-inner {
  padding: 30px;
  border-radius: 15px;
}

@media (max-width: 768px) {
  body.page-template-page-investisseurs section#section-investisseurs .investisseur .col-logo .logo-inner {
    border-radius: 15px 15px 0 0;
  }
  body.page-template-page-investisseurs section#section-investisseurs .investisseur .col-content .content-inner {
    border-radius: 0 0 15px 15px;
  }
}
/*
* -------------------------------------------------
* -------- PAGE RECHERCHE ET DÉVELOPPEMENT --------
* -------------------------------------------------
*/
@media (max-width: 992px) {
  body.page-template-page-recherche-developpement section.section-image-texte:not(:last-child) {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  body.page-template-page-recherche-developpement section.section-image-texte .section-inner .col-image {
    display: none;
  }
}
/*
* -------------------------------------------------
* ------------------ PAGE EQUIPE ------------------
* -------------------------------------------------
*/
body.page-template-page-equipe section.section-equipe .section-inner .section-title {
  text-align: center;
  margin-bottom: 0;
}
body.page-template-page-equipe section.section-equipe .section-inner .team-member {
  border-radius: 10px;
  border: 1px solid #F3F3F3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
}
body.page-template-page-equipe section.section-equipe .section-inner .team-member .content-container {
  padding: 15px;
}
body.page-template-page-equipe section.section-equipe .section-inner .team-member .content-container .member-fonction {
  display: block;
  font-weight: 600;
  margin-bottom: 15px;
}
body.page-template-page-equipe section.section-equipe .section-inner .team-member .content-container .member-bio * {
  font-size: 0.875rem;
  letter-spacing: 0.5px;
}
body.page-template-page-equipe section.section-equipe .section-inner .team-member .content-container .linkedin-link i.fab.fa-linkedin {
  width: fit-content;
  font-size: 30px;
}

/*# sourceMappingURL=a-propos.css.map */
