/* === Blog Header === */
.blog-header {
  padding: 140px 0 60px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(108,99,255,.08) 0%, transparent 70%);
}
.blog-header h1 {
  font-size: 2.6rem; font-weight: 800; color: #fff; margin-bottom: 12px;
}
.blog-header p {
  font-size: 1.1rem; color: #8892a4; max-width: 560px; margin: 0 auto;
}

/* === Blog Grid === */
.blog-posts { padding: 60px 0 100px; }
.blog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* === Blog Card === */
.blog-card {
  display: block;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px; padding: 32px 28px;
  transition: border-color .3s, transform .3s;
  text-decoration: none;
}
.blog-card:hover {
  border-color: rgba(108,99,255,.35);
  transform: translateY(-4px);
}
.blog-card-meta {
  font-size: .8rem; color: #6c63ff; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.blog-card h2 {
  font-size: 1.25rem; font-weight: 700; color: #fff;
  margin-bottom: 12px; line-height: 1.35;
}
.blog-card p {
  font-size: .93rem; color: #8892a4; line-height: 1.6; margin-bottom: 16px;
}
.blog-card-link {
  font-size: .9rem; color: #6c63ff; font-weight: 600;
}

/* === Blog Article === */
.blog-article { padding: 140px 0 80px; }
.blog-article .container { max-width: 760px; }
.blog-article h1 {
  font-size: 2.2rem; font-weight: 800; color: #fff;
  line-height: 1.25; margin-bottom: 16px;
}
.blog-article-meta {
  font-size: .85rem; color: #6c63ff; font-weight: 600;
  margin-bottom: 40px;
}
.blog-article h2 {
  font-size: 1.4rem; font-weight: 700; color: #fff;
  margin: 40px 0 16px;
}
.blog-article h3 {
  font-size: 1.15rem; font-weight: 600; color: #e0e6ed;
  margin: 28px 0 12px;
}
.blog-article p {
  font-size: 1rem; color: #a0aec0; line-height: 1.8; margin-bottom: 20px;
}
.blog-article ul, .blog-article ol {
  margin: 0 0 20px 24px; color: #a0aec0;
}
.blog-article li {
  font-size: 1rem; line-height: 1.8; margin-bottom: 8px;
}
.blog-article strong { color: #e0e6ed; }

/* === Responsive === */
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header h1 { font-size: 2rem; }
  .blog-article h1 { font-size: 1.7rem; }
}
