/* ==========================================================================
   Alphastar Media — Blog Article
   Reading-focused layout for individual blog posts.
   ========================================================================== */

.article-hero {
  padding: 150px 0 0;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted);
  margin-bottom: 32px;
}
.article-back svg { width: 16px; height: 16px; transform: rotate(180deg); }
.article-back:hover { color: var(--color-text); }

.article-hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin-bottom: 24px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.article-meta-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--border-1);
}
.article-meta-avatar img { width: 100%; height: 100%; object-fit: cover; }
.article-meta-text { display: flex; flex-direction: column; gap: 2px; }
.article-meta-text b { font-family: var(--font-display); font-size: 0.9rem; }
.article-meta-text span { font-size: 0.8rem; color: var(--color-muted-2); }
.article-meta .dot { color: var(--border-2); }

.article-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-1);
  aspect-ratio: 16/8;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-body {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(60px, 8vw, 100px);
}
.article-body h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin: 2em 0 0.6em;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-text);
  margin: 1.8em 0 0.6em;
}
.article-body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 1.3em;
}
.article-body ul {
  margin: 0 0 1.3em;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-body ul li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--color-muted);
}
.article-body ul li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient-cta);
  flex-shrink: 0;
  margin-top: 9px;
}
.article-body strong { color: var(--color-text); font-weight: 600; }
.article-body .lead {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-text);
  line-height: 1.5;
}

.article-cta {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(80px, 10vw, 120px);
}
.article-cta-card {
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  background: var(--gradient-hero);
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
}
.article-cta-card h3 { margin-bottom: 10px; }
.article-cta-card p { margin-bottom: 28px; }
.article-cta-card .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 720px) {
  .article-hero { padding-top: 120px; }
}
