/* ===================== BLOG LISTING ===================== */
.blog-hero {
  padding: 160px 64px 80px;
  background: var(--purple-deep);
  position: relative;
  z-index: 1;
  text-align: center;
}

.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,89,212,0.4), transparent);
}

.blog-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 64px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.blog-card {
  background: var(--purple-dark);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  text-decoration: none;
  display: block;
}

.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple-glow), var(--nebula-pink));
  transition: width 0.5s ease;
}

.blog-card:hover { background: var(--purple-mid); }
.blog-card:hover::after { width: 100%; }

.blog-card-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 16px;
  display: inline-block;
}

.blog-card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--star-white);
  line-height: 1.25;
  margin-bottom: 16px;
  transition: color 0.3s;
}

.blog-card:hover .blog-card-title { color: var(--purple-light); }

.blog-card-excerpt {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.blog-card-meta {
  font-size: 11px;
  color: rgba(196,180,255,0.5);
  letter-spacing: 0.08em;
}

/* ===================== ARTICLE ===================== */
.article-hero {
  padding: 160px 64px 60px;
  background: var(--purple-deep);
  position: relative;
  z-index: 1;
  text-align: center;
}

.article-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(155,89,212,0.4), transparent);
}

.article-tag {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--purple-bright);
  margin-bottom: 24px;
  display: inline-block;
}

.article-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--star-white);
  max-width: 800px;
  margin: 0 auto 24px;
}

.article-meta {
  font-size: 12px;
  color: rgba(196,180,255,0.55);
  letter-spacing: 0.1em;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px;
  position: relative;
  z-index: 1;
}

.article-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--star-white);
  margin: 48px 0 20px;
  line-height: 1.2;
}

.article-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--purple-light);
  margin: 36px 0 16px;
  line-height: 1.3;
}

.article-body p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.article-body li {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.article-body strong {
  color: var(--star-white);
  font-weight: 500;
}

.article-body blockquote {
  border-left: 2px solid var(--purple-glow);
  padding: 16px 0 16px 28px;
  margin: 32px 0;
}

.article-body blockquote p {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--purple-light);
  line-height: 1.5;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
  margin-top: 48px;
}

.article-back::before {
  content: '\2190';
  font-size: 16px;
}

.article-back:hover { color: var(--purple-light); }

.article-cta {
  text-align: center;
  padding: 80px 64px;
  background: var(--purple-dark);
  border-top: 1px solid rgba(155,89,212,0.1);
  position: relative;
  z-index: 1;
}

.article-cta p {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--star-white);
  margin-bottom: 28px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .blog-hero, .article-hero, .article-body, .article-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }
  .article-title { font-size: 32px; }
}
