.notice-box {
  font-family: 'Pretendard', sans-serif;
  color: #333;  
  position: relative; /* ← 반드시 필요! */
  z-index: 1;
}
.latest-notice {
	position:relative;;
	z-index:999;
	padding:30px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius:10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  
}
/* 대표 공지 */
.notice-featured {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px 10px;
  
  border-radius: 6px;
}

.notice-date-box {
  width: 70px;
  height: 70px;
  border: 2px solid #1e5ba0;
  color: #1e5ba0;
  text-align: center;
  font-weight: bold;
  border-radius: 4px;
  margin-right: 20px;
  box-sizing: border-box;
}

.notice-date-box .day {
  font-size: 22px;
  padding-top: 10px;
  color: #1e5ba0;
}

.notice-date-box .month {
  font-size: 14px;
}

.notice-main-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

/* 일반 공지 리스트 */
.notice-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
    z-index: 1;
}

.notice-list li {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

.notice-list a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: #333;
}

.notice-list .title {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.notice-list .date {
  margin-left: 10px;
  color: #999;
  font-size: 14px;
}

@media (max-width: 768px) {
  .notice-featured {
    flex-direction: column;
    align-items: flex-start;
  }

  .notice-date-box {
    margin-bottom: 10px;
  }
}
