.post-nav-title-box {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-top: clamp(0rem, 0.5vw, 0.3rem);
  color: var(--main-font-color);
}
.post-nav-arrow {
  padding: clamp(0.3rem, 1vw, 0.5rem);
  /* transform: translateY(-0.1rem); */
}
.notice-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.notice-list {
  display: table;
  width: 100%;
  max-width: 142rem;
  border-collapse: collapse;
  font-size: 1.4rem;
  color: var(--white);
}

.notice-head,
.notice-body li {
  display: grid;
  grid-template-columns: 1fr 18fr auto;
  align-items: center;
  border-bottom: 0.05rem solid var(--main-font-color);
}

.notice-head {
  border-bottom: 0.05rem solid var(--main-font-color);
  background: rgba(217, 217, 217, 0.1);
}

.notice-head span {
  padding: clamp(0.3rem, 1vw, 0.5rem);
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  line-height: 1.7rem;
  color: #b3b3b3;
}

.notice-head .notice-no {
  position: relative;
}
.notice-head .notice-no::after {
  display: block;
  content: "";
  width: 0.1rem;
  height: 1.7rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: var(--main-font-color);
}
.notice-body {
  list-style: none;
  margin: 0;
  padding: 0;
}
.notice-body a {
  text-decoration: none;
}
.notice-body li {
  border-bottom: 0.05rem solid var(--main-font-color);
  list-style-type: none;
}

.notice-body span {
  padding: clamp(0.8rem, 1vw, 1rem) clamp(0.3rem, 1vw, 0.5rem);
  vertical-align: middle;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  line-height: 1.7rem;
  color: var(--white);
}

.notice-body .notice-date {
  color: var(--main-font-color);
}

.notice-no {
  text-align: center;
}

.notice-date {
  text-align: right;
}

.notice-tit {
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .notice-head,
  .notice-body li {
    grid-template-columns: 1.5fr 8fr auto;
  }
}
