/* new blog */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.see-all {
  font-size: 14px;
  text-decoration: none;
  color: #555;
}

/* FIX CARD LAYOUT */
.blog-card.vertical {
  display: block; /* remove flex */
  padding: 0;
  overflow: hidden;
}

/* IMAGE TOP */
.blog-card.vertical img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

/* TEXT */
.blog-card.vertical .blog-info {
  padding: 12px 6px;
}

/* TITLE */
.blog-card.vertical h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* WATCH LINK (YOUR THEME) */
.watch-link {
  font-size: 13px;
  font-weight: 600;
  color: #f24b22;
  text-decoration: none;
}

.watch-link:hover {
  color: #ff8307;
}