/* corin2 reusable UI components */
.cp-btn,
.board .btn,
.cp-content .btn,
.cp-content input[type="submit"].btn,
.cp-content button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: .375rem .75rem;
  border: 1px solid var(--cp-line2);
  border-radius: var(--cp-radius);
  background: var(--cp-panel);
  color: var(--cp-ink);
  font-family: var(--cp-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  text-shadow: none;
}
.cp-btn:hover,
.board .btn:hover,
.cp-content .btn:hover { border-color: var(--cp-brand); color: var(--cp-brand); }
.cp-btn-primary,
.board .btnArea .btn,
.board .list_footer .btnArea .btn,
.cp-content .btn-inverse,
.cp-content .submit.btn-inverse {
  background: var(--cp-brand) !important;
  border-color: var(--cp-brand) !important;
  color: #fff !important;
  font-weight: 600;
}
.cp-btn-primary:hover,
.board .btnArea .btn:hover,
.cp-content .btn-inverse:hover { background: var(--cp-brand-h) !important; border-color: var(--cp-brand-h) !important; color: #fff !important; }

.cp-input,
.board .iText,
.cp-content .signin input[type="text"],
.cp-content .signin input[type="password"],
.cp-content .signin input[type="email"],
.cp-content .form-horizontal input[type="text"],
.cp-content .form-horizontal input[type="password"],
.cp-content .form-horizontal input[type="email"] {
  box-sizing: border-box;
  width: 100%;
  min-height: 38px;
  padding: .375rem .75rem;
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius);
  background: var(--cp-panel);
  color: var(--cp-ink);
  font-family: var(--cp-font);
  font-size: 14px;
}
.cp-input:focus,
.board .iText:focus { outline: 0; border-color: var(--cp-link); box-shadow: 0 0 0 2px var(--cp-focus-ring); }

/* 댓글 입력은 게스트 필드 폭 유지 */
.board .write_comment .iText,
.board .write_comment .cp-cmt-in {
	width: auto;
	min-height: 30px;
	padding: 0 9px;
}

.cp-pagination,
.board .pagination,
.cp-content .pagination {
  margin: 0;
  padding: 8px 0;
  text-align: center;
  line-height: normal;
}
.cp-pagination a,
.cp-pagination strong,
.board .pagination a,
.board .pagination strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  padding: 0 8px;
  margin: 0 1px;
  border: 1px solid var(--cp-line);
  border-radius: var(--cp-radius);
  background: var(--cp-panel);
  color: var(--cp-sub);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.cp-pagination strong,
.board .pagination strong { background: var(--cp-brand); border-color: var(--cp-brand); color: #fff; }
.cp-pagination a:hover,
.board .pagination a:hover { border-color: var(--cp-brand); color: var(--cp-brand); }

.cp-level-icon,
.xe_point_level_icon {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 3px;
  object-fit: contain;
}
