
  .post_container {
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    height: 100%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: url("../images/png/cursors/pointer.png"), pointer;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1px;
    grid-auto-rows: 100px;
    min-width: 90%;
    max-width: 90%;
    margin-left: 3%;
    margin-top: 10px;
    grid-template-areas:
      "a a b b b b b b"
      "a a b b b b b b";
    align-items: start;
  }
  
  .thumbnail {
    grid-area: a;
  }
  .thumbnail img {
    border-radius: 15px 15px 15px 15px;
    width: 100%;
    max-width: 380px;
    max-height: 200px;
  }
  .title {
    grid-area: b;
    overflow: hidden;
  }
  .title .post_title {
    font-size: 2.1em;
    color: #00B6FF;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
  }
  .title .post_tldr {
      overflow: hidden;
      padding-left: 15px;
      padding-right: 15px;

  }
  .post_container:hover {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    -webkit-box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.3);
            box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.3);
  }