.blog-hero {
  position: relative;
  background: #030a07;
  height: clamp(600px, 80vh, 767px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 60px; /* Header offset */
}

.blog-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blog-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 10, 7, 0.95) 0%,
    rgba(3, 10, 7, 0.8) 50%,
    rgba(3, 10, 7, 0.4) 100%
  );
}

.blog-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: auto auto 64px auto;
  width: 100%;
  padding: 0 clamp(1.25rem, 6vw, 8.25rem);
}

.blog-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2rem;
}

.blog-hero__breadcrumb-link {
  color: #e8744a;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-hero__breadcrumb-link:hover {
  color: #fff;
}

.blog-hero__breadcrumb-current {
  color: #a8a8a8;
  font-size: 0.875rem;
  font-weight: 600;
}

.blog-hero__content {
  max-width: 960px;
}

.blog-hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.blog-hero__title span {
  color: #3fc1d9;
  font-style: italic;
}

.blog-hero__subtitle {
  max-width: 630px;
  color: #a8a8a8;
  font-size: 1.1875rem;
  line-height: 1.3;
}

.blog-hero__bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #3fc1d9;
  z-index: 2;
}

@media (max-width: 768px) {
  .blog-hero {
    height: auto;
    padding: 120px 0 80px;
  }

  .blog-hero__subtitle {
    font-size: 1.125rem;
  }
}
