body {
  background-color: var(--ink);
  color: var(--snow);
}

.business-intro-image {
  position: relative;
  &::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--snow);
    opacity: 10%;
    position: absolute;
    top: 0.75rem;
    left: -1rem;
  }
  & img {
    object-fit: cover;
    aspect-ratio: 4 / 3;
    width: 100%;
    position: relative;
  }
  @media (min-width: 768px) {
    &::before {
      top: 1.5rem;
      left: -2rem;
    }
  }
  @media (min-width: 1024px) {
    flex: 1 1 0%;
    &::before {
      top: 1rem;
      left: -1.5rem;
    }
    & img {
      aspect-ratio: unset;
      height: 100%;
    }
  }
  @media (min-width: 1200px) {
    &::before {
      top: 2rem;
      left: -3rem;
    }
  }
}

.business-core-product-image {
  position: relative;
  width: 100%;
  &::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--snow);
    opacity: 10%;
    position: absolute;
    top: 0.625rem;
  }
  & img {
    object-fit: cover;
    aspect-ratio: 3 / 2;
    width: 100%;
    position: relative;
  }
  &.business-core-product-image--1::before {
    left: 0.625rem;
  }
  &.business-core-product-image--2::before {
    left: -0.625rem;
  }
  @media (min-width: 768px) {
    &::before {
      top: 1.25rem;
    }
    &.business-core-product-image--1::before {
      left: 1.25rem;
    }
    &.business-core-product-image--2::before {
      left: -1.25rem;
    }
  }
  @media (min-width: 1024px) {
    height: 100%;
    & img {
      aspect-ratio: unset;
      height: 100%;
    }
  }
}

.business-core-product-typo {
  line-height: 1;
  font-family: var(--font-display-1);
  font-size: 2rem;
  white-space: nowrap;
  opacity: 20%;
  position: absolute;
  top: -0.75em;
  left: calc(1.25rem - 0.3571428571em);
  @media (min-width: 768px) {
    font-size: 3rem;
    left: calc(2.5rem - 0.3571428571em);
  }
  @media (min-width: 1024px) {
    font-size: 2.5rem;
    left: calc(3.75rem - 0.3571428571em);
  }
  @media (min-width: 1200px) {
    font-size: 3.5rem;
    left: calc(5rem - 0.3571428571em);
  }
}

.business-solutions-title {
  background-color: var(--ink);
  width: fit-content;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -62.7450980392%);
}

