.post-info-list {
  padding-bottom: 30px;
}

.post-info-list li {
  display: flex;
  align-items: center;
}

.post-info-list li::before {
  content: none;
}

.post-info-list li .img {
  width: 100%;
  height: auto;
}

.post-info-list li .box {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.post-info-list li .box a {
  width: 100%;
  font-size: 14px;
  color: var(--black);
  font-weight: bold;
  margin-top: 5px;
}

.post-info-list li .box .txt {
  font-size: 14px;
  width: 100%;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}


.post-info-list li .box .cat-label {
  font-size: 14px;
  flex-shrink: 0;
  padding: 2px 10px;
  color: var(--white);
  background-color: var(--main-color);
  margin: 5px 10px 5px 5px;
}

.post-info-list li .box .cat-label:first-child {
  margin-left: 0;
}

.post-info-list li .box .date-label {
  font-size: 14px;
  flex-shrink: 0;
  margin: 5px 5px 5px 0;
}

@media screen and (max-width: 960px) {
  .post-info-list li {
    flex-wrap: wrap;
  }
  .post-info-list li a {
    width: 100%;
  }
  .post-info-list li .box {
    margin: 10px 0;
  }
}

@media screen and (min-width: 960px) {
  .post-info-list li .img {
    width: 130px;
    height: 100px;
    flex-shrink: 0;
    margin-right: 20px;
  }
  .post-info-list li .img img {
    width: 130px;
    height: 100px;
    object-fit: cover;
  }
}
