/* Overlay-Link "Naechster Case": gruener Pfeil auf dem letzten Bild einer Case-Seite,
   verlinkt zum naechsten Projekt (siehe hochbahn-hamburg-familienfest.html,
   hochbahn-u5-kampagne.html, amrumzeit.html, klee.html) */
.next-case-panel {
  position: relative;
}
.next-case-link {
  position: absolute;
  right: 6%;
  bottom: 6%;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  z-index: 2;
}
.next-case-link .next-case-label {
  color: #03ff00;
  font-family: "AvenirLTStd-Book", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  white-space: nowrap;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75), 0 0 14px rgba(0, 0, 0, 0.4);
}
.next-case-link .next-case-arrow {
  width: 22%;
  min-width: 44px;
  max-width: 108px;
  height: auto;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}
.next-case-link:hover .next-case-arrow {
  transform: translateX(6px);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}
@media (max-width: 640px) {
  .next-case-link .next-case-label {
    font-size: 0.875rem;
  }
  .next-case-link .next-case-arrow {
    min-width: 36px;
  }
  .next-case-link {
    gap: 8px;
    right: 5%;
    bottom: 5%;
  }
}
