.posts-cards {
  .horizontal-population-cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0;
    row-gap: 1rem;

    .posts-card {
      width: 100%;
    }
  }

  @media (min-width: 767px) {
    .horizontal-population-cards {
      column-gap: 2%;

      .posts-card {
        width: 32%;
      }
    }
  }

  .posts-card {
    border: 0;
  }
  
  .card-img-top {
    margin-bottom: 0.2rem;
    height: 250px;
    object-fit: cover;
  }
  
  .card-footer {
    display: flex;
    padding: 0;
    max-width: 30rem;
    margin: 0;
    border-top: 0;
  }

  .post-author-image {
    display: flex;
    flex-grow: 0;
    padding-right: 0.5rem;

    .post-avatar {
      display: flex;
      width: 2.3rem;
      height: 2.3rem;
      border-radius: 50%;
      justify-content: center;
      align-items: center;
    }
  }
  
  .author-metadata {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-size: 90%;

    .post-author-name {
      font-weight: 900;
    }

    .post-publish-date {
      font-weight: 500;
    }
  }
  
  .post-metadata {
    display: flex;
    align-items: center;
    
    .view-counter {
      margin-left: 0.2rem;
    }
  }
}