main.container.page-content {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  margin-bottom: 80px !important;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.blog-post {
  max-width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.blog-post:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.blog-thumbnail img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.blog-post h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #222;
}

.blog-post h2 a {
  text-decoration: none;
  color: #222;
}

.blog-post h2 a:hover {
  color: #f6c000;
}

.post-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 15px;
}

.post-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  padding: 10px 18px;
  background-color: #f6c000;
  color: #000;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.read-more:hover {
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
  }
}

