.blog-list-wrap {
  max-width: 980px;
  margin: 0 auto;
}
.blog-list-item {
  margin: 0 0 26px 0;
  padding: 0 0 26px 0;
  border-bottom: 1px solid #eeeeee;
}
.blog-list-item:last-child {
  border-bottom: 0;
}
.blog-list-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.blog-list-img {
  flex: 0 0 280px;
  max-width: 280px;
}
.blog-list-img img {
  display: block;
  width: 280px;
  height: 190px;
  object-fit: cover;
  border: 1px solid #eeeeee;
  border-radius: 4px;
}
.blog-list-body {
  flex: 1 1 auto;
  min-width: 0;
}
.blog-list-title {
  margin: 0 0 10px 0;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 500;
}
.blog-list-title a {
  color: #e96b56;
  text-decoration: none;
}
.blog-list-title a:hover {
  color: #d94b34;
  text-decoration: underline;
}
.blog-list-excerpt {
  margin: 0 0 14px 0;
  color: #555555;
  font-size: 15px;
  line-height: 1.65;
  max-height: 5.0em;
  overflow: hidden;
}
.blog-list-excerpt p {
  margin: 0;
}
.blog-list-more {
  display: inline-block;
  color: #333333;
  text-decoration: none;
  font-size: 15px;
  line-height: 1;
  padding: 0;
  border-bottom: 1px solid #e96b56;
}
.blog-list-more:hover {
  color: #e96b56;
  text-decoration: none;
}
.blog-list-pager {
  margin: 0 0 25px 0;
  padding: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .blog-list-card {
    display: block;
  }
  .blog-list-img {
    max-width: 100%;
    margin: 0 0 14px 0;
  }
  .blog-list-img img {
    width: 100%;
    height: 240px;
    max-height: none;
    object-fit: cover;
  }
  .blog-list-title {
    font-size: 19px;
  }
  .blog-list-excerpt {
    max-height: none;
  }
}
