@charset "utf-8";

.notice_list {
  display: block;
  width: 100%;
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice_list li {
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #e1e1e1;
}

.notice_list li .notice_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  gap: 10px;
  padding: 17px 0;
  text-decoration: none;
  color: inherit;
}
.notice_list li .post_title {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-family: 'NotoSansKRMedium', serif;
  color: #222;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s;
}

.notice_list li .post_title strong {
  font-weight: 400;
}

.notice_list li .post_date {
  flex-shrink: 0;
  font-size: 16px;
  color: #b5b5b5;
  font-weight: 400;
}

.notice_list li .notice_link:hover .post_title {
  color: #09569d;
}

.notice_list li.empty_li {
  padding: 40px 0;
  text-align: center;
  color: #999;
  font-size: 14px;
}