.cls-swiper {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.cls-role-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  color: #fff;
  border-radius: inherit;
  transition: all 0.4s ease;
  background: rgba(20,20,30,0.9);
  min-height: 500px;
  position: relative;
}

.cls-role-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
  z-index: -1;
}

.cls-role-card.reverse {
  direction: rtl;
}

.cls-role-card.reverse .cls-role-content {
  direction: ltr;
}

.cls-role-image {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100%;
}

.cls-role-image.align-top { align-items: flex-start; }
.cls-role-image.align-center { align-items: center; }
.cls-role-image.align-bottom { align-items: flex-end; }

.cls-role-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Textbereich */
.cls-role-content {
  display: flex;
  flex-direction: column;
  padding: 40px;
  height: 100%;
  justify-content: center;
}

.cls-role-content.align-top { justify-content: flex-start; }
.cls-role-content.align-center { justify-content: center; }
.cls-role-content.align-bottom { justify-content: flex-end; }

.cls-role-content h3 {
  color: #E86F51;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.cls-role-content p {
  font-size: 1.1em;
  color: #d1d5db;
  margin-bottom: 20px;
}

.cls-role-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cls-role-content ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  color: #ccc;
}

.cls-role-content ul li::before {
  content: "•";
  color: #E86F51;
  position: absolute;
  left: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #E86F51;
  transition: 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #fff;
}

@media(max-width: 768px) {
  .cls-role-card {
    grid-template-columns: 1fr;
    min-height: 400px;
  }
}
