  /* 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 ;
  }

  .newsList {
    display: flex;
    flex-direction: column;
    width: calc(100% - 50px);
    padding: 25px;
    row-gap: 25px;
  }
  .news {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 25px;
    overflow: hidden;
  }
  .news .newsDetails {
    display: flex;
    flex-direction: column;
    padding: 25px;
    row-gap: 25px;
  }
  .news .newsDetails .newsTag {
    text-transform: uppercase;
    font-size: 1.0em;
    font-weight: 700;
    color: #D61F29;
  }
  .news .newsDetails .title {
    font-size: 1em;
    font-weight: 300;
  }
  .news .newsDetails a {
    padding: 5px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    background: url(../icons/white-arrow.svg), #D61F29;
    background-repeat: no-repeat;
    background-position: 85% center;
    background-size: 20px;
    width: 110px;
  }

  @keyframes ctaAnim {
    from { background-position: -10px 50%; }
    to { background-position: calc(100% - 20px) 50%; }
  }
  .news .newsDetails a:hover {
    background-color: black;
    animation-name: ctaAnim;
    animation-duration: 1s;
  }

  .posted_date {
      padding-left: 0px;
      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;
  }

  .newsList {
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
  }
  .newsList .news {
    padding: 25px;
    flex-direction: row;
  }
  .newsList .news img {
    width: 40%;
    height: auto;
    border-radius: 25px;
  }
  .newsList .news .newsDetails {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 25px;
  }
  .newsList .news .newsDetails .title, .news .newsDetails .newsTag {
    padding: 0;
  }
  .news .newsDetails a {

  }

} 

  /* GRID END */