/*Equalize column heights and pin buttons to bottom*/
/*Only apply to desktop*/
@media only screen and (min-width: 992px) {
    /*PARENT CONTAINER*/
    /*must set height based on content*/
    /*must set height because all child elements are absolutely positioned and collapse the parent height to 0*/
  .items_bb9d6a6721d348e881588b4d51d77d19 {
    height: 875px;
  }
    /*CHILD CONTAINER*/
    /*fills 100% of parent container*/
  .items_bb9d6a6721d348e881588b4d51d77d19 .item {
    height: 100%;
  }
    /*2ND CHILD OF .item*/
    /*fills 100% of container*/
  .items_bb9d6a6721d348e881588b4d51d77d19 .item .itemContent {
    height: 100%;
  }
    /*2ND CHILD OF .itemContent*/
    /*creates flex container with stacked elements*/
    /*height dependent on content*/
  .items_bb9d6a6721d348e881588b4d51d77d19 .item .itemContent .itemInnerContent {
    display: flex;
    flex-direction: column;
    height: 45%;
  }
    /*2ND CHILD OF .itemInnerContent*/
    /*will change depending on the number of paragraphs*/
    /*typically button is last so it will be the pseudo :last-child or :last-of-type*/
  .items_bb9d6a6721d348e881588b4d51d77d19 .item .itemContent .itemInnerContent p:nth-child(2) {
    margin-top: auto;
    padding-bottom: 0;
  }
    /*I DON'T KNOW WHAT THIS IS*/
    /*invisible added element of the last column - doesn't appear in the builder markup*/
    /*may or may not always appear in the last column after the button*/
  .items_bb9d6a6721d348e881588b4d51d77d19 .item .itemContent .itemInnerContent p:nth-child(3) {
    display: none;
  }
}