/* === Blog Cards === */
.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.blog-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background: linear-gradient(45deg, #f0f2f5, #e4e6ea);
}

/* === Horizontal Blog Cards === */
.blog-card.horizontal {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 15px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
  max-width: 600px;
}

.blog-card.horizontal:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.blog-thumb {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #f0f0f0;
}

.blog-info {
  flex: 1;
  padding: 0;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2c3e50;
}

.blog-author {
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-bottom: 4px;
}

.blog-preview {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}
