.blog-post-item:last-child .blog-post-card {
  margin-bottom: 25px;
}

.blog-post-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 70px;
  }

  .blog-post-card .blog-post-title h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.5rem;

    @media screen and (max-width: 749px) {
      font-size: 25px;
    }

    @media screen and (max-width: 544px) {
      font-size: 18px;
      line-height: 1.2;
    }
  }

  .blog-post-item .blog-post-card__image-container {
    width: 100%;
  }

  .blog-post-item .blog-post-card__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .blog-post-card .blog-post-description {
    font-size: 20px;
    line-height: 30px;
    margin-top: 5px;
    margin-bottom: 30px;

    @media screen and (max-width: 749px) {
      font-size: 16px;
    }

    @media screen and (max-width: 544px) {
      font-size: 13px;
    }
  }

  .blog-post-card .blog-post-description p {
    display: inline;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
  }

  .blog-post-card .blog-post-description a {
    color: #286090;
    display: inline;
  }

  .blog-post-card .blog-post-information,
  .blog-post .blog-post-information {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #000;
  }

  .blog-post-card .blog-post-information .blog-post-date,
  .blog-post-card .blog-post-information .blog-post-category,
  .blog-post-card .blog-post-information .blog-post-category a,
  .blog-post .blog-post-information .blog-post-date,
  .blog-post .blog-post-information .blog-post-category,
  .blog-post .blog-post-information .blog-post-category a {
    font-size: 14px;
    color: #999;
    margin-bottom: 0;

    @media screen and (max-width: 749px) {
      font-size: 12px;
    }

    @media screen and (max-width: 544px) {
      font-size: 10px;
    }
  }

  .blog-post-card .blog-post-information p.blog-post-category,
  .blog-post .blog-post-information p.blog-post-category {
    margin-top: 0;
  }

  .blog-post-card .blog-post-information .blog-post-category a,
  .blog-post .blog-post-information .blog-post-category a {
    text-decoration: unset;
  }

  .blog-post-card .blog-post-information .blog-post-category a:hover,
  .blog-post .blog-post-information .blog-post-category a:hover {
    color: #000;
  }
