/* ===============================
   BLOG — PREMIUM / CLEAN
=============================== */

.blog {
  background: #fff;
  padding: 48px 0 96px;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.blog-header {
  max-width: 680px;
  margin-bottom: 48px;
}

.blog-header h1 {
  font-size: 32px;
  margin-bottom: 14px;
}

.blog-lead {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* CARD */
.blog-card {
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s ease, transform .2s ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,.08);
}

/* IMAGE */
.blog-thumb img,
.blog-thumb-placeholder {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: #f0f0f0;
}

.blog-thumb-placeholder {
  background: linear-gradient(135deg, #f0f0f0, #e6e6e6);
}

/* CONTENT */
.blog-content {
  padding: 18px;
}

.blog-content time {
  font-size: 12px;
  color: #777;
}

.blog-title {
  font-size: 18px;
  margin: 8px 0 10px;
}

.blog-title a {
  text-decoration: none;
  color: #111;
}

.blog-title a:hover {
  text-decoration: underline;
}

.blog-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

/* PAGINATION */
.blog-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.blog-pagination .page-numbers {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  text-decoration: none;
  color: #111;
}

.blog-pagination .current {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* MOBILE */
@media (max-width: 600px) {
  .blog-header h1 {
    font-size: 26px;
  }

  .blog-thumb img,
  .blog-thumb-placeholder {
    height: 180px;
  }
}
