/* Small contextual link used on landing pages that have a matching flyer
   (see FLYER-ENTWUERFE.md / FlyerController). Shared by ~10 pages, kept as
   its own tiny file rather than duplicated inline. */
.flyer-crosslink-wrap {
  text-align: center;
  padding: 0 20px 60px;
}

.flyer-crosslink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65) !important;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 10px 20px;
  transition: color 0.2s, border-color 0.2s;
}
.flyer-crosslink:hover {
  color: #fff !important;
  border-color: rgba(30, 136, 229, 0.5);
}
.flyer-crosslink svg { flex-shrink: 0; }
