.notice-board {
  margin-top: 42px;
  border-top: 2px solid var(--ink-deep);
}
.notice-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 112px;
  align-items: center;
  gap: 20px;
  min-height: 82px;
  color: var(--text);
  border-bottom: 1px solid #ddd8cf;
}
.notice-row:hover .notice-title {
  color: var(--coral-deep);
}
.notice-number,
.notice-date {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.notice-title {
  min-width: 0;
  font-size: 17px;
  font-weight: 800;
  transition: color 180ms ease;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.notice-page {
  width: 42px;
  height: 42px;
  color: var(--muted);
  background: #fff;
  border: 1px solid #ddd8cf;
  border-radius: 50%;
  font-weight: 800;
}
.notice-page:hover,
.notice-page.is-current {
  color: #fff;
  background: var(--ink-deep);
  border-color: var(--ink-deep);
}
.notice-detail {
  max-width: 900px;
  margin: 0 auto;
}
.notice-detail-header {
  padding: 0 0 30px;
  border-bottom: 1px solid #ddd8cf;
}
.notice-detail-header h2 {
  margin: 0;
  color: var(--ink-deep);
  font-size: 36px;
  line-height: 1.35;
  letter-spacing: -1.5px;
}
.notice-detail-meta {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.notice-detail-body {
  padding: 46px 0 58px;
  color: var(--text);
  font-size: 17px;
  line-height: 2;
}
.notice-detail-body p {
  margin: 0 0 22px;
}
.notice-back {
  min-width: 150px;
  color: var(--ink-deep);
  background: #fff;
  box-shadow: inset 0 0 0 1px #143a3a24;
}
@media (max-width: 760px) {
  .notice-row {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    min-height: 72px;
  }
  .notice-date {
    grid-column: 2;
    margin-top: -20px;
    font-size: 12px;
  }
  .notice-title {
    font-size: 15px;
  }
  .notice-detail-header h2 {
    font-size: 28px;
  }
  .notice-detail-body {
    padding: 34px 0 46px;
    font-size: 16px;
  }
}
