.blog-featured img {
  width: 100%;
  display: block;
  /* border-radius: 16px; */
}

.blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

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

.blog-card-lg img {
  height: 420px;
  object-fit: cover;
}

.blog-card-md img {
  height: 220px;
  object-fit: cover;
}

.blog-card-sm img {
  height: 180px;
  object-fit: cover;
}

/* Overlay big card */
.blog-overlay {
  position: absolute;
  bottom: 0;
  padding: 30px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  width: 100%;
}

.blog-overlay h3 {
  font-weight: 700;
}

/* Content */
.blog-content {
  padding: 16px 18px 20px;
}

.blog-category {
  font-size: 12px;
  color: var(--bg-primary);
  font-weight: 600;
  text-transform: uppercase;
}

.section-label {
  letter-spacing: 2px;
  font-weight: 700;
  color: #666;
}


.blog-btn {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bg-secondary);
  text-decoration: none;
  transition: .25s;
}

.blog-btn:hover {
  color: #000;
  transform: translateX(4px);
}


/* detail blogs */
