/* ─────────────────────────────────────────
   STUDIO CARDS — nur was es noch nicht gibt
   ───────────────────────────────────────── */

/* "In Vorbereitung" Badge — light background (Standard) */
.cards-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(201,168,0,0.07);
  border: 1px solid rgba(201,168,0,0.22);
  padding: 5px 12px 5px 10px;
  margin-bottom: 36px;
}

/* Badge auf dunklem HSM-Hintergrund: rot für Status-Kommunikation */
.hsm-outer .cards-status-badge {
  color: var(--coral);
  background: rgba(232,85,85,0.10);
  border-color: rgba(232,85,85,0.30);
  margin-bottom: 0;
}
.hsm-outer .cards-status-dot { background: var(--coral); }

.cards-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  animation: status-pulse 2.4s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ─────────────────────────────────────────
   PICTURE-IDEA-CARD KOMPONENTE
   Genuinely new — kein Pendant in style.css
   ───────────────────────────────────────── */

.pic-card {
  background: #fff;
  border: 1px solid var(--border);
  max-width: 700px;
  box-shadow: 0 2px 20px rgba(11,28,38,0.06);
}

/* Farbbalken oben — Canvas-Kategorie-Farbe per Inline-Style */
.pic-card-bar {
  height: 4px;
  width: 100%;
}

.pic-card-body {
  padding: 32px 36px 36px;
}

/* Kategorie-Pills — ähnlich .card-cat aber als Badges */
.pic-card-cats {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pic-card-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid currentColor;
  opacity: 0.75;
}

.pic-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 30px);
  color: var(--night);
  line-height: 1.15;
  margin-bottom: 10px;
}

.pic-card-short-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(11,28,38,0.6);
  margin-bottom: 28px;
}

/* Challenge-Block — analog zu .pic-quote, aber kein italic */
.pic-card-challenge {
  border-left: 3px solid var(--yellow);
  padding: 20px 24px 20px 24px;
  background: rgba(201,168,0,0.06);
  margin-bottom: 20px;
}

.pic-card-challenge-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  display: block;
  margin-bottom: 10px;
}

.pic-card-challenge-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  color: var(--night);
  margin: 0;
}

/* Hint Toggle */
.pic-card-hint {
  border: 1px solid var(--border);
  margin-bottom: 28px;
  overflow: hidden;
}

.pic-card-hint-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(11,28,38,0.45);
  text-align: left;
  transition: background 0.15s, color 0.15s;
}

.pic-card-hint-toggle:hover {
  background: var(--surface);
  color: var(--night);
}

.pic-card-hint-arrow {
  transition: transform 0.25s ease;
  font-size: 13px;
}

.pic-card-hint.is-open .pic-card-hint-arrow {
  transform: rotate(180deg);
}

.pic-card-hint-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.pic-card-hint.is-open .pic-card-hint-body {
  max-height: 300px;
}

.pic-card-hint-text {
  padding: 4px 18px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(11,28,38,0.7);
  font-style: italic;
  margin: 0;
}

/* Hintergrund-Content */
.pic-card-content {
  border-top: 1px solid var(--border-light);
  padding-top: 24px;
}

.pic-card-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--night);
  margin: 18px 0 6px;
}

.pic-card-content h3:first-child { margin-top: 0; }

.pic-card-content p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.72;
  color: rgba(11,28,38,0.7);
  margin-bottom: 10px;
}

.pic-card-content ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.pic-card-content li {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: rgba(11,28,38,0.7);
  margin-bottom: 5px;
}

/* Tags */
.pic-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.pic-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(11,28,38,0.35);
  background: var(--surface);
  padding: 3px 9px;
}

/* ─────────────────────────────────────────
   ZWEI-KARTEN-GRID
   ───────────────────────────────────────── */

.pic-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* Mobile-Expand-Button — nur auf kleinen Screens sichtbar */
.pic-card-expand-btn {
  display: none; /* Desktop: versteckt */
}

/* Collapsible body — Desktop: immer sichtbar */
.pic-card-collapsible-body {
  /* kein overflow/max-height auf Desktop */
}

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */

@media (max-width: 767px) {
  .pic-cards-grid { grid-template-columns: 1fr; }
  .pic-card-body  { padding: 24px 20px 28px; }

  /* Mobile: Expand-Button einblenden */
  .pic-card-expand-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 0;
    margin: 4px 0 0;
    background: none;
    border: none;
    border-top: 1px solid var(--border-light);
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(11,28,38,0.45);
    text-align: left;
    transition: color 0.15s;
  }
  .pic-card-expand-btn:hover { color: var(--night); }

  .pic-card-expand-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
    font-size: 13px;
  }

  /* Mobile: collapsible body collapsed by default */
  .pic-card-collapsible-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .pic-card.is-expanded .pic-card-collapsible-body {
    max-height: 3000px;
  }

  .pic-card.is-expanded .pic-card-expand-arrow {
    transform: rotate(180deg);
  }
}

@media (max-width: 600px) {
  .pic-card-body { padding: 20px 18px 24px; }
}
