.blog-hero {
  background: linear-gradient(135deg, var(--brand-red) 0%, #8f0f1f 100%);
  padding: 90px 0 70px;
  text-align: center;
  color: #fff;
}

.blog-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin: 0 0 14px;
}

.blog-hero p {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto;
  opacity: 0.95;
}

.blog-section {
  min-height: 300px;
}

/* Soro widget injects .soro-blog-list > .soro-blog-card — lay them out as a grid */
.soro-blog .soro-blog-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.soro-blog .soro-blog-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.soro-blog .soro-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .blog-hero {
    padding: 70px 0 50px;
  }
}
