.blog {
  padding: 4rem 1rem;
  text-align: center;
}
.blog h2 {
  font-size: 2.2rem;
  color: #800080;
  margin-bottom: 2rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: auto;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(128,0,128,0.15);
}
.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-content {
  padding: 1.5rem;
  text-align: left;
}
.blog-content h3 {
  font-size: 1.2rem;
  color: #800080;
  margin-bottom: 0.6rem;
}
.blog-content p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.read-more {
  text-decoration: none;
  color: #800080;
  font-weight: 600;
  font-size: 0.95rem;
}
.read-more:hover {
  text-decoration: underline;
}
