.single-formation-title{
  padding-left: 3rem;
}

.section-background{
    display: none;
}
.template-information-formation .wrapper-info-formation {
  display: grid;
  grid-template-columns: 1fr 30%;
  grid-template-rows: 1fr;
  gap: 10px 10px;
  padding: 1.5rem;
}

.template-information-formation .wrapper-info-formation .left {
  grid-area: 1 / 1 / 2 / 2;
  padding: 1.5rem;
}
.template-information-formation .wrapper-info-formation .left h1 {
  margin-bottom: 2rem;
}
/* ----------------------------------------- RESPONSIVE ----------------------------------------- */
@media screen and (max-width:768px) {
  
  .template-information-formation .wrapper-info-formation {
	display: flex;
	flex-direction: column-reverse;
}
}


/* ----------------------------------------- INTRO ----------------------------------------- */
.inner-intro-formation {
    padding: 2rem;
    margin-bottom: 2rem;
}
.inner-intro-formation.has-color {
    background-color:#f3f3fb;
}
/* ----------------------------------------- DEROULE DE LA FORMATION ----------------------------------------- */

.deroule-formation {
	padding: 2rem;
	background-color: #f3f3fb;
}

.deroule-formation h2 {
  margin-bottom: 3rem;
}

/* ----------------------------------------- INFORMATIONS COMPLEMENTAIRES ----------------------------------------- */
.additionnal-infos-formation{
    margin: 4rem 0;
}

.sub-details {
	border: 2px solid #E5E9F2;
	background: #fff;
}

.sub-details.space-bottom{
  margin-bottom: 1rem;
}
/* Enlève le marqueur natif */
.sub-details > summary {
  list-style: none;
}
.sub-details > summary::-webkit-details-marker {
  display: none;
}

/* Ligne d’entête */
.sub-details > summary {
  cursor: pointer;
  padding: 16px 56px 16px 16px; /* espace pour l’icône à droite */
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 52px;
}

/* Icône +/– à droite */
.sub-details > summary::after {
	content: "+";
	position: absolute;
	right: 16px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	border-radius: 6px;
	text-align: center;
	line-height: 26px;
	font-size: 3rem;
	font-weight: 700;
}

/* Etat ouvert : trait de séparation + icône “–” */
.sub-details[open] > summary {
  border-bottom: 1px solid #E5E9F2;
}
.sub-details[open] > summary::after {
  content: "–"; /* tiret long */
  line-height: 24px;
}

/* Contenu */
.details-content {
  padding: 14px 16px 18px;
  font-size: 0.95rem;
  color: #2E3A59;
}
.details-content ul {
  margin: 0.5rem 0 0 1.25rem;
}
.details-content li {
  margin: 4px 0;
}

/* Focus accessible */
.sub-details > summary:focus-visible {
  outline: 2px solid #4C8BF5;
  outline-offset: 3px;
  border-radius: 6px;
}

/* ----------------------------------------- CHIFFRES ----------------------------------------- */
.chiffres-formation{
  margin: 4rem 0;
}

.row-chiffres-formation {
	display: flex;
	gap: .5rem;
	align-items: center;
  margin-bottom: 1rem;
}

.row-chiffres-formation p {
  margin-bottom: 0;
}
/* ----------------------------------------- TEAM FORMATION ----------------------------------------- */
/* Grille de la section : 2 colonnes, grands espacements horizontaux */
.wrapper-team-formation{
  display:grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 28px 64px; /* row-gap / column-gap */
  align-items:start;
}

/* Un item = image + bloc texte */
.row-team-formation {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 16px;
	align-items: center;
}

/* Image carrée type vignette */
.img-team-formation {
	width: 96px;
	object-fit: cover;
}

/* Typo */
.team-name {
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.2;
	margin-bottom: 6px;
}
.team-role {
	font-size: 1rem;
	line-height: 1.35;
	color: #4A5A6A;
	text-transform: uppercase;
	font-weight: bold;
}

/* Réactivité : une seule colonne en mobile */
@media (max-width: 768px){
  .wrapper-team-formation{
    grid-template-columns: 1fr;
    gap:20px;
  }
  .row-team-formation{
    grid-template-columns: 84px 1fr;
    gap:14px;
  }
  .img-team-formation{
    width:84px;
  }
}


/* ----------------------------------------- SIDEBAR ----------------------------------------- */
.template-information-formation .wrapper-info-formation .right {
  grid-area: 1 / 2 / 2 / 3;
}
.template-information-formation .wrapper-info-formation .right .wrapper-sidebar {
    background-color: #070c4d;
	position: sticky;
    padding: 1.5rem;
	top: 10rem;
}
.template-information-formation .wrapper-info-formation .right h1 {
	color: #2bc2af;
	font-size: 1.5rem !important;
}
.template-information-formation .wrapper-info-formation .right .sidebar {
  color: #fff;
  font-size: 1.3rem;
}

.template-information-formation .wrapper-info-formation .right .sidebar .sidebar-row-info .info-title {
    display: flex;
}

.template-information-formation .wrapper-info-formation .right .sidebar .sidebar-row-info .info-title .sidebar-icon {
    margin-right: .75rem;
}
.template-information-formation .wrapper-info-formation .right .sidebar .sidebar-cta {
	margin: 4rem 0;
}
.template-information-formation .wrapper-info-formation .right .sidebar .sidebar-cta .cta-contact {
	padding: 1rem;
	border: solid 1px #2bc2af;
	color: #2bc2af;
}


