/** At this monitor size it is wider than Figma */
.image-feature {
  background-color: var(--onion);
}
.image-feature .grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    direction: rtl;
  }
.image-feature .image-feature--prose {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-left: 6rem;

  }
.image-feature .image-feature--prose h2,.image-feature .image-feature--prose h3,.image-feature .image-feature--prose p,.image-feature .image-feature--prose span {
      color: var(--black);
      text-align: left;
    }
.image-feature .image-feature--prose h3 {
      font-size: 3.625rem;
      margin-top: .5rem;
      margin-bottom: .4rem;
      font-weight: normal;
    }
.image-feature .image-feature--prose span {
      font-size: 0.875rem;
      text-transform: uppercase;
    }
.image-feature .image-feature--prose button {
      margin-top: 3rem;
    }
.image-feature .image-feature--media {
    padding: 1rem 1rem;
  }
.image-feature .image-feature--media figure {
      aspect-ratio: 1;
      height: 30rem;
      width: 30rem;
    }
.image-feature .image-feature--media figure img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
      }
