/* ==========================================================
   COMPONENT: Hints
   Hinweisboxen und Infoboxen
   ========================================================== */

/* Allgemeine News-/Hinweisbox */
.news {
  background: #fff7e6;
  padding: 1rem;
  text-align: center;
  border-left: 4px solid #ffa500;
}

/* Galerie-/Hinweisbox */
.gallery-hint {
  margin: 18px auto 26px;
  max-width: 1200px;
  width: min(1200px, calc(100% - (var(--site-gutter) * 2)));
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
  text-wrap: pretty;
  display: grid;
  place-items: center;
}

.gallery-hint strong {
  font-weight: 700;
}

.gallery-hint > * {
  max-width: 78ch;
}

.gallery-hint a {
  white-space: nowrap;
}

/* Mobil */
@media (max-width: 480px) {
  .gallery-hint {
    font-weight: 400;
  }
}
