.topics-wrap h3 {
  padding: 10px 25px;
  border-radius: 100px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 1.2rem;
  font-weight: 400;
}



/* 게시판 제목 길이 제한 (CSS로 처리) */
.board-title-truncate {
  display: inline-block;
  max-width: 600px;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
  vertical-align: middle;
  font-family: 'Pretendard', monospace;
}


.table__tr_notice {
  background-color: #f5f5f5;
}

.policy-box {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  padding: 10px;
  background-color: #f9f9f9;
}
.policy-box h3 {
  font-size:1rem;
}
.policy-box h4 {
  font-size:0.9rem;
}
.policy-box p {
  font-size:0.9rem;
}
.policy-box ul {
  margin-left:0px;
  padding-left:18px;
}

.notice-color{
  color: var(--accent-color);
}



/*모바일 가로 & 태블릿 세로 : 480px-767px*/
@media all and (max-width:767px) {

  .board-title-truncate {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
  }
}

.paper-abstract {
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
}

.topic-desc {
  line-height: 1.2;
}


/* ========================================
   Card Corner - Top Right (우상단 코너) 2025-12-11
   ======================================== */

.card-corner-top-right {
  z-index: 2;
  background-color: var(--tc-neutral-50);
  border-bottom-left-radius: 2em;
  width: 51px;
  height: 51px;
  position: absolute;
  inset: 0% 0% auto auto;
  border-bottom: 1px solid var(--tc-neutral-200);
  border-left: 1px solid var(--tc-neutral-200);
}
.card-corner-top-right::before {
  content: "";
  position: absolute;
  border-bottom-left-radius: 2.5em;
  width: 120%;
  height: 120%;
  z-index: 1;
  background-color: var(--tc-neutral-50);
  bottom: 0;
}
.card-corner-top-right.no-border {
  border: none;
}
.card-corner-top-right.no-border .curve-top-right-one {
  bottom: -14px;
  right: 0px;
  border: none;
}
.card-corner-top-right.no-border .curve-top-right-two {
  top: 0px;
  left: -14px;
  border: none;
}

.arrow-box-top-right {
  z-index: 4;
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid var(--tc-neutral-200);
  background-color: var(--tc-system-white);
  position: absolute;
  right: 1px;
  top: 1px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.arrow-box-top-right svg path {
  stroke: var(--tc-neutral-900);
  transition: all 0.3s ease-in-out;
}

.curve-top-right-one {
  position: absolute;
  content: "";
  bottom: -14px;
  right: -1px;
  background: transparent;
  width: 14px;
  height: 14px;
  border-top-right-radius: 14px;
  box-shadow: 0.313rem -0.313rem 0 0.313rem var(--tc-neutral-50);
  border-right: 1px solid var(--tc-neutral-200);
  border-top: 1px solid var(--tc-neutral-200);
}

.curve-top-right-two {
  position: absolute;
  content: "";
  top: -1px;
  left: -14px;
  background: transparent;
  width: 14px;
  height: 14px;
  border-top-right-radius: 14px;
  box-shadow: 0.313rem -0.313rem 0 0.313rem var(--tc-neutral-50);
  border-right: 1px solid var(--tc-neutral-200);
  border-top: 1px solid var(--tc-neutral-200);
}

.article:hover .arrow-box-top-right {
  border-color: var(--accent-color);
  background-color: var(--accent-color);
  transform: rotate(-45deg);
}
.article:hover .arrow-box-top-right svg path {
  stroke: var(--tc-system-white);
}


