/* .image-text-pair {
  display: flex;
  gap: 1rem;
  align-items: stretch;
}

.image-wrapper {
  display: flex;
  align-items: stretch;
}

.image-wrapper img {
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: 240px;
}

.image-text-pair .text-wrapper > :first-child {
  margin-top: 0;
}

.image-text-pair .text-wrapper > :last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .image-text-pair {
    flex-direction: column;
  }

  .image-wrapper img {
    max-width: 100%;
    height: auto;
  }
}
 */

 .image-text-pair {
    display: flex;
    gap: 1rem;
    align-items: stretch;
  }
  
  .image-wrapper {
    display: flex;
    align-items: stretch;
  }
  
  .image-wrapper img {
    height: 110%;
    object-fit: cover;
    display: block;
    max-width: 240px;
    clip-path: inset(0 0 10% 0);
  }
  
  .image-text-pair .text-wrapper > :first-child {
    margin-top: 0;
  }
  
  .image-text-pair .text-wrapper > :last-child {
    margin-bottom: 0;
  }
  
  @media (max-width: 767px) {
    .image-text-pair {
      flex-direction: column;
    }
  
    .image-wrapper img {
      max-width: 100%;
      height: auto;
      clip-path: none;
    }
  }
  

