/* =============================================================
   section-user.css – Zielgruppenbereich für Wer kommt, verliert
   ============================================================= */

#wkv-user-section {
  background-color: #1a1a1a;
  padding: 6rem 5%;
}

.wkv-spotlight-section {
  position: relative;
  padding: 5rem 0;
}

.wkv-spotlight-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1280px;
  margin: 0 auto;
}

.wkv-spotlight-section--reverse .wkv-spotlight-container {
  flex-direction: row-reverse;
}

.wkv-spotlight-image, .wkv-spotlight-text {
  flex: 1;
  min-width: 0;
}

.wkv-spotlight-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.wkv-spotlight-text h3 {
  font-family: 'Yeseva One', serif;
  font-size: 2rem;
  color: #bfa255;
  margin: 0 0 1.5rem 0;
}

.wkv-spotlight-text p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
}

.wkv-spotlight-cta-area {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(191, 162, 85, 0.2);
}

.wkv-cta-intro {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #cccccc;
  opacity: 0.8;
  display: block;
  margin-bottom: 1rem;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .wkv-spotlight-container {
    flex-direction: column;
    gap: 2rem;
  }

  .wkv-spotlight-section--reverse .wkv-spotlight-container {
    flex-direction: column;
  }

  .wkv-spotlight-text h3 {
    text-align: center;
  }

  .wkv-spotlight-text p,
  .wkv-spotlight-cta-area {
    text-align: center;
  }
}
