/**************************************************************
   Posts
 **************************************************************/

 .post {
  display: flex;
  flex-direction: column;
  min-height: fit-content;
  position: relative;
  contain: content;
  margin-bottom: 1.5rem;
  border: 1px solid #dddddd;
}

  .post-top {
    display: grid;
    grid-template-columns: repeat(2, auto);
    flex-direction: row;
    justify-content: start;
    gap: 0.5em;
    align-items: center;
    border-bottom: #dddddd 1px solid;
  }

  .post .content {
    padding-top: 0.5rem;
    max-height: 100%;
    max-width: 100%;
    border-top: #dddddd 1px solid;
  }
  
  .post img {
    max-width: 100%;
    max-height: 460px;
  }
  
  .post .thumbnail {
    max-width: 100%;
    max-height: fit-content;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  
  .post-img-container{
    max-width: 100%;
    max-height: 460px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    line-height: 0vw;
    border-bottom: #dddddd 1px solid;
  }

  .post-title {
    padding-top: 10px;
    padding-Bottom: 10px;
    font-size: 1rem;
  }

  .post-author {
    padding-top: 10px;
    padding-Bottom: 10px;
    font-size: 1rem;
  }
  
  .post .month, .day {
    font-size: 0.8rem;
    color: #7f7f7f;
  }
  
  .post p {
    margin: 1rem 1rem 1rem 1rem;
    padding:  0 0 0 10px;
    word-wrap: break-word;
    white-space: normal !important; 
  }

  .post .content {
    padding: 1rem;
  }

  .tags {
    font-size: 0.7rem;
    color: #7f7f7f;
  }