/* Перекус — blog articles. Builds on legal.css (same header/footer/typography);
   adds only what long-form articles need: lead paragraph, CTA box, callouts,
   related-articles nav. */

.article-lead {
  font-size: 1.0625rem;
  color: var(--text);
  margin-bottom: 24px;
}

/* Honest-note / warning callout — used where the text admits a limitation. */
.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: 0.9375rem;
}

.callout p:last-child { margin: 0; }

/* Call-to-action block linking into the app. */
.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin: 32px 0;
  text-align: center;
}

.cta-box p { margin: 0 0 16px; }

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #0e0e12;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
}

.cta-btn:hover { opacity: 0.9; }

/* Related-articles navigation at the foot of the article. */
.article-nav {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9375rem;
}

.article-nav h2 {
  font-size: 1rem;
  margin: 0 0 10px;
}

.article-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-nav li { margin-bottom: 8px; }
