.article-wrap {
  padding: 9rem 1.5rem 5rem;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease;
}

.article-back:hover { transform: translateX(-3px); color: var(--orange-light); }

.article-header { margin-bottom: 3rem; }

.article-tag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--orange-dim);
  border: 1px solid var(--orange-border);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.article-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  align-items: center;
}

.article-meta-dot {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}

.article-hero {
  height: 280px;
  border-radius: 18px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(0,0,0,0.5), transparent 50%);
}

.hero-bg-1 { background: linear-gradient(135deg, #F97316, #c2410c); }
.hero-bg-2 { background: linear-gradient(135deg, #FB923C, #9a3412); }
.hero-bg-3 { background: linear-gradient(135deg, #FDBA74, #ea580c); }

.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #cbd5e1;
}

.article-body p { margin-bottom: 1.5rem; color: #cbd5e1; }

.article-body h2 {
  font-size: 1.7rem;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}

.article-body h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  color: var(--text);
}

.article-body ul, .article-body ol {
  margin: 0 0 1.5rem 1.5rem;
}

.article-body li {
  margin-bottom: 0.6rem;
  color: #cbd5e1;
}

.article-body strong { color: var(--text); font-weight: 600; }

.article-body a {
  color: var(--orange);
  border-bottom: 1px solid var(--orange-border);
  transition: color 0.2s ease;
}

.article-body a:hover { color: var(--orange-light); }

.article-body blockquote {
  border-left: 3px solid var(--orange);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  line-height: 1.5;
}

.article-body code {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-family: 'SF Mono', Menlo, monospace;
  font-size: 0.9em;
  color: var(--orange-light);
}

.article-foot {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.article-foot .author {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.article-foot .author strong { color: var(--text); }

.related-posts {
  padding: 4rem 1.5rem;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.related-posts h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
