/* ── Article page styles (shared across all news articles) ────────────────── */
main { padding-top: 68px; }
.article-hero-wrap { width: 100%; background: #0e0e0e; }
.article-hero { width: 100%; max-height: 520px; object-fit: cover; display: block; }
.img-credit { font-size: 11px; color: var(--text); opacity: .4; padding: 6px 40px; text-align: right; }
.source-block { margin-top: 16px; }
.source-block a { font-size: 13px; color: var(--text); opacity: .55; transition: color .2s, opacity .2s; }
.source-block a:hover { color: var(--orange); opacity: 1; }
.article-header { padding: 48px 0 56px; background: #0e0e0e; border-bottom: 1px solid var(--border); }
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.article-date { font-size: 13px; color: var(--text); opacity: .6; }
.article-title { font-size: 44px; font-weight: 700; line-height: 1.1; color: var(--white); text-transform: uppercase; margin-bottom: 24px; }
.article-subtitle { font-size: 18px; color: var(--text); max-width: 680px; line-height: 1.65; }
.article-body { padding: 64px 0 100px; }
.prose { max-width: 760px; }
.prose p { font-size: 17px; color: var(--text); line-height: 1.8; margin-bottom: 24px; }
/* Буквица — крупная первая буква первого абзаца (шрифт заголовков: NeueMachina 700).
   initial-letter: <высота> <посадка> — 3.3 3: низ садится на baseline 3-й (нижней
   обрезанной) строки, лишние 0.3 строки выносят букву над текстом (Safari/Chrome). */
.prose > p:first-child::first-letter {
  font-family: var(--font);
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  -webkit-initial-letter: 3.3 3;
  initial-letter: 3.3 3;
  margin-right: 0.24em;
}
/* Фолбэк для браузеров без initial-letter (Firefox): float, высота ≈ 3 строки. */
@supports not ((-webkit-initial-letter: 1) or (initial-letter: 1)) {
  .prose > p:first-child::first-letter {
    float: left; font-size: 6.6em; line-height: 0.72; margin: 0.02em 0.24em 0 0;
  }
  @media (max-width: 640px) {
    .prose > p:first-child::first-letter { font-size: 5.4em; }
  }
}
/* Подзаголовки секций (средний/длинный материал: ## → <h3>) */
.prose h3 { font-size: 24px; font-weight: 700; line-height: 1.3; color: var(--white); margin: 40px 0 16px; }
.prose h3:first-child { margin-top: 0; }
.prose ul { margin: 0 0 24px; padding-left: 22px; }
.prose li { font-size: 17px; color: var(--text); line-height: 1.8; margin-bottom: 8px; }
/* Врезка-цитата в середине материала (длинный: > … → blockquote).
   Блок во всю ширину колонки: разрывает абзац, ставится в середине мысли. */
.article-pullquote { margin: 36px 0; padding: 4px 0 4px 24px; border-left: 3px solid var(--orange); font-size: 23px; line-height: 1.45; font-weight: 600; color: var(--white); }
/* Врезка «Главное» / «Key takeaways» (длинный материал) */
.article-keybox { margin: 36px 0; padding: 20px 24px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-left: 3px solid var(--orange); border-radius: 8px; }
.article-keybox h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text); opacity: .85; margin: 0 0 12px; }
.article-keybox ul { margin: 0; padding-left: 20px; }
.article-keybox li:last-child { margin-bottom: 0; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); }
.tag { font-size: 12px; color: var(--text); opacity: .7; background: rgba(255,255,255,.05); border: 1px solid var(--border); padding: 4px 12px; border-radius: 4px; }
.back-bar { padding: 0 0 60px; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text); border: 1px solid var(--border); border-radius: 8px; padding: 10px 20px; transition: color .25s, border-color .25s; }
.back-link:hover { color: var(--orange); border-color: var(--orange); }
@media (max-width: 980px) { .article-title { font-size: 28px; } .article-header { padding: 40px 0 40px; } }
@media (max-width: 640px) {
  .article-title { font-size: 22px; }
  .article-header { padding: 28px 0 32px; }
  .article-body { padding: 32px 0 60px; }
  .prose p { font-size: 15px; line-height: 1.7; }
  .prose h3 { font-size: 20px; margin: 32px 0 12px; }
  .prose li { font-size: 15px; line-height: 1.7; }
  .article-pullquote { font-size: 19px; margin: 28px 0; }
  .article-keybox { padding: 16px 18px; }
  .article-hero { max-height: 300px; }
  .article-subtitle { font-size: 16px; }
  .img-credit { padding: 4px 16px; }
  .lead-body { padding-left: 16px; }
  .back-link { font-size: 13px; padding: 8px 16px; }
}
