/** Shopify CDN: Minification failed

Line 95:8 Expected identifier but found whitespace
Line 95:10 Unexpected "{"
Line 95:19 Expected ":"

**/
.story-block {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.story-block .content {
  display: flex;
  gap: 5%;
  align-items: flex-end;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  padding: 5%;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  padding-top: 10%;
}

.story-block .content.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.story-block .content.inactive {
  opacity: 0;
  z-index: 1;
}

.story-block .image-container {
  width: 45%;
  height: 100%;
  aspect-ratio: 1/1;

  & img {
    object-fit: cover;
  }
}

.story-block .text-container {
  width: 40%;
  height: 100%;

  & p {
    font-size: 1.25rem;
  }

  & a {
    text-decoration: none;
    color: unset;
  }
}

.story-block .text-container .subheading {
  text-transform: uppercase;
  font-weight: normal;
  margin: 0;
}

.story-block .text-container .heading {
  margin-top: 0.5rem;
}

.story-block .text-container .breadcrumbs {
  margin-top: 2rem;
  display: flex;
  gap: 5%;
}

.story-block-wrapper .breadcrumb--link {
  border: none;
  background-color: transparent;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.story-block-wrapper .breadcrumb--link.active {
  color: {{ section.settings.active_breadcrumb_color }};
  font-weight: bold;
  opacity: 1;
}

@media screen and (max-width: 1200px) {
  .story-block .text-container {
    width: 50%;
  }
}

@media screen and (max-width: 800px) {
  .story-block-wrapper {
    height: fit-content !important;
    height: auto;
    transition: height 0.3s ease;
    position: relative;
  }

  .story-block {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    position: relative !important;
    top: auto !important;
  }

  .story-block .content {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    position: relative;
    padding: 0;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    transform: none;
    top: 0;
    min-height: fit-content;
    display: none;
  }

  .story-block .content.active {
    display: flex;
  }

  .story-block .image-container {
    width: 100%;
    height: 40vh;
  }

  .story-block .text-container {
    width: 100%;
    padding: 0;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

    & .breadcrumbs {
      order: 1;
      margin: 0 0 1rem;
    }

    & .heading-section {
      order: 2;
    }

    & p {
      order: 3;
    }

    & .text {
      display: none;
    }
  }

  .story-block .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: space-around;
  }
}