@charset "utf-8";

.news_banner {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 32px;
}

.news_banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.news_banner_inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.news_banner_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news_banner_text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.news_banner_title {
  margin: 0 0 12px;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news_banner_desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.9;
}

.news_page {
  width: 100%;
  padding: 40px 0 120px;
}

.news_header {
  margin-bottom: 40px;
}

.news_header_top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.news_header_text {
  flex: 1;
  min-width: 0;
}

.news_title {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.news_desc {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.news_write_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 48px;
  padding: 0 20px;
  border: 1px solid #111;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: #111;
  transition: all .2s ease;
}

.news_write_btn:hover {
  color: #111;
  background: #fff;
}

.news_list_wrap {
  width: 100%;
  border-top: 2px solid #111;
}

.news_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news_item {
  border-bottom: 1px solid #e5e5e5;
  transition: background-color .2s ease;
}

.news_item:hover {
  background-color: #fafafa;
}

.news_item.is_notice {
  background-color: #f8fafc;
}

.news_link {
  display: block;
  padding: 28px 8px;
  text-decoration: none;
}

.news_meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.news_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: #111;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .08em;
  color: #fff;
}

.news_category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 14px;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  color: #555;
  background: #fff;
}

.news_date {
  font-size: 14px;
  line-height: 1.4;
  color: #888;
}

.news_body {
  width: 100%;
}

.news_subject {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  word-break: keep-all;
}

.news_summary {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  word-break: keep-all;
}

.news_empty {
  padding: 60px 20px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  color: #777;
}

.news_paging {
  margin-top: 40px;
  text-align: center;
}

.news_paging .pg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.news_paging .pg_page,
.news_paging .pg_current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #555;
  background: #fff;
}

.news_paging .pg_current {
  border-color: #111;
  color: #fff;
  background: #111;
}

.news_paging .pg_start,
.news_paging .pg_prev,
.news_paging .pg_next,
.news_paging .pg_end {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-sizing: border-box;
  font-size: 13px;
  text-decoration: none;
  color: #555;
  background: #fff;
}

@media screen and (max-width:1199px) {
  .news_page {
    padding: 32px 0 100px;
  }

  .news_title {
    font-size: 34px;
  }

  .news_desc {
    font-size: 15px;
  }

  .news_link {
    padding: 24px 4px;
  }

  .news_subject {
    font-size: 21px;
  }

  .news_summary {
    font-size: 14px;
  }
}

@media screen and (max-width:767px) {
  .news_page {
    padding: 24px 0 80px;
  }

  .news_header {
    margin-bottom: 28px;
  }

  .news_header_top {
    flex-direction: column;
    align-items: flex-start;
  }

  .news_title {
    font-size: 28px;
  }

  .news_desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
  }

  .news_write_btn {
    width: 100%;
    min-width: auto;
    height: 44px;
    font-size: 14px;
  }

  .news_link {
    padding: 20px 0;
  }

  .news_meta {
    gap: 6px;
    margin-bottom: 10px;
  }

  .news_badge,
  .news_category {
    height: 28px;
    padding: 0 12px;
    font-size: 11px;
  }

  .news_date {
    font-size: 13px;
  }

  .news_subject {
    font-size: 18px;
    line-height: 1.45;
  }

  .news_summary {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.7;
  }

  .news_empty {
    padding: 48px 16px;
    font-size: 14px;
  }

  .news_paging {
    margin-top: 32px;
  }

  .news_paging .pg_page,
  .news_paging .pg_current,
  .news_paging .pg_start,
  .news_paging .pg_prev,
  .news_paging .pg_next,
  .news_paging .pg_end {
    min-width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 13px;
  }
}