@charset "UTF-8";

.news_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 50px 0 10px;
  margin-bottom: 0;
}
.news_item {
  list-style: none;
  margin-bottom: 0;
}
.news_link {
  color: #333333 !important;
  text-decoration: none;
  display: block;
}
.news_link:hover .news_thumb_img {transform: scale(1.05);}
.news_link:hover .news_title {text-decoration: underline;}
.news_thumb {
  border-radius: 10px;
  position: relative;
  padding-bottom: 71.4%;
  overflow: hidden;
}
.news_thumb_img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.3s;
  border-radius: 10px !important;
}
.news_info {
  color: #666666;
  font-size: 1.2rem;
  margin: 20px 0 13px;
  letter-spacing: 0.078rem;
  display: flex;
  align-items: center;
  line-height: 1.9rem;
}
.news_info_date {
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
}
.news_info_date::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 13px;
  margin: auto;
  background: #666666;
}
.news_title {
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-weight: 500;
  margin-bottom: 0;
}
.news_btn {text-align: center;}
@media screen and (max-width: 1024px) {
  .news_list {
    gap: 17px;
    padding: 40px 0 0;
  }
  .news_info {
    letter-spacing: 0;
    margin: 10px 0 7px;
  }
  .news_info_date {
    padding-right: 10px;
    margin-right: 10px;
  }
  .news_title {
    font-size: 1.3rem;
    line-height: 2.1rem;
  }
}
@media screen and (max-width: 767px) {
  .news_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
    padding: 40px 0 0;
  }
  .news_info {margin: 12px 0 5px;  }
  .news_info_date {
    padding-right: 7px;
    margin-right: 5px;
  }
}