.top-link.is-current {
  color: #ffcf74;
}

.hero--notice .hero__content {
  justify-content: flex-end;
}

.hero--notice .hero__panel {
  margin-right: 20px;
}

.notice-page {
  background: #ffffff;
  padding: 56px 0 68px;
}

.notice-page__inner {
  width: min(1060px, calc(100vw - 40px));
  margin: 0 auto;
}

.notice-board__head {
  margin-bottom: 34px;
}

.notice-board__head h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #111111;
}

.notice-board__table {
  border-top: 1px solid #ededed;
}

.notice-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 150px;
  align-items: center;
  gap: 22px;
  min-height: 80px;
  padding: 0 26px;
  border-bottom: 1px solid #ededed;
}

.notice-row--head {
  min-height: 54px;
  background: #f3f3f3;
  color: #181818;
  font-size: 15px;
  font-weight: 700;
}

.notice-row__index,
.notice-row__date {
  color: #181818;
  font-size: 15px;
}

.notice-row__date {
  text-align: right;
  white-space: nowrap;
}

.notice-row__title {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #161616;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
}

.notice-row__title:hover,
.notice-row__title:focus-visible {
  color: #f09b20;
  outline: none;
}

.notice-row.is-selected {
  background: #fffaf1;
}

.notice-board__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.notice-page-button,
.notice-page-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #dddddd;
  border-radius: 10px;
  background: #ffffff;
  color: #666666;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.notice-page-nav {
  border-color: transparent;
  background: transparent;
}

.notice-page-button:hover,
.notice-page-button:focus-visible,
.notice-page-nav:hover,
.notice-page-nav:focus-visible {
  border-color: #f0b45c;
  color: #111111;
  outline: none;
  box-shadow: 0 6px 18px rgba(240, 155, 32, 0.12);
}

.notice-page-button.is-current {
  border-color: #dddddd;
  color: #111111;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.notice-page-nav:disabled,
.notice-page-button:disabled {
  opacity: 0.45;
  cursor: default;
  box-shadow: none;
}

.notice-detail {
  margin-top: 26px;
  padding: 30px 32px 34px;
  border: 1px solid #ececec;
  border-radius: 18px;
  background: #fafafa;
}

.notice-detail__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8f8f8f;
  font-size: 13px;
}

.notice-detail h3 {
  margin: 14px 0 18px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #111111;
}

.notice-detail__content {
  color: #474747;
  font-size: 15px;
  line-height: 2;
  white-space: pre-wrap;
}

@media (max-width: 1180px) {
  .notice-page {
    padding: 46px 0 56px;
  }

  .notice-page__inner {
    width: calc(100vw - 24px);
  }
}

@media (max-width: 720px) {
  .notice-row,
  .notice-row--head {
    grid-template-columns: 60px minmax(0, 1fr) 110px;
    gap: 14px;
    padding: 0 16px;
  }

  .notice-row__title,
  .notice-row__index,
  .notice-row__date,
  .notice-row--head {
    font-size: 13px;
  }

  .notice-detail {
    padding: 22px 18px 24px;
  }

  .notice-detail h3 {
    font-size: 22px;
  }
}
