.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 1rem;
}

.blog-content h2 {
  margin: 0;
  font-size: 1.2rem;
  color: #333;
}

.blog-content h2 a {
  text-decoration: none;
  color: inherit;
}

.blog-content h2 a:hover {
  text-decoration: underline;
}

.blog-content p {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

.blog-date {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}
