/* BLOG STYLES */
.blog-hero {
  background: linear-gradient(135deg, #0F0F0F 0%, #1c0000 60%, #2a0000 100%);
  padding: 60px 0 50px;
  position: relative;
}
.blog-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
}
.blog-section { padding: 48px 0 72px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white); border-radius: 12px;
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--red); font-weight: 700; margin-bottom: 8px;
}
.blog-title {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--dark); margin-bottom: 10px; line-height: 1.35;
}
.blog-excerpt {
  font-size: 0.88rem; color: var(--mid); line-height: 1.65;
  flex: 1; margin-bottom: 16px;
}
.blog-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid #F0EDE8;
}
.blog-date { font-size: 0.78rem; color: #aaa; }
.blog-read {
  font-size: 0.8rem; font-weight: 600; color: var(--red);
  text-decoration: none; letter-spacing: 0.3px;
  transition: color var(--transition);
}
.blog-read:hover { color: var(--red2); }
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}
