/* Episoden Pfeil + Linie */
.episoden-pfeil-container {
  /*max-width: 800px;*/
  width: 100%;
  margin: auto;
  text-align: center;
}

.episoden-pfeil-links-rechts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.episoden-pfeil-seite a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  transition: color 0.3s;
  transform: none; /* Keine Skalierung */
}

.episoden-pfeil-seite a:hover {
  color: #666666; /* kräftiges Grau */
  cursor: pointer;
  transform: none; /* Sicherstellen, dass keine Skalierung stattfindet */
}

.episoden-pfeil {
  font-size: 18px;
  line-height: 1;
  transition: color 0.3s;
}

.episoden-pfeil-seite a:hover .episoden-pfeil {
  color: #666666;
}

.episoden-linie {
  height: 1px;
  background-color: #ccc;
  width: 100%;
}