/* ====================
SETCARD CLASS SINGLE - die NORMALE STEINZEIT FLOAT VARIANTE
===================== * /
/* --- SETCARD WRAPPER --- */
.setcard-single {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 20px;
  background: #121212;
  border-radius: 12px;
  border: 2px solid #333;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

/* --- TEXTUMFLUSS (FLOAT) + HOVER EFFECTS --- */
.setcard-single-content img {
  float: left;
   width: 40%;              /*  Hauptregel */
  max-width: 40%;          /* Sicherheit */
  aspect-ratio: auto;      /* bleibt flexibel */
  margin: 0 18px 14px 0;
  border-radius: 12px; 
  border: 1px solid #333333;

  /* Hover-Animationen */
  transition: 
    transform 0.35s ease,
    filter 0.35s ease,
    box-shadow 0.35s ease;
  transform-origin: center center;
}

/* Hover: sanfter Zoom + Glow */
.setcard-single-content img:hover {
  transform: scale(1.05);
  filter: brightness(1.08);

  box-shadow:
    0 0 12px #ff00cc,
    0 0 24px #ff00cc,
    0 0 48px rgba(255, 0, 204, 0.7);
  border: 2px solid #ffff00;
}

/* --- CLEARFIX --- */
.setcard-single-content::after {
  content: "";
  display: block;
  clear: both;
}

/* --- TEXT --- */
.setcard-single-content h3 {
  text-align: left;
  color: #ffff00;
  padding: 0;
  margin: 0;
  font-size: 1.4rem;
}

.setcard-single-content h4.glow{
text-align: left;
color:white;
padding:0;
margin:0;
font-size:1.3em;
text-shadow:0 0 10px #fff,0 0 20px #fff,0 0 30px #e60073,0 0 40px #e60073,0 0 50px #e60073,0 0 60px #e60073,0 0 70px #e60073;
}


.subtitel {
  font-size: 1.0rem;
  line-height: 1.55;
  color: #ff00cc;
  margin-bottom: 10px;
}

.setcard-single-content .profiltext {
  line-height: 1.55;
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 0;font-weight:700;
}

/* --- FOOTER + BUTTON --- */
.setcard-footer {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

/* --- CTA BUTTON (unverändert) --- */
.cta-btn.ghostmagenta-doublebeat {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  border: 2px solid #ff00e6;
  border-radius: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-decoration: none;
  box-shadow:
    0 0 10px rgba(255, 0, 230, 0.7),
    0 0 22px rgba(255, 0, 230, 0.4),
    inset 0 0 4px rgba(255, 0, 230, 0.25);
  animation: doubleHeartbeat 1.6s infinite ease-in-out;
  transition: all .22s ease-out;
}

.cta-btn.ghostmagenta-doublebeat:hover {
  background: rgba(255, 0, 230, 0.15);
  border-color: #ff4dff;
  box-shadow:
    0 0 22px rgba(255, 0, 230, 1),
    0 0 48px rgba(255, 0, 230, 0.95),
    0 0 90px rgba(255, 0, 230, 0.8),
    0 0 140px rgba(255, 0, 230, 0.6),
    inset 0 0 32px rgba(255, 0, 230, 0.85);
  transform: scale(1.14);
}

/* --- RESPONSIVE: Float deaktivieren --- */
@media (max-width: 800px) {
  .setcard-single-content img {
    float: none;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 20px 0;
  }
}


/* Pulsierender Button */
.pulse-button {
  align-self: center;
  background-color: #222;
  color: white;
  padding: 8px 28px;
  border: 1px solid #ff8800;
  border-radius: 10px;
  animation: pulse 1.5s infinite;
  word-wrap: break-word;
}

a.pulse-button { color: white; font-weight: 700; }

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 51, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 51, 102, 0); }
}

.setcard-box:hover .pulse-button {
  background-color: #fff176;
  border-color: #d32f2f;
  color: green;
  font-weight: 700;
  box-shadow: 0 0 8px rgba(211, 47, 47, 0.4);
}