.blog-card-vertical {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  max-width: 400px;
  margin: 1rem auto;
}

.blog-card-vertical:hover {
  transform: translateY(-5px);
}

.blog-image-vertical {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content-vertical {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.tag {
  background-color: #ff6243;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  font-weight: 600;
}

.blog-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0.25rem 0 0.5rem;
  color: #111;
}

.blog-excerpt {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.blog-date {
  font-size: 0.85rem;
  color: #666;
}

.read-more {
  background-color: #2f54eb;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.read-more:hover {
  background-color: #1d39c4;
}
