/* ===== ARTICLE PAGE ===== */
.article-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 80px;
}
.article-page .breadcrumbs {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 24px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
}
.article-page .breadcrumbs a {
  color: #0098cc;
  text-decoration: none;
}
.article-page .breadcrumbs a:hover {
  text-decoration: underline;
}
.article-page h1 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: 40px;
  line-height: 1.2;
  color: #0a1628;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.article-meta-full {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: #94a3b8;
  padding-bottom: 24px;
  margin-bottom: 36px;
  border-bottom: 1px solid #e2e8f0;
}
.article-page h2 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: 28px;
  color: #0a1628;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.article-page h3 {
  font-family: 'Space Grotesk', 'Manrope', sans-serif;
  font-size: 21px;
  color: #0a1628;
  margin: 28px 0 12px;
  font-weight: 700;
}
.article-page p {
  font-size: 17px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 18px;
}
.article-page ul, .article-page ol {
  margin: 0 0 20px 24px;
}
.article-page li {
  font-size: 17px;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 10px;
}
.article-page strong {
  color: #0a1628;
  font-weight: 700;
}
.article-page code {
  background: #f1f5f9;
  color: #0369a1;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 15px;
  font-family: 'Consolas', 'Monaco', monospace;
}
.article-page blockquote {
  border-left: 4px solid #00c2ff;
  background: #f8fafc;
  padding: 20px 24px;
  margin: 24px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #334155;
}
.article-page .info-box {
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.article-page .info-box strong {
  color: #0369a1;
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-page .info-box p {
  margin-bottom: 0;
  color: #0c4a6e;
  font-size: 16px;
}
.article-page .warning-box {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}
.article-page .warning-box strong {
  color: #92400e;
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-page .warning-box p {
  margin-bottom: 0;
  color: #78350f;
  font-size: 16px;
}
.article-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
}
.article-page table th {
  background: #f1f5f9;
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: #0a1628;
  border-bottom: 2px solid #cbd5e1;
}
.article-page table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  color: #334155;
}
.article-page table tr:hover td {
  background: #f8fafc;
}
.article-page .article-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}
.article-page .article-footer h3 {
  font-size: 18px;
  margin-bottom: 16px;
}
.article-page .related-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.article-page .related-list li {
  margin: 0 0 10px;
  padding: 0;
}
.article-page .related-list a {
  color: #0098cc;
  text-decoration: none;
  font-size: 16px;
}
.article-page .related-list a:hover {
  text-decoration: underline;
}

/* ===== ФОТО В СТАТТЯХ ===== */
.article-page figure {
  margin: 32px 0;
}
.article-page figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.12);
  display: block;
}
.article-page figcaption {
  margin-top: 12px;
  font-size: 14px;
  color: #64748b;
  text-align: center;
  font-style: italic;
  line-height: 1.5;
}
.article-page .article-hero-img {
  margin: 32px 0 40px;
}
.article-page .article-hero-img img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.15);
}

/* ===== МОБІЛЬНА ВЕРСІЯ ===== */
@media (max-width: 720px) {
  .article-page h1 { font-size: 28px; }
  .article-page h2 { font-size: 22px; margin: 30px 0 12px; }
  .article-page h3 { font-size: 18px; }
  .article-page p, .article-page li { font-size: 16px; }
  .article-page figure { margin: 24px 0; }
  .article-page figcaption { font-size: 13px; }
}