
.latest-post-container {
  a {
    text-decoration: none !important;
  }
  .post {
    padding: 10px;
    margin: .5rem 0 1rem 0;
    background-color: #fff;
    display: flex;
    flex-direction: row;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

    .post-thumbnail {
      position: relative;
      width: 25%;
      @media only screen and (max-width: 475px) {
        width: 35%
      }
      img {
        object-fit: cover;
        width: 100%;
        height: 100%;
      }
    }
    .post-thumbnail:after {
      display: block;
    }
    .post-content {
      width: 70%;
      height: 100%;


      h3, p, a {
        padding: 0px 0px 0px 30px;
        margin: 0px;
        @media only screen and (max-width: 600px) {
          padding: 0px 0px 0px 10px;
        }
      }
      h3 {
        color: black !important;
        font-size: 36px;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        max-height: 40px;
        line-height: 40px;

        @media only screen and (max-width: 600px) {
          font-size: 28px;
          line-height: 32px;
          max-height: 32px;
        }
      }
      p {
        color: black !important;
        font-size: 14px;
        line-height: 24px;
        max-height: 48px;
        overflow: hidden;
        margin: 0px;

        @media only screen and (max-width: 600px) {
          font-size: 12px;
          line-height: 20px;
          max-height: 60px;

        }
      }
      .meta-data {
        @media only screen and (max-width: 600px) {
          display: none;
        }
      }
      .action {
        z-index: 2;
        &:last-child {
          border-radius: 0 0 2px 2px;
        }
        background-color: inherit;
        border-top: 1px solid rgba(160, 160, 160, 0.2);
        position: relative;
        padding-top: 8px;
        padding-bottom: 8px;
        margin-top: 8px;
        p {
          color: red !important;
        }
      }
    }
  }
}
