.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 0;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-item {
  background: var(--light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 0.875rem;
  color: var(--secondary);
  margin-bottom: 12px;
  display: block;
}

.blog-item-title {
  display: block;
  text-decoration: none;
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.blog-item-title:hover {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--text);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--primary-dark);
}

.read-more::after {
  content: "→";
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.read-more:hover::after {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .blog-list {
    grid-template-columns: 1fr;
  }

  .blog-header {
    padding: 40px 0 30px;
  }

  .blog-title {
    font-size: 2rem;
  }
}
