.notice-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0px;
  font-family: 'Noto Sans KR', sans-serif;
}

.notice-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
  margin-top: 40px;
  color: #222;
  text-align: center;
}

.notice-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.notice-item {
    border-bottom: none !important;
    padding: 0px !important;
}

.notice-item a {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 28px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

.notice-item a:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.notice-title-text {
  font-size: 20px;
  font-weight: 600;
}

.notice-meta {
  font-size: 14px;
  color: #888;
  display: flex;
  gap: 10px;
}

.notice-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.notice-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice-title-text {
  font-size: 16px !important;
  font-weight: 500;
}

.notice-date {
  font-size: 14px;
  color: #888;
  white-space: nowrap;
}


.pagination {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 60px;
}

.pagination a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.pagination a.current {
  background-color: #2385ff;
  color: #fff;
  border-color: #2385ff;
}

.pagination .arrow {
    border: none !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #333;
}



@media (max-width: 768px) {
  .notice-title {
    font-size: 28px;
  }

  .notice-title-text {
    font-size: 18px;
  }

  .notice-section {
    padding: 60px 16px;
  }
}
