/* ============================================================
   css/blog-landing-style.css
   Blog-specific styles only — base/nav/footer handled by style.css
   ============================================================ */

.blog-main {
  padding-top: 6rem;
  min-height: 70vh;
  display: flex;
}

.blog-categories {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.category-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.category-card {
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
  border-top: 4px solid #2b3185;
}

.category-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #2b3185;
}

.category-card p {
  color: #555;
  margin-bottom: 1.5rem;
}
