.blog-section {
  padding: 50px 0;
}
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.blog-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 8px;
  transition: box-shadow 0.3s;
}
.blog-card:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.blog-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 15px;
}
.blog-title {
  font-size: 20px;
  margin-bottom: 10px;
}
.blog-desc {
  font-size: 14px;
  color: #666;
}
.blog-link {
  display: inline-block;
  margin-top: 10px;
  color: #c5a46d;
  text-decoration: none;
  font-weight: bold;
}
.blog-link:hover {
  text-decoration: underline;
    color: #c5a46d;
}

.back-blog {
    margin-top: 40px;
    margin-bottom: 40px;
}

.article-text img {
    width: 400px;
}