/* Structure de page : en-tête | main | pied de page */

#main-content {
  display: flex;
  flex-flow: column;
  align-items: center;
  width: 100%;
  flex: 1 0 auto;
}

/* Compense la barre de navigation fixe sur la première section du contenu */
.mceRuntime #root [data-js-target="headerWithNav"] + #main-content > .mceRow:first-child > div:first-child,
.wink .mceRuntime #root [data-js-target="headerWithNav"] + #main-content > .mceRow:first-child > div:first-child {
  padding-top: var(--paddingAdjustFirstSection);
}

/* #root doit grandir avec le contenu, pas rester bloqué à 100vh */
.mceRuntime #root,
.wink .mceRuntime #root {
  height: auto;
}
