
/* Blog Page Styles */
.page-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 15px;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.blog-desc {
  font-size: 0.95rem;
  color: #666;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .blog-card img {
    height: 150px;
  }
  .blog-title {
    font-size: 1rem;
  }
  .page-title {
    font-size: 1.6rem;
  }
}
