  /* COMPANY HEADER */
  .page_heading {
    display: flex;
    flex-direction: column;
    padding: 50px 0;
  }
  .breadcrumb {
    display: flex;
    padding-left: 25px;
    color: #D61F29;
    text-transform: uppercase;
    font-weight: 700;
  }
  .heading {
    font-weight: 600;
    font-size: 2em;
    line-height: 2rem;
    padding: 0 25px ;
  }

  .triGrid {
    display: flex;
    flex-direction: column;
    width: calc(100% - 50px);
    padding: 25px;
    row-gap: 25px;
  }
  .item {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
    padding-bottom: 25px;
  }
  .item .title {
    font-size: 1em;
    font-weight: 300;
    padding: 25px;
  }
  .item a {
    padding: 25px;
    width: 100px;
    background: #D61F29;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    text-decoration: none;
    color: white;
  }
  .triGrid .item:last-child {
    height: 0;
    border: none;
  }

  .posted_date {
      padding-left: 25px;
      padding-top: 25px;
      padding-bottom: 0px;
      font-size: 1em;
      font-style: italic;
      color: #919191;
    }

  /* COMPANY HEADER END */


@media only screen and (min-width: 768px) {

  .page_heading {
    width: 80%;
    margin: 0 auto;
  }

  .triGrid {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 25px;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
  }
  .triGrid .item {
    width: 30%;
    justify-content: space-between;
  }

} 

  /* GRID END */