.notice-page {
  background: #f7f8fa;
}

.notice-hero {
  padding: 72px 0 44px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.notice-page-title {
  margin: 0;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #111827;
  text-align: center;
}

.notice-breadcrumb {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #6b7280;
}

.notice-breadcrumb a {
  color: #374151;
}

.notice-breadcrumb strong {
  color: #111827;
}

.notice-board-section {
  padding: 52px 0 90px;
}

.notice-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  min-height: 52px;
}

.notice-search {
  display: flex;
  align-items: center;
  margin-left: auto;
  border: 1px solid #d1d5db;
  background: #ffffff;
  overflow: hidden;
}

.notice-search select,
.notice-search input,
.notice-search button {
  height: 46px;
  border: 0;
  background: transparent;
  font-size: 14px;
}

.notice-search select {
  width: 88px;
  padding: 0 12px;
  border-right: 1px solid #e5e7eb;
  color: #111827;
}

.notice-search input {
  width: 220px;
  padding: 0 14px;
  color: #111827;
}

.notice-search input::placeholder {
  color: #9ca3af;
}

.notice-search button {
  width: 50px;
  cursor: pointer;
  border-left: 1px solid #e5e7eb;
  font-size: 18px;
}

.notice-table-wrap {
  background: #ffffff;
  border-top: 2px solid #374151;
  border-bottom: 1px solid #d1d5db;
}

.notice-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.notice-table thead th {
  padding: 18px 14px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  text-align: center;
  border-bottom: 1px solid #d1d5db;
  background: #ffffff;
}

.notice-table tbody td {
  padding: 18px 14px;
  font-size: 15px;
  color: #4b5563;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.notice-table tbody tr:hover {
  background: #f9fbff;
}

.notice-title-cell {
  text-align: left !important;
}

.notice-title-cell a {
  color: #374151;
  font-weight: 500;
  transition: color 0.2s ease;
}

.notice-title-cell a:hover {
  color: #0b5cab;
}

.file-badge {
  display: inline-block;
  margin-left: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #0b5cab;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
}

.notice-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.notice-pagination a {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #6b7280;
  transition: background 0.2s ease, color 0.2s ease;
}

.notice-pagination a:hover {
  background: #e5eefb;
  color: #0b5cab;
}

.notice-pagination a.active {
  background: #0b5cab;
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 820px) {
  .notice-page-title {
    font-size: 34px;
  }

  .notice-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .notice-search {
    width: 100%;
  }

  .notice-search input {
    width: 100%;
  }

  .notice-table-wrap {
    overflow-x: auto;
  }

  .notice-table {
    min-width: fixed;
  }
}