.bandeau {
  background-color: hsl(var(--primary-300));
  padding: 15px 10px;
}

.bandeau.Myrtille {
  background: linear-gradient(160deg, #a896ff 0%, #322ccc 100%);
  color: hsl(var(--light));
}

.bandeau.Citron {
  background: linear-gradient(323deg, #5ae1ff 0%, #ffec9d 66%);
  color: #013845;
}

.bandeau.Lac {
  background: rgb(179,163,255);
  background: linear-gradient(176deg, #cac5ff 0%, #008dd6 100%);
  color: hsl(var(--light));
}

.bandeau.Guimauve {
  background: linear-gradient(160deg, #e4ccff 42%, #afbaff 100%);
  color: #2a1e6f;
}

.bandeau .wrapper {
  max-width: 1024px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}

.bandeau p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.bandeau .wrapper:before {
  content: attr(data-emoji-gauche);
  display: inline-block;
  margin-right: 10px;
}

.bandeau.admin {
  transform: translateY(32px);
}

.bandeau .button-ribon {
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-self: center;
  margin-left: 10px;
  text-decoration: underline;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .bandeau.admin {
    transform: translateY(32px);
  }

  .bandeau .wrapper {
    font-size: 13px;
    line-height: 1.2;
  }
}