.hero h1 {
    font-size: 1.8rem; /* oder 1.6rem, 1.4rem – je nachdem, wie klein es sein soll */
}

.design-hinweis.fancy {
  background-color: #626262;
  color: #ffffff;
  padding: 12px 18px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 26px; /* etwas mehr Platz für den Lichtschein */
  font-style: italic;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  animation: pulse 3s ease-in-out infinite;
  letter-spacing: 0.5px;
  position: relative; /* wichtig für das Licht */
}

/* Heller Lichtschein unter der Box */
.design-hinweis.fancy::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px; /* Abstand unterhalb */
  transform: translateX(-50%);
  width: 65%;
  height: 14px;

  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.18) 40%,
    rgba(255, 255, 255, 0) 85%
  );

  filter: blur(4px);
  animation: lightPulse 4s ease-in-out infinite;
  pointer-events: none;
}

/* Dein bestehender Pulse-Effekt */
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Sanftes Pulsieren des Lichtes */
@keyframes lightPulse {
  0%, 100% {
    opacity: 0.55;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.08);
  }
}
 .boxed p {
  text-align: left; /* Mobil Standard */
}

@media (min-width: 768px) {
  .boxed p {
    text-align: justify;
    hyphens: auto;
  }
}
