
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.blog-hero {
  background: #1f2937;
  color: white;
  text-align: center;
  padding: 80px 0;
}

.btn-primary {
  display: inline-block;
  background: #2563eb;
  color: white;
  padding: 12px 24px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 6px;
}

/* FILTER */
.blog-filter {
  text-align: center;
  margin: 40px 0;
}

.filter-btn {
  display: inline-block;
  padding: 8px 18px;
  margin: 5px;
  border: 1px solid #ddd;
  border-radius: 20px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.filter-btn:hover {
  background: #2563eb;
  color: white;
}

/* CATEGORY TITLE */
.category-title {
  margin-top: 60px;
  font-size: 24px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #2563eb;
  text-decoration: none;
}

/* CTA */
.blog-cta {
  background: #111827;
  color: white;
  text-align: center;
  padding: 60px 0;
}
