.monza-people-button-card__container {
  --monza-people-button-card-width-desktop: 274px;
  --monza-people-button-card-width-mobile: 100%;

  align-items: flex-start;
  background: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: var(--monza-people-button-card-width-mobile);

  @media (min-width: 450px) { /* in this case we break earlier */
    width: var(--monza-people-button-card-width-desktop);
  }

  .monza-people-button-card__image {
    height: 9.375rem;
    object-fit: cover;
    width: 100%;
  }

  .monza-people-button-card__caption {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    padding: 0.7rem 1rem 1rem;
  }

  .monza-people-button-card__caption-name {
    color: var(--color-neutral-750);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
  }

  .monza-people-button-card__caption-role {
    color: var(--color-neutral-750);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }

  .monza-people-button-card__button {
    padding-top: 1rem;
    width: 100%;

    > a > button {
      font-size: 1.125rem;
      width: 100%;
    }
  }
}
