.blog-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.blog-section h2 {
  text-align: center;
  color: #B19540;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
}

.blog-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px;
  text-align: center;
  max-width: 350px;
  width: 100%;
}

.blog-card .image-wrapper {
  height: 240px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-card h3 {
  color: #B19540;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-card a.button {
  display: block;
  width: 100%;
  background-color: #B19540;
  color: white;
  text-align: center;
  padding: 12px 0;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.blog-card a.button:hover {
  opacity: 0.85;
}
