@charset "UTF-8";
html {
  font-size: 16px;
  /* 1rem = 16px */
}

.indusCommentsBloc {
  display: flex;
  flex-direction: column;
  height: 26rem;
  width: 64rem;
  margin-right: 2vw;
  margin-top: 4vh;
  padding: 1rem;
  overflow: hidden; /* Masque les barres de défilement */
  position: relative;
}
.indusCommentsBloc::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto; /* Permet le défilement vertical */
  padding-right: 1rem; /* Ajuste pour éviter le débordement */
}
.indusCommentsBloc h2 {
  font-size: 1.5rem;
}
.indusCommentsBloc .commentaire {
  display: flex;
  flex-direction: column;
  border-bottom: solid 1rem #81A1B8;
}

@media (min-width: 2880px) {
  .indusCommentsBloc {
    width: 46rem;
  }
}/*# sourceMappingURL=indusCommentsBloc.css.map */