/* Blog pages (light touch, matches existing theme) */
.hero-blog {
  position: relative;
}
.hero-blog:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,12,58,.65), rgba(2,12,58,.85));
}
.hero-blog > .container {
  position: relative;
  z-index: 1;
}

.blog-card {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
}
.blog-card-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f3f4f6;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}
.blog-card:hover .blog-card-media img {
  transform: scale(1.03);
}
.blog-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 28px;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.blog-meta .badge {
  background: rgba(2,12,58,.08);
  color: #020c3a;
  border: 1px solid rgba(2,12,58,.12);
  font-weight: 600;
}
.blog-meta .date {
  font-size: 12px;
  color: #6b7280;
}

.blog-cover img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.08);
}

.blog-content {
  font-size: 16px;
  line-height: 1.85;
}
.blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.blog-content h2, .blog-content h3, .blog-content h4 {
  margin-top: 1.2em;
  margin-bottom: .6em;
}
.blog-content p {
  margin-bottom: 1em;
}

.blog-empty {
  text-align: center;
  padding: 48px 18px;
  border: 1px dashed rgba(0,0,0,.15);
  border-radius: 16px;
  background: #fff;
}
.blog-empty .icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(2,12,58,.08);
  color: #020c3a;
  margin-bottom: 12px;
}
