@charset "UTF-8";

.new-list {
  display: flex;
  margin-bottom: 40px;
}
.new-list > li:nth-child(1) {
  width: 32.5%;
  max-width: 345px;
  border-right: solid 1px #ccc;
  padding-right: 25px;
}
.new-list > li:nth-child(2) {
  width: 35%;
  max-width: 370px;
  padding: 0 25px;
}
.new-list > li:nth-child(3) {
  width: 32.5%;
  max-width: 345px;
  border-left: solid 1px #ccc;
  padding-left: 25px;
}
.new-list .article-head {
  display: flex;
  margin-bottom: 20px;
}
.new-list .article-head .article-info {
  width: calc(49% - 20px);
  flex-direction: column;
  margin-right: 20px;
}
.new-list .article-head .article-info .article-date {
  font-size: 13px;
  margin-bottom: 10px;
}
.new-list .article-head .article-info .category-list {
  display: flex;
  flex-wrap: wrap;
}
.new-list .article-head .article-info .category-list li {
  background-color: #eee;
  font-size: 11px;
  line-height: 1;
  padding: 3px 6px;
  margin: 0 10px 5px 0;
}
.new-list .article-head .article-img {
  width: 51%;
  text-align: right;
}
.new-list .article-head .article-img img {
  height: 100px;
  object-fit: cover;
}
.new-list .company-name {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}
.new-list .article-title {
  font-size: 15px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .new-list {
    flex-direction: column;
    gap: 30px 0;
  }
  .new-list > li:nth-child(1) {
    width: 100%;
    max-width: 100%;
    border-right: none;
    padding: 0;
  }
  .new-list > li:nth-child(2) {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
  .new-list > li:nth-child(3) {
    width: 100%;
    max-width: 100%;
    border-left: none;
    padding: 0;
  }
  .new-list .article-head {
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-bottom: 10px;
  }
  .new-list .article-head .article-info {
    width: calc(66% - 15px);
    margin: 0 0 0 15px;
  }
  .new-list .article-head .article-img {
    width: 34%;
    max-width: 120px;
    text-align: left;
  }
  .new-list .article-head .article-img img {
    width: 120px;
    height: auto;
  }
  .new-list .company-name {
    font-size: 14px;
  }
  .new-list .article-title {
    font-size: 14px;
  }
}