/* ═══════════════════════════════════════════════════════
   BEEN THERE – DONE THAT.
   Erfahrungsberichte von Chris
   ═══════════════════════════════════════════════════════ */

.sm-wrap {
  padding: var(--space-lg) var(--space-md) var(--space-md);
}

/* ─── Hero ─── */
.sm-hero {
  text-align: left;
  margin-bottom: var(--space-xl);
}

.sm-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}

.sm-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-white);
  margin: 0 0 var(--space-md);
}

.sm-title em {
  font-style: italic;
  color: var(--c-gold-light);
}

.sm-intro {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.65;
  color: var(--c-text-muted);
  max-width: 44ch;
  margin: 0;
}

.sm-intro + .sm-intro {
  margin-top: var(--space-sm);
}

/* ═══════════════════════════════════════════════════════
   REPORT (full article layout)
   ═══════════════════════════════════════════════════════ */

.sm-report {
  margin-bottom: var(--space-xl);
}

/* ─── Report Header ─── */
.sm-report__header {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.sm-report__header .sm-card__icon {
  margin-bottom: var(--space-md);
}

.sm-report__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 6vw, 2.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--c-white);
  margin: 0;
}

/* ─── Autorenzeile ─── */
.sm-report__author {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--c-text-muted);
  margin: 0;
}

.sm-report__author-name {
  color: var(--c-white);
  font-weight: 400;
}

.sm-report__author-role::before {
  content: '·';
  margin: 0 0.5em;
  color: var(--c-gold);
}

/* ─── Pull-Quote (frei stehend, Magazin-Stil) ─── */
.sm-pullquote {
  position: relative;
  text-align: center;
  padding: var(--space-xl) var(--space-sm);
  margin: 0 0 var(--space-xl);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--c-gold-light);
  border: none;
}

.sm-pullquote__mark {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 12vw, 5rem);
  font-weight: 300;
  line-height: 0.6;
  color: var(--c-gold);
  opacity: 0.3;
  margin-bottom: var(--space-sm);
}

/* ─── Einleitung (frei, keine Card) ─── */
.sm-report__intro {
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.sm-report__intro p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin: 0;
}

.sm-report__intro p + p {
  margin-top: var(--space-sm);
}

/* ─── Trennlinie (identisch mit .divider auf Wissenschaft) ─── */
.sm-divider {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--c-gold) 50%,
    transparent 100%
  );
  opacity: 0.15;
  margin: var(--space-lg) 0;
}

/* ─── Content Cards (Abschnitte) ─── */
.sm-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: var(--space-lg) var(--space-md);
  transition: border-color 0.3s var(--ease);
}

.sm-card:hover {
  border-color: rgba(156, 126, 81, 0.18);
}

.sm-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(184, 148, 79, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.sm-card__subtitle {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--c-white);
  margin: 0 0 var(--space-sm);
}

.sm-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--c-white);
  margin: 0 0 var(--space-xs);
}

.sm-card__text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-text-muted);
  margin: 0;
}

.sm-card__text + .sm-card__text {
  margin-top: var(--space-sm);
}

/* ─── Akkordeon (iOS-style Single-Open) ─── */
.sm-accordion-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.sm-accordion {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.sm-accordion[open] {
  border-color: rgba(156, 126, 81, 0.22);
}

.sm-accordion:hover {
  border-color: rgba(156, 126, 81, 0.18);
}

.sm-accordion__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md);
  cursor: pointer;
  list-style: none;
  min-height: 56px;
  -webkit-tap-highlight-color: transparent;
}

.sm-accordion__head::-webkit-details-marker { display: none; }
.sm-accordion__head::marker { content: ''; }

.sm-accordion__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.3;
  color: var(--c-white);
  margin: 0;
}

.sm-accordion__chevron {
  flex-shrink: 0;
  color: var(--c-gold);
  transition: transform 0.3s var(--ease);
}

.sm-accordion[open] .sm-accordion__chevron {
  transform: rotate(90deg);
}

.sm-accordion__body {
  padding: 0 var(--space-md) var(--space-md);
}

.sm-accordion__body p {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 300;
  line-height: 1.75;
  color: var(--c-text-muted);
  margin: 0;
}

.sm-accordion__body p + p {
  margin-top: var(--space-sm);
}

/* ─── Persönlicher Einschub (Oura-Note) ─── */
.sm-personal-note {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--c-border-subtle);
}

.sm-personal-note p {
  font-style: italic;
}

/* ─── Fazit-Banner ─── */
.sm-conclusion {
  background: linear-gradient(
    135deg,
    rgba(184, 148, 79, 0.10) 0%,
    rgba(184, 148, 79, 0.04) 100%
  );
  border: 1px solid rgba(184, 148, 79, 0.15);
  border-radius: 16px;
  padding: var(--space-xl) var(--space-md);
  margin-top: var(--space-lg);
  text-align: center;
}

.sm-conclusion p {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-white);
  margin: 0;
}

/* ─── Weitere Berichte (Platzhalter-Cards) ─── */
.sm-reports {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

/* ─── CTA (Pill-Button, analog .cta-btn auf Wissenschaft) ─── */
.sm-cta {
  margin-bottom: var(--space-lg);
}

.sm-cta__link {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  background: transparent;
  border: 1px solid var(--c-gold);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--c-gold);
  text-decoration: none;
  letter-spacing: 0.01em;
  min-height: 52px;
  transition: all 0.3s var(--ease);
}

.sm-cta__link:hover {
  background: var(--c-gold);
  color: var(--c-dark);
}

/* ─── Reduced-Motion respektieren (WCAG 2.3.3) ─── */
@media (prefers-reduced-motion: reduce) {
  .sm-accordion__chevron,
  .sm-accordion,
  .sm-cta__link,
  .footer-nav a {
    transition-duration: 0.01ms !important;
  }
}
