/* Blog Hero Styles */
.hero--blog {
  background: linear-gradient(135deg, var(--vpm-purple-900, #341c4c) 0%, var(--vpm-purple-700, #5a4570) 100%);
  color: white;
  padding: 4rem 0;
}

.hero--blog .hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero--blog h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero--blog .hero__subheading {
  font-size: 1.25rem;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero--blog {
    padding: 2rem 0;
  }

  .hero--blog h1 {
    font-size: 2rem;
  }

  .hero--blog .hero__subheading {
    font-size: 1.125rem;
  }
}