.collection-hero-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  .banner-container {
    display: flex;
    flex-direction: row;
  }

  .banner-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
  }

  .banner-heading {
    font-weight: 400;
    font-style: Italic;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: -1px;
    margin-bottom: 16px;
  }

  .banner-subheading {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0px;
  }

  .banner-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    max-width: fit-content;
  }

  .banner-button:hover {
    background-color: #333;
    transform: translateY(-2px);
  }

  .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .banner-image-container {
    position: relative;
    overflow: hidden;
  }

  .banner-image-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  /* Desktop styles */
  @media screen and (min-width: 768px) {
    .banner-container {
      flex-direction: column;
      min-height: 500px;
    }

    .banner-content {
      width: 50%;
      padding: 32px 80px;
    }

    .banner-image-container {
      width: 50%;
    }

    .banner-heading {
      font-size: 3rem;
    }
  }

  /* Mobile styles */
  @media screen and (max-width: 767px) {
    .banner-container {
      flex-direction: column;
    }

    .banner-content {
      order: 2;
      padding: 24px 16px;
      text-align: left;
    }

    .banner-image-container {
      order: 1;
      height: 300px;
    }

    .banner-heading {
      font-size: 2rem;
    }

    .banner-button {
      margin: 0 auto;
    }
  }
}

.breadcrumbs {
  position: absolute;
  top: 32px;
  left: 80px;
  padding: 0;
  ul {
    margin: 0;
  }
  @media screen and (max-width: 767px) {
    position: unset;
  }
}
.seo-breadcrumb ul {
  margin: 0;
}
.seo-breadcrumb ul li {
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
}
.seo-breadcrumb {
  padding-top: 24px;

  @media screen and (max-width: 767px) {
    display: block !important;
    margin-bottom: 12px;
  }
}

.banner-content {
  .breadcrumbs {
    position: absolute;
    top: 32px;
    left: 80px;
    padding: 0;
    ul {
      margin: 0;
    }
    @media screen and (max-width: 767px) {
      position: unset;
    }
  }
  .seo-breadcrumb ul li {
    font-weight: 500;
    text-transform: uppercase;
  }
  .seo-breadcrumb {
    @media screen and (max-width: 767px) {
      display: block !important;
      margin-bottom: 12px;
    }
  }
}
