/* ═══════════════════════════════════════════════════════════════
   METHODOLOGY PAGE — belyaev.cc
   ═══════════════════════════════════════════════════════════════ */

/* ─── HEADER ────────────────────────────────────────────────── */
.method-header {
  padding-top: var(--space-4xl);
}

.method-header .subhead {
  margin-top: var(--space-md);
}

/* ─── THESIS ────────────────────────────────────────────────── */
.thesis-text {
  font-size: var(--fs-h3);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
}

/* ─── TRUST PRINCIPLES ──────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.trust-card__inner {
  padding: var(--space-lg);
}

.trust-card h3 {
  margin-bottom: var(--space-xs);
}

.trust-card p {
  color: var(--text-secondary);
  font-size: var(--fs-small);
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

/* ─── OUTCOMES ──────────────────────────────────────────────── */
.outcomes h2 {
  margin-bottom: var(--space-lg);
}

.outcomes-list {
  list-style: none;
  padding: 0;
}

.outcomes-list li {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: var(--fs-body);
  line-height: 1.6;
}

.outcomes-list li:last-child {
  border-bottom: none;
}
