

/* 1200px Wrapper bereits vorhanden durch overlay-box */

/* Cards Wrapper */
.cards-wrapper {
  width: 100%;
  max-width: 1200px;    /* >>> exakt wie overlay-box */
  margin: 40px auto;
  z-index: 10;
  position: relative;
}

/* Card Style */
.full-card {
  position: relative;
  width: 100%;
  min-height: 700px;        /* sinnvoller Mindestwert */
  max-height: 1550px;       /* deine Vorgabe */
  background: #f5f5f5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* Hover Effekt */
.full-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(0,0,0,0.22);
}

/* Graubereich oben: beginnt bei 0%, gehen 25% nach unten,
   aber maximal 350px hoch */
.card-lower {
  position: absolute;
  top: 0;                           /* ★ beginnt ganz oben */
  left: 0;
  width: 100%;
  height: 25%;                      /* ★ 25% der Card */
  max-height: 350px;                /* ★ aber max. 350px */
  background: #dadada;              /* ★ gewünschte Farbe */
  padding: 26px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-lower h4 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #333;
}

.card-lower p {
  margin-bottom: 12px;
  color: #333;
}

/*.card-lower button {
  margin-top: 10px;
}*/
/* UNTERER BEREICH — card-content */
.card-content {
  position: absolute;
  top: 25%;
  padding: 40px 28px;
  width: 100%;
  height: 85%;
  overflow-y: auto; /* falls sehr viel Text enthalten ist */
  text-align: left; /* linksbündig */
}

.card-content h5 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.card-content p {
  color: #333;
  line-height: 1.5;
}
.pw {
    width: 250px;
    background: #333;
    color: #ffffff;
    text-align: center;
}