/* =========================================================
   SPEZIFISCHE HERO- & CONTENT-KOMPONENTEN
   ========================================================= */

/* Angepasstes CSS für die Navigation innerhalb des Heros */
.hero-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 0;
}
.hero-jump-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.hero-jump-nav a:hover { 
  color: #facc15; 
  border-bottom: 1px solid #facc15;
}

.speech-controls {
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
}
 
/* CSS für den blinkenden Play-Button (Gold-Ton passend zur Index) */
@keyframes blink-animation {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}
.is-playing {
  animation: blink-animation 1.5s infinite;
  color: #facc15 !important;
  border-color: #facc15 !important;
}

/* CSS für den aktuell vorgelesenen Textblock */
.is-reading-text {
  background-color: rgba(250, 204, 21, 0.15); /* Dezentes Gold */
  border-radius: 4px;
  transition: background-color 0.2s ease-in-out;
}

/* Styling für die Zurück-nach-oben Bereiche */
.back-to-top-wrapper {
  width: 100%;
  text-align: right;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Zieht den Hero direkt an die Unterkante des globalen Nav-Balkens */
main.verify-home {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
 
.verify-hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
