/* =========================
   BLOG LIST PREMIUM
========================= */

.blog-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all .25s ease;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

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

.blog-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 10px;
}

.blog-card-excerpt {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 14px;
}

.blog-card-meta {
  margin-top: auto;
  font-size: 0.75rem;
  color: #999;
}
