.hero-button-row {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding-left: 2rem;
}

/* Button-Layout */
.hero-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 500px;
  height: 75px;
  position: relative;
  border-radius: 0.5rem;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}
/* Hover-Effekt: leichtes Anheben */
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Klick-Effekt (optional bei aktivem Klick) */
.hero-btn:active {
  transform: scale(0.98);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

/* Gesamtbild leicht abdunkeln */
.hero-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 0.5rem;
}

/* Textcontainer über dem Bild */
.hero-btn-label {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem 1.2rem;
  border-radius: 0.4rem;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

