/* ============================================
   ДомОК — pages.css
   Стили для конкретных страниц и больших блоков
   ============================================ */

/* ============================================
   Hero (главная)
   ============================================ */
.hero { padding: 60px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--c-soft-2); border-radius: var(--r-pill); font-size: 14px; color: var(--c-primary); font-weight: 800; margin-bottom: 24px; }
.hero h1 em { font-style: normal; position: relative; color: var(--c-primary); }
.hero h1 em::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 12px; background: var(--c-soft); z-index: -1; border-radius: 4px; }
.hero p { font-size: 19px; color: var(--c-text-soft); margin: 22px 0 36px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 16px; margin-top: 36px; }
.avatars { display: flex; }
.avatar { width: 44px; height: 44px; border-radius: var(--r-circle); border: 3px solid var(--c-bg); margin-left: -10px; background: linear-gradient(135deg, #ffb88c, var(--c-primary-soft)); display: flex; align-items: center; justify-content: center; color: var(--c-white); font-weight: 800; }
.avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: 14px; color: var(--c-text-soft); }
.hero-trust-text strong { color: var(--c-text); }
.stars { color: var(--c-stars); letter-spacing: 1px; }

/* Hero illustration с floating cards */
.hero-illust { position: relative; aspect-ratio: 1; background: linear-gradient(135deg, var(--c-soft-2), var(--c-soft)); border-radius: var(--r-xl); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.center-mascot { width: 70%; height: 70%; filter: drop-shadow(0 16px 30px rgba(255,87,34,0.3)); }
.floating-card { position: absolute; background: var(--c-white); border-radius: var(--r-md); padding: 14px 18px; box-shadow: 0 12px 30px rgba(0,0,0,0.1); display: flex; align-items: center; gap: 12px; }
.floating-card .ic { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.floating-card .ic svg { width: 20px; height: 20px; }
.fc-1 { top: 10%; left: -5%; } .fc-1 .ic { background: #fff0e6; color: #ff5722; }
.fc-2 { bottom: 15%; left: 5%; } .fc-2 .ic { background: #e6f7ff; color: #06b6d4; }
.fc-3 { top: 30%; right: -5%; } .fc-3 .ic { background: #f0e6ff; color: #7c3aed; }
.fc-4 { bottom: 8%; right: 0; } .fc-4 .ic { background: #e6ffe9; color: #16a34a; }
.floating-card .ttl { font-size: 13px; font-weight: 800; color: var(--c-text); }
.floating-card .sub { font-size: 11px; color: var(--c-text-muted); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-illust { display: none; }
}

/* ============================================
   Hero (внутренние страницы)
   ============================================ */
.page-hero { padding: 50px 0 60px; background: linear-gradient(180deg, var(--c-cream), var(--c-bg)); }
.page-hero .hero-tag { margin-bottom: 18px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { font-size: 18px; color: var(--c-text-soft); max-width: 640px; }

/* ============================================
   Service detail page
   ============================================ */
.svc-hero { padding: 30px 0 60px; }
.svc-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.svc-hero-icon { width: 96px; height: 96px; border-radius: 28px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; box-shadow: var(--shadow-md); }
.svc-hero-icon svg { width: 48px; height: 48px; }
.svc-hero h1 { margin-bottom: 18px; }
.svc-hero p { font-size: 18px; margin-bottom: 28px; }
.svc-meta { display: flex; align-items: center; gap: 30px; margin: 28px 0; }
.svc-meta-item strong { display: block; font-size: 28px; font-weight: 900; color: var(--c-text); letter-spacing: -1px; line-height: 1; }
.svc-meta-item span { font-size: 13px; color: var(--c-text-muted); }
.svc-hero-img { background: linear-gradient(135deg, var(--c-soft-2), var(--c-soft)); border-radius: var(--r-xl); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; padding: 40px; }
.svc-hero-img svg { width: 60%; height: auto; max-height: 200px; filter: drop-shadow(0 16px 30px rgba(255,87,34,0.25)); }

@media (max-width: 900px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Works table */
.works-table { background: var(--c-white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.works-row { display: grid; grid-template-columns: 1fr 130px 130px; gap: 16px; padding: 18px 24px; align-items: center; border-bottom: 1px solid var(--c-border-soft); transition: background var(--t-fast); }
.works-row:last-child { border-bottom: none; }
.works-row:hover { background: var(--c-cream); }
.works-row.is-header { background: var(--c-cream); font-weight: 800; font-size: 13px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; }
.works-name { font-weight: 600; color: var(--c-text); }
.works-price { font-weight: 800; color: var(--c-primary); text-align: right; }
.works-unit { color: var(--c-text-muted); font-size: 14px; text-align: center; }

@media (max-width: 600px) {
  .works-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 18px; }
  .works-row.is-header { display: none; }
  .works-price { text-align: left; font-size: 18px; }
  .works-unit { text-align: left; }
}

/* Calculator */
.calc { background: var(--c-white); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.calc h3 { margin-bottom: 8px; }
.calc-sub { color: var(--c-text-muted); margin-bottom: 24px; }
.calc-row { margin-bottom: 18px; }
.calc-result { background: linear-gradient(135deg, var(--c-soft-2), var(--c-soft)); border-radius: var(--r-md); padding: 24px; margin-top: 20px; text-align: center; }
.calc-result .label { font-size: 13px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.calc-result .value { font-size: 36px; font-weight: 900; color: var(--c-primary); letter-spacing: -1px; margin: 4px 0; }
.calc-result .note { font-size: 12px; color: var(--c-text-muted); }

/* ============================================
   About page
   ============================================ */
.timeline { position: relative; padding: 40px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 3px; background: var(--c-soft); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 24px; align-items: center; margin-bottom: 30px; position: relative; }
.timeline-item:nth-child(even) > .timeline-content { order: 3; text-align: left; }
.timeline-item:nth-child(even) > .timeline-empty { order: 1; }
.timeline-item:nth-child(odd) > .timeline-content { text-align: right; }
.timeline-content { background: var(--c-white); padding: 22px 24px; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.timeline-year { font-size: 24px; font-weight: 900; color: var(--c-primary); margin-bottom: 4px; }
.timeline-content h4 { margin-bottom: 4px; }
.timeline-content p { color: var(--c-text-soft); font-size: 14px; }
.timeline-dot { width: 22px; height: 22px; border-radius: var(--r-circle); background: var(--c-primary); margin: 0 auto; border: 5px solid var(--c-bg); box-shadow: 0 0 0 2px var(--c-primary); }
.timeline-empty {}

@media (max-width: 700px) {
  .timeline::before { left: 11px; }
  .timeline-item { grid-template-columns: 28px 1fr; gap: 16px; }
  .timeline-item > .timeline-content { order: unset !important; text-align: left !important; }
  .timeline-item > .timeline-empty { display: none; }
  .timeline-dot { margin: 0; }
}

/* Team card */
.team-card { background: var(--c-white); border-radius: var(--r-lg); padding: 24px; text-align: center; transition: all var(--t); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo { width: 100px; height: 100px; border-radius: var(--r-circle); background: linear-gradient(135deg, #ffb88c, var(--c-primary-soft)); display: flex; align-items: center; justify-content: center; color: var(--c-white); font-size: 36px; font-weight: 900; margin: 0 auto 16px; }
.team-name { font-weight: 800; font-size: 17px; margin-bottom: 4px; }
.team-role { color: var(--c-text-muted); font-size: 13px; margin-bottom: 10px; }
.team-tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }

/* ============================================
   Contacts page
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.contact-info-card { background: var(--c-white); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.contact-block { padding: 16px 0; border-bottom: 1px solid var(--c-border-soft); display: flex; align-items: center; gap: 16px; }
.contact-block:last-child { border-bottom: none; }
.contact-block .ic { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--c-soft-2); color: var(--c-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-block .ic svg { width: 22px; height: 22px; }
.contact-block .label { font-size: 12px; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.contact-block .value { font-size: 17px; font-weight: 800; color: var(--c-text); }
.contact-block a.value:hover { color: var(--c-primary); }
.map-placeholder { background: linear-gradient(135deg, var(--c-soft-2), var(--c-soft)); aspect-ratio: 4/3; border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; color: var(--c-primary); position: relative; overflow: hidden; }
.map-placeholder svg { width: 80px; height: 80px; opacity: 0.4; }
.map-placeholder .label { position: absolute; bottom: 24px; left: 24px; right: 24px; background: var(--c-white); padding: 14px 18px; border-radius: var(--r-sm); font-size: 13px; color: var(--c-text); box-shadow: var(--shadow-sm); }
.map-placeholder .label strong { display: block; color: var(--c-primary); margin-bottom: 2px; }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============================================
   How it works page
   ============================================ */
.funnel-step { display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: start; padding: 30px 0; border-bottom: 1px dashed var(--c-border); }
.funnel-step:last-child { border-bottom: none; }
.funnel-num { font-size: 52px; font-weight: 900; color: var(--c-primary); line-height: 1; letter-spacing: -2px; }
.funnel-content h3 { font-size: 24px; margin-bottom: 10px; }
.funnel-content p { font-size: 16px; color: var(--c-text-soft); }
.funnel-content .badge { margin-top: 12px; }

@media (max-width: 600px) {
  .funnel-step { grid-template-columns: 1fr; gap: 8px; }
}

/* ============================================
   Apps page
   ============================================ */
.apps-hero { padding: 60px 0; background: linear-gradient(180deg, var(--c-cream), var(--c-bg)); }
.apps-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.apps-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.store-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--c-text); color: var(--c-white); padding: 12px 22px; border-radius: var(--r-md); transition: all var(--t); }
.store-btn:hover { background: var(--c-primary); transform: translateY(-2px); }
.store-btn svg { width: 28px; height: 28px; }
.store-btn .small { font-size: 11px; opacity: 0.85; }
.store-btn .big { font-size: 16px; font-weight: 800; line-height: 1.1; }

.phones-stack { position: relative; display: flex; justify-content: center; align-items: center; }

/* Phone mockup */
.phone { width: 280px; height: 580px; background: var(--c-text); border-radius: 44px; padding: 12px; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.2); flex-shrink: 0; }
.phone-screen { width: 100%; height: 100%; border-radius: 34px; background: var(--c-bg); overflow: hidden; position: relative; }
.phone::before { content: ''; position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 100px; height: 28px; background: #000; border-radius: 14px; z-index: 10; }

@media (max-width: 900px) {
  .apps-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .phone { width: 240px; height: 500px; }
}

/* ============================================
   Apps promo block (main page)
   ============================================ */
.apps-promo { background: var(--c-white); border-radius: var(--r-xl); padding: 60px 50px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.apps-promo h2 { margin: 8px 0 18px; }
.apps-promo h2 em { font-style: normal; color: var(--c-primary); }
.apps-promo .promo-phones { display: flex; gap: 18px; justify-content: center; align-items: center; }
.apps-promo .promo-phones .mini-phone { width: 140px; height: 280px; background: var(--c-text); border-radius: 24px; padding: 8px; position: relative; }
.apps-promo .promo-phones .mini-phone::before { content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 60px; height: 16px; background: #000; border-radius: 8px; z-index: 10; }
.apps-promo .promo-phones .mini-screen { width: 100%; height: 100%; border-radius: 18px; display: flex; align-items: center; justify-content: center; color: var(--c-primary); font-weight: 900; font-size: 13px; }

@media (max-width: 900px) {
  .apps-promo { grid-template-columns: 1fr; padding: 40px 28px; gap: 30px; text-align: center; }
  .apps-promo .hero-tag, .apps-promo h2, .apps-promo p { text-align: center; }
  .apps-promo .hero-cta { justify-content: center; }
  .apps-promo .promo-phones .mini-phone { height: 220px; width: 110px; }
}

/* ============================================
   Legal pages (privacy / terms / offer)
   ============================================ */
.legal-wrap { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.legal-toc { position: sticky; top: 100px; background: var(--c-white); border-radius: var(--r-lg); padding: 22px 18px; box-shadow: var(--shadow-sm); font-size: 14px; max-height: calc(100vh - 130px); overflow-y: auto; }
.legal-toc h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--c-text-muted); margin: 0 0 12px; }
.legal-toc ol { list-style: decimal inside; padding: 0; margin: 0; }
.legal-toc li { margin-bottom: 6px; line-height: 1.4; }
.legal-toc a { color: var(--c-text-soft); display: inline; }
.legal-toc a:hover { color: var(--c-primary); }
.legal-doc { background: var(--c-white); border-radius: var(--r-lg); padding: 44px 50px; box-shadow: var(--shadow-sm); font-size: 15px; line-height: 1.75; color: var(--c-text-soft); }
.legal-doc h2 { font-size: 22px; margin: 36px 0 14px; color: var(--c-text); scroll-margin-top: 100px; padding-top: 6px; border-top: 2px solid var(--c-soft-2); }
.legal-doc h2:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.legal-doc h3 { font-size: 17px; margin: 22px 0 10px; color: var(--c-text); }
.legal-doc p { margin: 0 0 12px; }
.legal-doc ul, .legal-doc ol { margin: 0 0 14px; padding-left: 22px; }
.legal-doc ul li, .legal-doc ol li { margin-bottom: 6px; }
.legal-doc strong { color: var(--c-text); }
.legal-doc .legal-meta { background: var(--c-cream); border-radius: var(--r-md); padding: 16px 20px; font-size: 14px; margin-bottom: 24px; }
.legal-doc .legal-meta strong { color: var(--c-text); }
.legal-doc table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 14px; }
.legal-doc table th, .legal-doc table td { border: 1px solid var(--c-border); padding: 10px 14px; text-align: left; vertical-align: top; }
.legal-doc table th { background: var(--c-cream); font-weight: 800; color: var(--c-text); }

@media (max-width: 900px) {
  .legal-wrap { grid-template-columns: 1fr; }
  .legal-toc { position: static; max-height: none; }
  .legal-doc { padding: 28px 22px; }
}

/* ============================================
   Yandex Maps embed (contacts page)
   ============================================ */
.yandex-map { position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--c-soft); }
.yandex-map iframe { display: block; width: 100%; height: 100%; border: 0; }
.yandex-map__open {
  position: absolute; left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-primary); color: #fff;
  padding: 11px 18px; border-radius: var(--r-pill);
  font-weight: 800; font-size: 14px;
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.35);
  transition: transform var(--t-fast), background var(--t-fast);
}
.yandex-map__open svg { width: 16px; height: 16px; }
.yandex-map__open:hover { background: var(--c-primary-dark); transform: translateY(-2px); color: #fff; }

.zones { margin-top: 22px; background: var(--c-white); border-radius: var(--r-lg); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.zones-title { font-size: 17px; margin: 0 0 16px; color: var(--c-text); }
.zone { display: grid; grid-template-columns: 14px 1fr; gap: 14px; align-items: start; padding: 10px 0; border-bottom: 1px dashed var(--c-border); }
.zone:last-of-type { border-bottom: 0; }
.zone-dot { width: 14px; height: 14px; border-radius: 50%; margin-top: 5px; box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.04); }
.zone strong { display: block; font-size: 15px; color: var(--c-text); margin-bottom: 2px; }
.zone span { display: block; font-size: 13px; color: var(--c-text-muted); }
.zones-note { margin: 14px 0 0; font-size: 13px; color: var(--c-text-muted); }

@media (max-width: 700px) {
  .yandex-map { aspect-ratio: 1/1; }
  .yandex-map__open { left: 12px; bottom: 12px; padding: 9px 14px; font-size: 13px; }
}

/* ============================================
   Blog — index (лента статей)
   ============================================ */
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.blog-filters a {
  padding: 10px 18px; background: var(--c-white); border-radius: var(--r-pill);
  font-size: 14px; font-weight: 700; color: var(--c-text-soft);
  border: 2px solid transparent; transition: all var(--t-fast);
}
.blog-filters a:hover, .blog-filters a.is-active { border-color: var(--c-primary); color: var(--c-primary); }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: var(--c-white); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card__cover { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.blog-card__cover svg { width: 100%; height: 100%; display: block; }
.blog-card__cat {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255, 255, 255, 0.92); color: var(--c-primary);
  font-size: 12px; font-weight: 800; padding: 5px 12px; border-radius: var(--r-pill);
}
.blog-card__body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { font-size: 12px; color: var(--c-text-muted); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-card__title { font-size: 19px; line-height: 1.3; margin: 0 0 12px; color: var(--c-text); }
.blog-card__lead { font-size: 14px; line-height: 1.55; color: var(--c-text-soft); margin: 0 0 18px; flex: 1; }
.blog-card__more { font-weight: 800; color: var(--c-primary); font-size: 14px; }

@media (max-width: 1000px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Blog — article (одна статья)
   ============================================ */
.article-hero { background: linear-gradient(180deg, var(--c-cream) 0%, transparent 100%); padding: 50px 0 0; }
.article-hero .container { max-width: 820px; }
.article-cat {
  display: inline-block; background: var(--c-primary); color: #fff;
  font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: var(--r-pill);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.4px;
}
.article-h1 { font-size: 38px; line-height: 1.18; margin: 0 0 18px; color: var(--c-text); }
.article-meta { display: flex; flex-wrap: wrap; gap: 14px; color: var(--c-text-muted); font-size: 14px; margin-bottom: 30px; }
.article-meta strong { color: var(--c-text); font-weight: 700; }
.article-cover { aspect-ratio: 16/8; border-radius: var(--r-lg); overflow: hidden; margin-bottom: 36px; box-shadow: var(--shadow-sm); }
.article-cover svg { width: 100%; height: 100%; display: block; }

.article-body { max-width: 720px; margin: 0 auto; padding: 0 20px 60px; font-size: 17px; line-height: 1.75; color: var(--c-text-soft); }
.article-body h2 { font-size: 26px; line-height: 1.25; margin: 42px 0 14px; color: var(--c-text); }
.article-body h3 { font-size: 20px; line-height: 1.3; margin: 28px 0 10px; color: var(--c-text); }
.article-body p { margin: 0 0 16px; }
.article-body ul, .article-body ol { margin: 0 0 16px; padding-left: 24px; }
.article-body li { margin-bottom: 6px; }
.article-body strong { color: var(--c-text); font-weight: 800; }
.article-body a:not(.btn) { color: var(--c-primary); border-bottom: 1px dashed var(--c-primary); }
.article-body a:not(.btn):hover { border-bottom-style: solid; }
.article-body blockquote {
  margin: 24px 0; padding: 18px 24px;
  background: var(--c-cream); border-left: 4px solid var(--c-primary);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic; color: var(--c-text);
}
.article-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 15px; }
.article-body th, .article-body td { border: 1px solid var(--c-border); padding: 11px 14px; text-align: left; vertical-align: top; }
.article-body th { background: var(--c-cream); font-weight: 800; color: var(--c-text); }
.article-body figure { margin: 26px 0; }
.article-body figcaption { text-align: center; font-size: 13px; color: var(--c-text-muted); margin-top: 8px; }
.article-body .callout {
  margin: 24px 0; padding: 18px 22px;
  background: linear-gradient(135deg, var(--c-soft-2), var(--c-soft));
  border-radius: var(--r-md); color: var(--c-text);
}
.article-body .callout strong { display: block; margin-bottom: 6px; color: var(--c-primary-dark); }
.article-body hr { border: 0; border-top: 2px dashed var(--c-border); margin: 36px 0; }

.article-cta {
  background: var(--c-white); border-radius: var(--r-lg); padding: 32px 36px;
  box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: center; margin: 40px 0;
}
.article-cta h3 { margin: 0 0 6px; font-size: 22px; color: var(--c-text); }
.article-cta p { margin: 0; color: var(--c-text-soft); font-size: 15px; }
.article-related { margin-top: 50px; }
.article-related h3 { font-size: 22px; margin-bottom: 22px; }

@media (max-width: 700px) {
  .article-h1 { font-size: 28px; }
  .article-body { font-size: 16px; padding: 0 16px 40px; }
  .article-cta { grid-template-columns: 1fr; text-align: center; }
}
