/*
 * pages/static-page.css
 * Один стиль для всех информационных страниц: юридические документы,
 * гид по закупкам, база знаний, страницы "скоро запустим" и т.д.
 */

.static-page {
  padding: var(--space-xl) 0;
}

.static-page__breadcrumbs {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}
.static-page__breadcrumbs a { color: var(--color-text-muted); }
.static-page__breadcrumbs a:hover { color: var(--color-primary-dark); }

.static-page__header {
  max-width: 760px;
  margin-bottom: var(--space-xl);
}
.static-page__header h1 {
  font-size: var(--fs-display-lg);
  margin-bottom: var(--space-sm);
}
.static-page__header p {
  font-size: var(--fs-body-lg);
  color: var(--color-text-muted);
}

.static-page__body {
  max-width: 760px;
}

.static-section {
  margin-bottom: var(--space-xl);
}
.static-section h2 {
  font-size: 20px;
  margin-bottom: var(--space-sm);
}
.static-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}
.static-section ul {
  margin: 0 0 var(--space-sm);
  padding-left: 20px;
}
.static-section li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-muted);
  list-style: disc;
  margin-bottom: 6px;
}

.static-page__note {
  background: var(--color-surface-muted);
  border-left: 3px solid var(--color-primary-dark);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.static-page__soon {
  background: var(--color-surface);
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  max-width: 760px;
}
.static-page__soon h3 { font-size: 18px; margin-bottom: 8px; }
.static-page__soon p { color: var(--color-text-muted); font-size: 14px; }

.static-faq-item {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
}
.static-faq-item h3 { font-size: 16px; margin-bottom: 6px; }
.static-faq-item p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }
