/* Hinweis "Nur zum Test" global */
.nur-zum-test-hinweis {
  font-size: 1.05em;
  color: #fff;
  background: #eab308;
  border-radius: 6px;
  padding: 2px 14px;
  margin-top: 0.2em;
  margin-left: 0.2em;
  margin-bottom: 0;
  display: block;
  font-weight: 600;
  text-align: left;
  width: max-content;
  position: relative;
  left: 0.2em;
}
.nur-zum-test-hinweis-mobile {
  display: none;
}
@media (max-width: 600px) {
  .nur-zum-test-hinweis {
    display: none;
  }
  .nur-zum-test-hinweis-mobile {
    display: block;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    background: #ffe066;
    color: #222;
    border-radius: 6px;
    padding: 4px 18px;
    font-size: 1.08em;
    font-weight: 600;
    text-align: center;
    max-width: 220px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    z-index: 20;
  }
  .header-main {
    position: relative;
    min-height: 70px;
  }
}
