.news_list_title {
  font-size: 24px;
  line-height: 1.2em;
  font-weight: 600;
  color: #3a3e4d;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ex_list_select {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding-left: 8px;
  padding-right: 3px;
  border: 1px solid #aeaeae;
  -webkit-appearance: auto;
  border-radius: 4px;
}

.news_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.news_li {
  box-sizing: border-box;
  width: calc(25% - 15px);
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.news_link {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
.news_link:hover .news_info_wrap h4 {
  text-decoration: underline;
  text-underline-position: under;
}
.news_link:hover .icn_end {
  background-color: #ff6601;
}
.icn_end {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
  color: #fff;
  font-size: 14px;
}
.news_img {
  width: 1005;
  height: 185px;
  background-image: url("https://cdn.kr.aving.net/news/photo/bbs/bbs_1/tn_bbs_1_1195_1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.news_info_wrap {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 140px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 15px;
}
.news_info_wrap h4 {
  font-size: 18px;
  line-height: 1.2em;
  font-weight: 600;
  height: 4.8em;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news_p_wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.news_p {
  font-size: 14px;
  color: #666;
}

.more_btn_wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
.more_btn_wrap button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 48px;
  font-size: 16px;
  border-radius: 100px;
  background-color: #e33355;
  color: #fff;
}

@media screen and (max-width: 1050px) {
  .news_li {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 1050px) {
  .news_li {
    width: 100%;
  }
  .news_info_wrap {
    min-height: unset;
  }
}
