/* =============================================================
   ARTICLE PAGE — страница полной статьи блога
   ============================================================= */
.article-hero { padding-top: clamp(110px, 14vw, 180px); }
.article-head { max-width: 820px; margin: 24px auto 0; text-align: left; }
.article-tag {
  display: inline-block;
  margin-bottom: 18px;
}
.article-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 16px;
}
.article-meta {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

.article-section { padding-top: 32px; }
.article-wrap { max-width: 820px; margin: 0 auto; }
.article-cover {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(97, 117, 162, 0.15);
  margin-bottom: 36px;
}

.article-content { color: rgba(255,255,255,0.78); }
.article-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  color: #fff;
  margin: 34px 0 14px;
  line-height: 1.3;
}
.article-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.article-content ul {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
}
.article-content li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1.02rem;
  line-height: 1.65;
}
.article-content li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan, #38bdf8);
  box-shadow: 0 0 10px rgba(56,189,248,0.6);
}

.article-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(97, 117, 162, 0.15);
}
.article-nav .btn { gap: 8px; }
.article-nav__all svg,
.article-nav__next svg { width: 18px; height: 18px; }
@media (max-width: 540px) {
  .article-nav { flex-direction: column-reverse; align-items: stretch; }
  .article-nav .btn { width: 100%; justify-content: center; }
}

@media (max-width: 600px) {
  .article-cover { border-radius: 14px; margin-bottom: 24px; }
}
.article-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #fff;
  margin: 26px 0 12px;
  line-height: 1.35;
}
