.blog-banner {
  position: relative;
  width: 100%;
  height: 34.375rem;
  overflow: hidden;
}

.blog-banner__bg {
  position: absolute;
  inset: 0;
}

.blog-banner__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom gradient overlay — transparent top → dark bottom */
.blog-banner__gradient-bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 61.067%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Top gradient overlay — warm dark top → transparent */
.blog-banner__gradient-top {
  position: absolute;
  top: -0.1375rem;
  left: 0;
  width: 100%;
  height: 11.9888rem;
  background: linear-gradient(
    180deg,
    rgba(19, 9, 1, 0.5) 0%,
    rgba(19, 9, 1, 0) 100%
  );
 
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
  z-index: 2;
}

.blog-banner__content {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 2.875rem 4.375rem;
  z-index: 3;
}

.blog-banner__title {
  font-family: "Averta Std CY", sans-serif;
  font-size: 2.625rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.0625rem;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

@media screen and (max-width: 639.98px) {
  .blog-banner {
    height: 10.04rem;
    margin-top: 3.43rem;
  }

  .blog-banner__content {
    padding:  0.62rem 1rem;
  }

  .blog-banner__title {
    font-size: 1.75rem;
    white-space: normal;
  }
}
