@charset "utf-8";

.notice-wrap {
  padding: 100px 20px;
  background: #fff;
  position: relative;
}

.notice-wrap::after {
  content: "";
  position: absolute;
  bottom: 0px;   /* 좌측 상단 */
  right: 100px;  /* 좌측 상단 */
  width: 284px;
  height: 260px;
  background: url('../../../images/msection1_bg.png') no-repeat center center;
  background-size: contain;
}

.notice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.notice-header h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.notice-header .more-btn {
  font-size: 18px;
  color: #555;
  text-decoration: none;
}

.notice-list {
  position:relative;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid #333;
  z-index:999 !important;
}

.notice-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.notice-list li a {
  color: #222;
  text-decoration: none;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size:20px;
}

.notice-list li .date {
  color: #999;
  font-size: 20px;
  margin-left: 15px;
}

/* 반응형 */
@media (max-width: 768px) {
  .notice-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .notice-list li .date {
    margin-left: 0;
    margin-top: 4px;
  }
}