/* Ensure all slide containers in the carousel have equal height */
[data-react-component="PeopleCarousel"] [role="group"][aria-roledescription="slide"] {
  display: flex;
}

/* Make card fill the slide height */
[data-react-component="PeopleCarousel"] [data-testid="person-card"] {
  height: 100%;
}

/* Make the text container grow to fill available space */
[data-react-component="PeopleCarousel"] [data-testid="person-card"] > div:last-child {
  flex-grow: 1;
}

/* Push the button to the bottom */
[data-react-component="PeopleCarousel"] [data-testid="person-card"] [data-testid="button"] {
  margin-top: auto;
}