/* Blog Hero */
.blog-hero {
  background-color: #fdf9f4;
  padding: 80px 0 40px;
  text-align: center;
}

.blog-hero h1 {
  font-size: 2.8rem;
  color: #a68554;
}

.blog-hero p {
  font-size: 1.2rem;
  color: #444;
  margin-top: 10px;
}

/* Blog Posts Grid */
.blog-posts {
  padding: 40px 0 80px;
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.blog-card {
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-radius: 10px;
  overflow: hidden;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-content {
  padding: 20px;
}

.blog-content h2 {
  font-size: 1.4rem;
  color: #a68554;
  margin-bottom: 10px;
}

.blog-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 15px;
}

.blog-content a {
  color: #a68554;
  text-decoration: none;
  font-weight: bold;
}

.blog-content a:hover {
  color: #8d7045;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-grid {
    flex-direction: column;
    align-items: center;
  }

  .blog-hero h1 {
    font-size: 2rem;
  }
}
