.blog-hero {
  position: relative;
  width: 100%;
}

.blog-hero__bg {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 0 0 50px 50px;
}

.blog-hero__bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.blog-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 42, 68, 0.4) 0%,
    rgba(15, 42, 68, 0.8) 100%
  );
  z-index: -1;
}

.blog-hero__container {
  max-width: var(--vw-max, 1440px);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.blog-hero__title {
  font-family: var(--font-display, serif);
  font-size: clamp(60px, 10vw, 120px);
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

.blog-hero__featured-wrap {
  margin-top: -150px;
  position: relative;
  z-index: 10;
  padding: 0 40px;
}

.blog-hero__featured-container {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
}

.blog-featured-card {
  background: #fff;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-featured-card__image-wrap {
  flex: 0 0 45%;
  height: 350px;
}

.blog-featured-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-card__content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-card__title {
  font-family: var(--font-display, serif);
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--color-brand-navy-deep, #0f2a44);
}

.blog-featured-card__title a {
  text-decoration: none;
  color: inherit;
}

.blog-featured-card__excerpt {
  color: #666;
  line-height: 1.6;
  font-size: 18px;
}

@media (max-width: 991px) {
  .blog-featured-card {
    flex-direction: column;
  }
  .blog-featured-card__image-wrap {
    flex: none;
    height: 250px;
  }
  .blog-hero__bg {
    height: 50vh;
  }
  .blog-hero__container {
    justify-content: center;
    padding-bottom: 80px;
  }
  .blog-hero__featured-wrap {
    margin-top: -100px;
  }
}
