.chef-tagline-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    max-width: var(--container-max-width);
    position: relative;
    overflow: hidden;
}

.chef-tagline-section__left-image {
    width: 57vw;
    max-width: 820px;
}

.chef-tagline-section__right-image {
    width: 57vw;
    max-width: 30rem;
    position: absolute;
    top: 50%;
    right: -1rem;
    transform: translate(0, -50%);
}

@media (min-width: 600px) {
    .chef-tagline-section__right-image {
        max-width: 40rem;
    }
}

@media (min-width: 1200px) {
    .chef-tagline-section__left-image {
        max-width: 720px;
    }

    .chef-tagline-section__right-image {
      right: -3rem;
    }
}
