.section.ueber-uns {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background-color: #1b1b1b;
  color: #eee;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.section.ueber-uns h1 {
  color: #ffd700;
  font-family: 'Cinzel', serif;
  margin-bottom: 1rem;
}

.section.ueber-uns h2 {
  color: #ffd700;
  font-family: 'Cinzel', serif;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: left;
}

.uebermich-zweiter-abschnitt p {
  line-height: 1.4;
  margin-bottom: 1rem;
}

.section.ueber-uns p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* === Layout mit Text links und Slider rechts === */
.uebermich-einleitung {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.uebermich-text {
  flex: 1 1 60%;
}

.slider-box {
  flex: 1 1 35%;
  max-width: 300px;
  margin-top: 0;
  position: relative;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-image {
  min-width: 100%;
  display: none;
  object-fit: cover;
  border-radius: 10px;
}

.slider-image.active {
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-btn:hover {
  background: rgba(0,0,0,0.7);
}

/* Bildüberschrift (optional) */
.foto-beschriftung {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.5rem;
  text-align: center;
}

/* === Mobile Anpassung === */
@media (max-width: 768px) {
  .uebermich-einleitung {
    flex-direction: column;
  }

  .slider-box {
    max-width: 100%;
    margin: 1rem auto;
  }

  .uebermich-text {
    flex: 1 1 100%;
  }
}
