h2,
h3,
h4,
p {
  padding: 0;
  margin: 0;
}

.niveaux {
  padding: 0 var(--gouttiere) 48px;
}
.niveaux .contenu-section {
  display: flex;
  flex-direction: column;
}
.niveaux .contenu-section h2 {
  margin: 24px 0;
  font-size: 1.75rem;
  line-height: 2.25rem;
}
.niveaux .contenu-section h3 {
  margin-top: 24px;
  font-size: 1.125rem;
  line-height: 1.5rem;
}
.niveaux .contenu-section p {
  padding: 16px 0 32px;
}
.niveaux .contenu-section .description {
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin-bottom: 0;
}
.niveaux .contenu-section .details p {
  border-bottom: 1px solid var(--border-default-grey);
}

.selecteurs {
  position: sticky;
  top: 0;
  background: white;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  padding: 24px 0;
  z-index: 10;
}
@media (min-width: 440px) {
  .selecteurs {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 576px) {
  .selecteurs {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
  }
}
.selecteurs select:nth-of-type(2) {
  display: none;
}
@media (min-width: 440px) {
  .selecteurs select:nth-of-type(2) {
    display: block;
  }
}
.selecteurs select:nth-of-type(n + 3) {
  display: none;
}
@media (min-width: 576px) {
  .selecteurs select:nth-of-type(n + 3) {
    display: block;
  }
}

.grille-haute {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  grid-template-rows: 220px 1fr;
}
@media (min-width: 440px) {
  .grille-haute {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 576px) {
  .grille-haute {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
  }
}
.grille-haute .illustration {
  margin-top: 24px;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}
.grille-haute .illustration:nth-of-type(2) {
  display: none;
}
@media (min-width: 440px) {
  .grille-haute .illustration:nth-of-type(2) {
    display: flex;
  }
}
.grille-haute .illustration:nth-of-type(n + 3) {
  display: none;
}
@media (min-width: 576px) {
  .grille-haute .illustration:nth-of-type(n + 3) {
    display: flex;
  }
}
.grille-haute .illustration:after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 13px;
  border: 1px solid #0d0c21;
  left: 0;
  right: 0;
}
.grille-haute .illustration img {
  flex: 0;
  z-index: 2;
  height: 220px;
}
.grille-haute p:nth-of-type(2) {
  display: none;
}
@media (min-width: 440px) {
  .grille-haute p:nth-of-type(2) {
    display: block;
  }
}
.grille-haute p:nth-of-type(n + 3) {
  display: none;
}
@media (min-width: 576px) {
  .grille-haute p:nth-of-type(n + 3) {
    display: block;
  }
}

.detail {
  display: grid;
  grid-template-rows: auto;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 440px) {
  .detail {
    grid-template-columns: repeat(2, minmax(50px, 1fr));
  }
}
@media (min-width: 576px) {
  .detail {
    grid-template-columns: repeat(5, minmax(50px, 1fr));
  }
}
.detail h3 {
  grid-column: 1/-1;
}
.detail p:nth-of-type(2) {
  display: none;
}
@media (min-width: 440px) {
  .detail p:nth-of-type(2) {
    display: block;
  }
}
.detail p:nth-of-type(n + 3) {
  display: none;
}
@media (min-width: 576px) {
  .detail p:nth-of-type(n + 3) {
    display: block;
  }
}

/*# sourceMappingURL=niveaux-maturite.css.map */