.blog-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
.blog-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 40%, #2d1f0f 100%);
}
.blog-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
}
.blog-hero__orb--1 { width: 420px; height: 420px; background: #ff4d00; top: -80px; right: -60px; }
.blog-hero__orb--2 { width: 300px; height: 300px; background: #e8e4dc; bottom: -40px; left: 10%; opacity: 0.15; }
.blog-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 100%);
}
.blog-hero__content { position: relative; z-index: 2; width: 100%; padding: 120px 0 48px; }
.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(232,228,220,0.25);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
}
.blog-tag__dot { width: 8px; height: 8px; border-radius: 3px; background: #ff4d00; }
.blog-card {
  border: 1px solid rgba(232,228,220,0.15);
  border-radius: 16px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.blog-card:hover {
  border-color: rgba(255,77,0,0.4);
  background: rgba(255,77,0,0.04);
  transform: translateY(-2px);
}
.blog-card__num {
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: rgba(255,77,0,0.35);
  margin-bottom: 12px;
}
.blog-toc { position: sticky; top: 100px; }
.blog-toc a {
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid rgba(232,228,220,0.1);
  color: rgba(232,228,220,0.55);
  transition: color 0.2s, padding-left 0.2s;
}
.blog-toc a:hover { color: #e8e4dc; padding-left: 8px; }
.blog-pullquote {
  border-left: 3px solid #ff4d00;
  padding: 20px 28px;
  margin: 40px 0;
  background: rgba(255,77,0,0.06);
  border-radius: 0 12px 12px 0;
  font-style: italic;
}
.blog-related {
  border-top: 1px solid rgba(232,228,220,0.15);
  padding-top: 64px;
  margin-top: 80px;
}
.blog-related__card {
  border: 1px solid rgba(17,17,17,0.15);
  border-radius: 16px;
  padding: 28px;
  background: #f5f3ef;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-related__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.blog-cta {
  border-radius: 20px;
  padding: 48px;
  background: linear-gradient(135deg, #ff4d00 0%, #c93a00 100%);
  color: #111;
  text-align: center;
  margin-top: 64px;
}
