.svs-blog-hero {
  background: var(--svs-navy);
  color: var(--svs-white);
  padding: 3.5rem 2rem;
  text-align: center;
}

.svs-blog-hero h1 {
  margin-bottom: 1rem;
  color: var(--svs-white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.svs-blog-hero p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.62);
}

.svs-blog-section {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
}

.svs-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1.75rem;
}

.svs-post-card {
  overflow: hidden;
  border: 1px solid var(--svs-line);
  border-radius: 10px;
  background: var(--svs-white);
  transition: transform 0.2s, box-shadow 0.2s;
}

.svs-post-card:hover,
.svs-post-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 31, 61, 0.12);
}

.svs-post-card-link {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: var(--svs-ink);
  text-decoration: none;
}

.svs-post-thumb {
  display: flex;
  min-height: 140px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--svs-navy), #1a3561);
  font-size: 3rem;
}

.svs-post-thumb--money { background: linear-gradient(135deg, #1a0a2e, #3d1a6e); }
.svs-post-thumb--mindset { background: linear-gradient(135deg, #0d1f0d, #1a3d1a); }

.svs-post-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.svs-post-category {
  margin-bottom: 0.5rem;
  color: var(--svs-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.svs-post-title {
  margin-bottom: 0.6rem;
  color: var(--svs-navy);
  font-size: 1.15rem;
  line-height: 1.35;
}

.svs-post-excerpt {
  flex: 1;
  margin-bottom: 1rem;
  color: var(--svs-gray);
  font-size: 0.9rem;
}

.svs-post-readmore {
  color: var(--svs-gold);
  font-size: 0.85rem;
  font-weight: 600;
}

.svs-blog-section .navigation.pagination { margin-top: 2rem; }

@media (max-width: 600px) {
  .svs-blog-hero,
  .svs-blog-section { padding-inline: 1.25rem; }
}
