  /* 공지사항 스타일 */
.notice-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px 100px;
}

.notice-subtitle {
  text-align: center;
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}


.notice-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.notice-list {
  border-top: 2px solid #333;
}

.notice-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 15px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: background 0.3s;
}

.notice-item:hover {
  background: #f9f9f9;
}

.notice-item-title {
  font-size: 20px;
  color: #222;
}

.notice-item-date {
  font-size: 15px;
  color: rgba(34,34,34,0.5);
}

/* 버튼 */
.btn-more {
  display: block;
  width: 298px;
  margin: 50px auto 0;
  padding: 15px 0;
  background: #333;
  color: #fff;
  border-radius: 10px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}

.btn-more:hover {
  background: #555;
}

@media (max-width: 768px) {
  .notice-title {
    font-size: 22px;
  }

  .notice-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .btn-more {
    width: 100%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Notice Title Animation */
.notice-title.auto-animate {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.1s;
}

/* Notice List Animation */
.notice-list.auto-animate {
  opacity: 0;
  animation: fadeInScale 0.6s ease-out forwards;
  animation-delay: 0.3s;
}

.notice-list.auto-animate .notice-item {
  opacity: 0;
  animation: fadeInUp 0.5s ease-out forwards;
}

.notice-list.auto-animate .notice-item:nth-child(1) { animation-delay: 0.4s; }
.notice-list.auto-animate .notice-item:nth-child(2) { animation-delay: 0.5s; }
.notice-list.auto-animate .notice-item:nth-child(3) { animation-delay: 0.6s; }
.notice-list.auto-animate .notice-item:nth-child(4) { animation-delay: 0.7s; }
.notice-list.auto-animate .notice-item:nth-child(5) { animation-delay: 0.8s; }

/* Button Animation */
.btn-more.auto-animate {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: 0.9s;
}
