#whatcomes {
  --translation: 20rem;
  width: unset;

  position: relative;
  margin-top: 8rem;
  
  .whatcomes__background {
    position: absolute;
    left: 0;
    width: calc(50vw + 26rem);
    margin-left: -1rem;
    height: 100%;
    background-color: var(--background);
    box-shadow: 0px 2px 4px 0px #aaaaaaff;
    border-radius: 0 2rem 2rem 0;
  }
  
  .container {
    position: relative;
    right: var(--translation);
    border-radius: 0 2rem 2rem 0;

    .whatcomes__content {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 1rem;
      left: var(--translation);

      z-index: 6;
      padding: 1rem;
      padding-block: 4rem;
      border-radius: 1rem;
      overflow: hidden;

      .whatcomes__image {
        display: grid;
        justify-content: center;

        position: relative;
        overflow: hidden;
        border-radius: 1rem;

        video {
          height: 500px;
          border-radius: 1rem;
        }
      }

      .whatcomes__mobile {
        display: contents;
      }

      .whatcomes__text {
        align-self: center;
        background-color: var(--dark);
        padding: 2.25rem;
        border-radius: 1rem;
        color: white;

        h1,
        h4 {
          margin: 0;
        }

        .whatcomes__title {
          margin-bottom: 2rem;

          h2 {
            margin-top: 0;
            margin-bottom: 1rem;
            font-weight: 200;
            font-size: 3rem;

            @media screen and (max-width: 920px) {
              font-size: 2rem;
            }

            b {
              font-weight: 700;
            }
          }
        }

        h4 {
          font-weight: 500;
          font-style: italic;
        }

        .whatcomes__subtitle {
          margin-bottom: 1rem;
          line-height: 100%;
          font-weight: 200;
        }

        p {
          font-size: 1rem;
          line-height: 1.75rem;
          font-weight: 300;
          margin-bottom: 0;
        }
      }
    }
  }

  @media screen and (max-width: 1080px) {
    margin-block: 0;
    margin-bottom: 8rem;

    .whatcomes__background {
      display: none;
    }

    .container {
      box-shadow: none;
      background-color: transparent;

      .whatcomes__content {
        padding: 0;
        
        .whatcomes__title {
          color: black;

          h2 {
            font-size: 3rem;
            text-align: center;
          }
          
          b {
            color: var(--primary);
          }
        }
        
        .whatcomes__text {
          padding: 0;
          background-color: white;
          color: var(--dark);
        }

        .whatcomes__mobile {
          display: grid;
          background-color: var(--dark);
          color: white;
          padding: 2rem;
          border-radius: 2rem;

          h4 {
            text-align: center;
          }
        }
      }
    }
  }

  @media screen and (max-width: 920px) {
    .container {
      .whatcomes__content {
        grid-template-columns: 1fr;

        .whatcomes__image {
          grid-row: 2;
          justify-content: unset;

          video {
            background-color: var(--dark);
            width: 100%;
          }
        }
      }
    } 
  }
}
