/* ── GUIDE CARDS — pwi-guides.php ──────────────────────────────────── */
.guides-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 70px;
  position: relative;
  z-index: 1;
}
.guide-section { margin-bottom: 44px; }
.guide-section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-left: 2px solid var(--gold-dim);
  padding-left: 10px;
  margin-bottom: 14px;
}
.guides-wrap .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* Placeholder-Kachel */
.guide-card-placeholder {
  border-style: dashed;
  border-color: rgba(201,168,76,.18);
  opacity: 0.42;
  pointer-events: none;
  cursor: default;
}
.guide-card-placeholder:hover { transform: none; border-color: rgba(201,168,76,.18); }
.guide-card-placeholder::before { display: none; }
.guide-card {
  background: var(--bg-card);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px;
  padding: 20px 22px 16px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s, transform 0.15s;
}
.guide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.guide-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.guide-card:hover::before { opacity: 1; }
.guide-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.gc-icon { font-size: 1.5rem; line-height: 1; }
.gc-title {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.gc-body {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
  flex: 1;
  text-align: justify;
}
.gc-hint {
  font-family: 'Cinzel', serif;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--gold-dim);
  margin-top: 6px;
  opacity: 0.7;
}
.guide-card:hover .gc-hint { color: var(--gold); opacity: 1; }

.guides-wrap .intro-box {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.65;
  text-align: justify;
}
.guides-wrap .intro-box strong { color: var(--gold-light); }

/* ── GUIDES TOC ─────────────────────────────────────────────────────── */
.guides-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.guides-toc-link {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  text-decoration: none;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.guides-toc-link:hover { color: var(--gold); border-color: rgba(201,168,76,.35); }
.guides-toc.hidden { display: none; }

@media (max-width: 900px) {
  .guides-wrap .cards-grid { grid-template-columns: repeat(2, 1fr); }
  /* Placeholder auf Tablet ausblenden — 2 echte Kacheln füllen die Zeile */
  .guide-card-placeholder { display: none; }
}
@media (max-width: 600px) {
  .guides-wrap .cards-grid { grid-template-columns: 1fr; }
}
