.blog-card {
  .card-text {
    h3 {
      @include multiline-ellipsis(2, 24px);
    }
  }

  .post-meta {
    @extend %flexbox-row;
    justify-content: space-between;
    align-items: baseline;

    a {
      color: $color-link-blue;
    }

    .category {
      margin: 0;
    }

    .date {
      display: none;
      font-weight: normal;
      text-align: right;
    }

    .author {
      display: none;
    }
  }

  .preamble {
    @include font-size(16);
    @include multiline-ellipsis(2, 16px);
    display: none;
  }

  .author {
    @extend %flexbox-row;
    align-items: center;
    margin-top: auto;

    img {
      border-radius: 100%;
      width: 20px;
      height: 20px;
      margin-right: $margin-normal;
    }

    .name {
      display: none;
    }
  }

  @include breakpoint(sm) {
    .card-text {
      padding: $margin-double;
    }

    .preamble {
      display: block;
    }

    .date {
      display: none;
    }

    .author {
      img {
        width: 36px;
        height: 36px;
      }

      .name {
        display: inline-block;
      }
    }

    .post-meta .date {
      display: inline-block;
    }
  }
}
