.nc-theme {
  --gs-font-sans: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gs-shell: 1160px;
  --gs-bg: #f4f8fb;
  --gs-surface: #ffffff;
  --gs-surface-soft: #fbfdff;
  --gs-line: #d6e3ef;
  --gs-line-strong: #c7d8e8;
  --gs-text: #1d4266;
  --gs-muted: #5f7487;
  --gs-blue: #1b67b5;
  --gs-blue-strong: #2f83ff;
  --gs-teal: #0f766e;
  --gs-green: #047857;
  --gs-purple: #7c3aed;
  --gs-shadow: 0 5px 16px rgba(17, 48, 80, 0.06);
  --gs-shadow-strong: 0 8px 22px rgba(18, 66, 110, 0.09);
  min-height: 100vh;
  background: var(--gs-bg);
  color: var(--gs-text);
  font-family: var(--gs-font-sans);
}

.nc-theme,
.nc-theme * {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

.nc-theme a {
  color: inherit;
  text-decoration: none;
}

.nc-theme img {
  max-width: 100%;
}

.nc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gs-line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
}

.nc-header__inner,
.nc-profile-hero__inner,
.nc-container-wrap {
  width: min(var(--gs-shell), calc(100% - 40px));
  margin-right: auto;
  margin-left: auto;
}

.nc-header__inner {
  padding: 8px 0;
}

.nc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  flex-wrap: wrap;
}

.nc-nav__label,
.nc-nav__empty {
  color: var(--gs-muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.nc-nav__group {
  position: relative;
}

.nc-nav__main,
.nc-nav__utility a,
.nc-top-auth a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--gs-line-strong);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fc 100%);
  color: #1c4f7c;
  font-size: 0.81rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 1px 2px rgba(16, 44, 72, 0.07);
  transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nc-nav__main:hover,
.nc-nav__utility a:hover,
.nc-top-auth a:hover {
  border-color: #9fb6cb;
  box-shadow: 0 3px 8px rgba(16, 44, 72, 0.14);
  transform: translateY(-1px);
}

.nc-nav__group.is-current .nc-nav__main,
.nc-nav__main:hover {
  border-color: var(--gs-blue);
  background: linear-gradient(180deg, var(--gs-blue-strong) 0%, var(--gs-blue) 100%);
  color: #fff;
  box-shadow: 0 4px 10px rgba(27, 103, 181, 0.28);
}

.nc-nav__utility {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nc-subnav {
  position: absolute;
  left: 0;
  top: calc(100% + 6px);
  z-index: 30;
  display: none;
  min-width: 180px;
  padding: 8px;
  border: 1px solid var(--gs-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--gs-shadow-strong);
}

.nc-nav__group:hover .nc-subnav,
.nc-nav__group:focus-within .nc-subnav {
  display: grid;
  gap: 4px;
}

.nc-subnav a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: #34556f;
  font-size: 0.84rem;
  font-weight: 800;
}

.nc-subnav a:hover {
  background: #eef6ff;
  color: var(--gs-blue);
}

.nc-top-frame {
  border-bottom: 1px solid var(--gs-line);
  background: var(--gs-surface);
}

.nc-profile-hero__inner {
  padding: 12px 0;
}

.nc-hero-tools {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 360px) auto;
  align-items: center;
  gap: 12px;
}

.nc-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #113c69;
}

.nc-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: 1px solid var(--gs-line-strong);
  border-radius: 999px;
  background: #f8fbff;
}

.nc-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nc-brand__title strong {
  display: block;
  color: #113c69;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.2;
}

.nc-search {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.nc-search input {
  width: 100%;
  min-height: 38px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--gs-line-strong);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--gs-text);
  font-size: 0.9rem;
  font-weight: 700;
  outline: none;
}

.nc-search input:focus {
  border-color: var(--gs-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(47, 131, 255, 0.15);
}

.nc-search button {
  position: absolute;
  right: 4px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: var(--gs-blue);
  color: #fff;
  cursor: pointer;
}

.nc-top-auth {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

#wrapper {
  background: var(--gs-bg);
}

.nc-main {
  padding: 16px 0 28px;
}

.nc-community-content {
  min-width: 0;
}

.nc-page-title {
  margin: 0 0 14px;
  padding: 16px 18px;
  border: 1px solid var(--gs-line);
  border-radius: 12px;
  background: linear-gradient(135deg, #f7fbff 0%, #edf5ff 100%);
  box-shadow: var(--gs-shadow);
}

.nc-page-title p {
  margin: 0 0 5px;
  color: #2e669b;
  font-size: 0.78rem;
  font-weight: 900;
}

.nc-page-title h2 {
  margin: 0;
  color: var(--gs-text);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.32;
}

#bo_list,
#bo_v,
#bo_w,
.nc-qa-board,
.bo_sch {
  max-width: var(--nc-board-content-width, 100%);
  margin-right: auto;
  margin-left: auto;
}

#bo_btn_top,
.bo_fx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 12px;
  padding: 12px 14px;
  border: 1px solid var(--gs-line);
  border-radius: 10px;
  background: var(--gs-surface);
  box-shadow: var(--gs-shadow);
}

#bo_list_total {
  float: none;
  color: var(--gs-muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.4;
}

.btn_bo_user,
.btn_bo_adm,
.bo_v_com {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  float: none !important;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}

.btn_bo_user li,
.btn_bo_adm li,
.bo_v_com > li {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  background: transparent !important;
}

.nc-theme .btn,
.nc-theme .btn_b01,
.nc-theme .btn_b02,
.nc-theme .btn_b03,
.nc-theme .btn_submit,
.nc-theme .btn_cancel,
.nc-theme button.btn_b01,
.nc-theme input.btn_submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 36px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--gs-line-strong);
  border-radius: 9px;
  background: #f8fbff;
  color: #1c4f7c;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: none;
  cursor: pointer;
}

.nc-theme .btn_submit,
.nc-theme input.btn_submit {
  border-color: var(--gs-blue);
  background: var(--gs-blue);
  color: #fff;
}

.nc-theme .btn:hover,
.nc-theme .btn_b01:hover,
.nc-theme .btn_b02:hover,
.nc-theme .btn_b03:hover,
.nc-theme .btn_cancel:hover {
  border-color: var(--gs-blue);
  background: #eef6ff;
  color: var(--gs-blue);
}

.more_opt {
  border: 1px solid var(--gs-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--gs-shadow-strong);
}

#bo_cate {
  margin: 0 0 12px;
  padding: 0;
}

#bo_cate_ul {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
}

#bo_cate a,
#bo_cate #bo_cate_on {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--gs-line-strong);
  border-radius: 999px;
  background: #fff;
  color: #34556f;
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}

#bo_cate #bo_cate_on {
  border-color: var(--gs-blue);
  background: #eef6ff;
  color: var(--gs-blue);
}

.nc-board-feed-list {
  display: grid;
  gap: 12px;
}

.nc-board-feed-item,
.nc-qa-item,
#bo_v,
#bo_w,
#bo_vc article,
.bo_vc_w,
#bo_v_file li,
#bo_v_link li {
  border: 1px solid var(--gs-line);
  border-radius: 12px;
  background: var(--gs-surface);
  box-shadow: var(--gs-shadow);
}

.nc-board-feed-item {
  position: relative;
  padding: 18px;
  overflow: hidden;
}

.nc-board-feed-item.is-notice {
  border-color: #b8d5f5;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.nc-board-feed-item.is-notice::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--gs-blue);
}

.nc-feed-author,
.nc-board-feed-author,
#bo_v_info .profile_info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nc-feed-avatar,
#bo_v_info .pf_img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  overflow: hidden;
  border: 1px solid var(--gs-line-strong);
  border-radius: 999px;
  background: #f8fbff;
  color: #2e669b;
}

.nc-feed-avatar img,
#bo_v_info .pf_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nc-feed-author__text strong,
.bo_v_author_text strong {
  display: block;
  color: var(--gs-text);
  font-size: 0.92rem;
  font-weight: 900;
}

.nc-feed-author__text em,
.bo_v_author_text em {
  display: block;
  margin-top: 2px;
  color: var(--gs-muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
}

.nc-feed-taxonomy,
.bo_v_taxonomy,
.bo_v_meta_stats {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  flex-wrap: wrap;
}

.nc-feed-taxonomy span,
.bo_v_taxonomy span,
.bo_v_meta_stats strong,
.cnt_cmt,
.notice_icon,
.new_icon,
.hot_icon {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #eef6ff;
  color: var(--gs-blue);
  font-size: 0.74rem;
  font-weight: 900;
}

.nc-feed-title,
.nc-board-feed-title {
  margin: 12px 0 0;
  color: var(--gs-text);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.36;
}

.nc-feed-title a:hover {
  color: var(--gs-blue);
}

.nc-feed-media,
.nc-board-feed-media {
  display: block;
  margin: 14px 0 0;
  overflow: hidden;
  border: 1px solid var(--gs-line);
  border-radius: 10px;
  background: #eef4fa;
}

.nc-feed-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.nc-feed-content,
.nc-board-feed-content {
  margin: 10px 0 0;
  color: #3f576d;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.65;
}

.nc-feed-stats,
.nc-board-feed-stats {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  color: var(--gs-muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.nc-board-feed-empty,
.empty_table {
  padding: 44px 16px !important;
  border: 1px dashed var(--gs-line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--gs-muted);
  font-weight: 800;
  text-align: center;
}

#bo_v {
  padding: 20px;
}

#bo_v_info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--gs-line);
  color: var(--gs-muted);
}

#bo_v_info .profile_info {
  float: none;
  margin: 0;
}

#bo_v_info .profile_info_ct {
  float: none;
  padding: 0;
  line-height: 1.3;
}

#bo_v_top {
  flex: 0 0 auto;
}

#bo_v_title {
  margin: 18px 0 0;
}

#bo_v_title .bo_v_tit {
  display: block;
  color: var(--gs-text);
  font-size: 1.58rem;
  font-weight: 900;
  line-height: 1.35;
  word-break: keep-all;
}

#bo_v_share {
  display: flex;
  gap: 8px;
  padding: 14px 0 0;
  flex-wrap: wrap;
}

#bo_v_con {
  margin: 18px 0 28px;
  color: #243f56;
  font-size: 1rem;
  line-height: 1.78;
  word-break: keep-all;
}

#bo_v_con a {
  color: var(--gs-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nc-link-preview-card {
  display: block;
  width: min(100%, 720px);
  max-width: 720px;
  margin: 16px 0;
  overflow: hidden;
  border: 1px solid #dbe7f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 44, 72, 0.07);
  box-sizing: border-box;
}

.nc-link-preview-card .nc-link-preview-anchor {
  display: grid;
  grid-template-columns: minmax(112px, 168px) minmax(0, 1fr);
  min-height: 104px;
  width: 100%;
  max-width: 100%;
  color: #102f4a;
  text-decoration: none;
  box-sizing: border-box;
}

.nc-link-preview-card .nc-link-preview-thumb {
  display: block;
  width: 100%;
  height: 104px;
  min-height: 0;
  overflow: hidden;
  background: #eef4fa;
}

.nc-link-preview-card .nc-link-preview-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.nc-link-preview-card .nc-link-preview-thumb--empty span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  color: #6d8498;
  font-size: 0.82rem;
  font-weight: 850;
}

.nc-link-preview-card .nc-link-preview-body {
  display: block;
  min-width: 0;
  padding: 14px 16px;
}

.nc-link-preview-card .nc-link-preview-title,
.nc-link-preview-card .nc-link-preview-desc,
.nc-link-preview-card .nc-link-preview-site {
  display: block;
}

.nc-link-preview-card .nc-link-preview-title {
  margin: 0 0 6px;
  color: #102f4a;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.4;
}

.nc-link-preview-card .nc-link-preview-desc {
  margin: 0 0 10px;
  color: #526b7f;
  font-size: 0.82rem;
  line-height: 1.5;
}

.nc-link-preview-card .nc-link-preview-site {
  color: #1b67b5;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.3;
}

#bo_v_con table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--gs-line);
}

#bo_v_con th,
#bo_v_con td {
  padding: 10px;
  border: 1px solid var(--gs-line);
}

#bo_v_con th {
  background: #f6fbff;
  color: var(--gs-text);
}

#bo_v_file li,
#bo_v_link li,
.bo_v_nb li {
  padding: 14px;
  border-color: var(--gs-line);
}

.bo_v_nb li:hover {
  background: #f6fbff;
}

.nc-view-like-actions {
  margin: 20px 0;
}

.nc-like-button,
#bo_v_act .bo_v_good,
#bo_v_act .bo_v_nogood {
  width: auto;
  min-width: 92px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--gs-line-strong);
  border-radius: 999px;
  background: #fff;
  color: #1c4f7c;
}

.nc-like-button:hover {
  border-color: #f1b5c3;
  color: #d94865;
}

#bo_vc article {
  padding: 14px;
}

.bo_vc_w {
  padding: 14px;
}

#bo_w {
  padding: 18px;
  background: #fff;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w form {
  display: grid !important;
  gap: 14px !important;
  width: 100% !important;
  max-width: 100% !important;
}

.write_div,
.tbl_frm01 {
  margin-bottom: 12px;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .write_div {
  margin: 0 !important;
  min-width: 0 !important;
}

.frm_input,
.frm_file,
.nc-theme select,
.nc-theme textarea {
  min-height: 38px;
  border: 1px solid var(--gs-line-strong);
  border-radius: 9px;
  background: #fff;
  color: var(--gs-text);
  font-size: 0.92rem;
  font-weight: 700;
  outline: none;
}

.frm_input:focus,
.nc-theme select:focus,
.nc-theme textarea:focus {
  border-color: var(--gs-blue);
  box-shadow: 0 0 0 3px rgba(47, 131, 255, 0.14);
}

#bo_w .bo_w_tit .frm_input {
  height: 46px;
  font-size: 1.02rem;
  font-weight: 900;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-meta {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 9px 12px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-category-buttons {
  display: inline-flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-category-buttons legend {
  display: inline-flex !important;
  align-items: center !important;
  height: 34px !important;
  margin: 0 2px 0 0 !important;
  padding: 0 !important;
  color: #385872 !important;
  font-size: 0.88rem !important;
  font-weight: 950 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-category-buttons input[type="radio"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-category-buttons label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 58px !important;
  height: 34px !important;
  padding: 0 13px !important;
  border: 1px solid #c8d9e7 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #285271 !important;
  font-size: 0.86rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  box-shadow: 0 1px 2px rgba(16, 44, 72, 0.05) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-category-buttons input[type="radio"]:checked + label {
  border-color: #1b67b5 !important;
  background: #1b67b5 !important;
  color: #fff !important;
  box-shadow: 0 5px 12px rgba(27, 103, 181, 0.18) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-category-buttons input[type="radio"]:focus-visible + label {
  box-shadow: 0 0 0 3px rgba(27, 103, 181, 0.16) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-options {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-visibility {
  display: grid !important;
  gap: 9px !important;
  margin: 0 0 14px !important;
  padding: 13px !important;
  border: 1px solid #dbe7f2 !important;
  border-radius: 8px !important;
  background: #f8fbff !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-visibility legend {
  padding: 0 5px !important;
  color: #123f68 !important;
  font-size: 0.88rem !important;
  font-weight: 950 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-visibility__options {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-visibility input[type="radio"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-visibility label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 42px !important;
  padding: 0 13px !important;
  border: 1px solid #c8d9e7 !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #31536f !important;
  cursor: pointer !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-visibility label strong {
  color: #123f68 !important;
  font-size: 0.9rem !important;
  font-weight: 950 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-visibility label span {
  color: #6b8194 !important;
  font-size: 0.78rem !important;
  font-weight: 750 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-visibility input[type="radio"]:checked + label {
  border-color: #1b67b5 !important;
  background: #eef7ff !important;
  box-shadow: 0 0 0 2px rgba(27, 103, 181, 0.12) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-visibility input[type="radio"]:focus-visible + label {
  box-shadow: 0 0 0 3px rgba(27, 103, 181, 0.18) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-visibility p {
  margin: 0 !important;
  color: #6b8194 !important;
  font-size: 0.78rem !important;
  font-weight: 750 !important;
  line-height: 1.55 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .bo_v_option {
  display: inline-flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .bo_v_option li {
  float: none !important;
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .bo_v_option .chk_box input[type="checkbox"] + label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border: 1px solid #c8d9e7 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #385872 !important;
  font-size: 0.84rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .bo_v_option .chk_box input[type="checkbox"] + label span {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  float: none !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  border: 1px solid #9fb2c3 !important;
  border-radius: 4px !important;
  background: #fff !important;
  background-image: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .bo_v_option .chk_box input[type="checkbox"]:checked + label {
  border-color: #1b67b5 !important;
  background: #eef7ff !important;
  color: #174f86 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .bo_v_option .chk_box input[type="checkbox"]:checked + label span {
  border-color: #1b67b5 !important;
  background: #1b67b5 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .bo_v_option .chk_box input[type="checkbox"]:checked + label span::after {
  position: absolute !important;
  top: 1px !important;
  left: 5px !important;
  width: 5px !important;
  height: 10px !important;
  border: solid #fff !important;
  border-width: 0 2px 2px 0 !important;
  content: "" !important;
  transform: rotate(45deg) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .bo_w_tit #autosave_wrapper {
  position: relative !important;
  margin: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .bo_w_tit .frm_input {
  padding-right: 160px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .bo_w_tit #btn_autosave {
  top: 50% !important;
  right: 8px !important;
  width: auto !important;
  max-width: 146px !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  transform: translateY(-50%) !important;
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .frm_input,
.gongsil-board-page .nc-theme.nc-theme #bo_w .full_input,
.gongsil-board-page .nc-theme.nc-theme #bo_w .half_input,
.gongsil-board-page .nc-theme.nc-theme #bo_w .frm_file,
.gongsil-board-page .nc-theme.nc-theme #bo_w select,
.gongsil-board-page .nc-theme.nc-theme #bo_w textarea {
  border: 1px solid #9fb2c3 !important;
  background: #fff !important;
  box-shadow: inset 0 1px 0 rgba(16, 58, 97, 0.04) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .frm_input:focus,
.gongsil-board-page .nc-theme.nc-theme #bo_w .full_input:focus,
.gongsil-board-page .nc-theme.nc-theme #bo_w .half_input:focus,
.gongsil-board-page .nc-theme.nc-theme #bo_w .frm_file:focus,
.gongsil-board-page .nc-theme.nc-theme #bo_w select:focus,
.gongsil-board-page .nc-theme.nc-theme #bo_w textarea:focus {
  border-color: #1b67b5 !important;
  box-shadow: 0 0 0 3px rgba(27, 103, 181, 0.16) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .wr_content.smarteditor2 {
  overflow: hidden;
  border: 1px solid #9fb2c3 !important;
  border-radius: 12px;
  background: #fff;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .wr_content.smarteditor2 iframe,
.gongsil-board-page .nc-theme.nc-theme #bo_w .wr_content.smarteditor2 textarea {
  border: 0 !important;
  border-radius: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w #captcha {
  display: flex !important;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border: 1px solid #c8d9e7 !important;
  border-radius: 12px;
  background: #f8fbfd;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w #captcha #captcha_img {
  width: 112px !important;
  min-width: 112px !important;
  height: 42px !important;
  border: 1px solid #9fb2c3 !important;
  border-radius: 10px;
  background: #fff;
  object-fit: cover;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w #captcha #captcha_key {
  width: 108px !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 10px !important;
  border: 1px solid #7892a8 !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #123f68 !important;
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(16, 58, 97, 0.05) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w #captcha #captcha_key:focus {
  border-color: #1b67b5 !important;
  box-shadow: 0 0 0 3px rgba(27, 103, 181, 0.18) !important;
  outline: none;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w #captcha #captcha_info {
  flex: 1 0 100%;
  margin: 0 !important;
  color: #5f7384;
  font-size: 0.86rem !important;
  font-weight: 800;
  letter-spacing: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  align-items: center !important;
  width: 100% !important;
  padding: 10px !important;
  border: 1px solid #c5d7e5 !important;
  border-radius: 10px !important;
  background: #f8fbfd !important;
  box-sizing: border-box !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_img,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_img {
  display: inline-block !important;
  width: 108px !important;
  min-width: 108px !important;
  height: 40px !important;
  margin: 0 !important;
  border: 1px solid #9fb2c3 !important;
  border-radius: 6px !important;
  background: linear-gradient(135deg, #f5f9fc 25%, #e8f0f7 25%, #e8f0f7 50%, #f5f9fc 50%, #f5f9fc 75%, #e8f0f7 75%) !important;
  background-size: 16px 16px !important;
  object-fit: cover !important;
  vertical-align: middle !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_mp3,
.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_reload,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_mp3,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_reload {
  width: 38px !important;
  height: 38px !important;
  border: 1px solid #cbddeb !important;
  border-radius: 8px !important;
  background-color: #fff !important;
  box-shadow: 0 1px 2px rgba(16, 44, 72, 0.06) !important;
  opacity: 0.84 !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_mp3,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_mp3 {
  background-image: url('../../../img/captcha2.png') !important;
  background-position: -1px -1px !important;
  background-repeat: no-repeat !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_reload,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_reload {
  background-image: url('../../../img/captcha2.png') !important;
  background-position: -1px -41px !important;
  background-repeat: no-repeat !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_mp3:hover,
.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_reload:hover,
.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_mp3:focus-visible,
.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_reload:focus-visible,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_mp3:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_reload:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_mp3:focus-visible,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_reload:focus-visible {
  border-color: #9fbdd6 !important;
  opacity: 1 !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_key,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_key {
  width: 112px !important;
  height: 40px !important;
  margin: 0 !important;
  padding: 0 10px !important;
  border: 1px solid #7892a8 !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #123f68 !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-align: center !important;
  box-shadow: inset 0 1px 0 rgba(16, 58, 97, 0.05) !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_key:focus,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_key:focus {
  border-color: #1b67b5 !important;
  box-shadow: 0 0 0 3px rgba(27, 103, 181, 0.16) !important;
  outline: none !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_info,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_info {
  flex: 1 0 100% !important;
  margin: 0 !important;
  color: #5f7384 !important;
  font-size: 0.84rem !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha.is-loading #captcha_img,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha.is-loading #captcha_img {
  opacity: 0.72 !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha.is-ready #captcha_img,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha.is-ready #captcha_img {
  opacity: 1 !important;
}

.gongsil-write-extra {
  display: grid;
  gap: 10px;
}

.gongsil-write-extra-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.gongsil-write-extra-add,
.gongsil-write-extra-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid #9fb2c3;
  border-radius: 10px;
  background: #fff;
  color: #17486e;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.gongsil-write-extra-add:hover,
.gongsil-write-extra-add:focus-visible,
.gongsil-write-extra-remove:hover,
.gongsil-write-extra-remove:focus-visible {
  border-color: #1b67b5;
  background: #f4f9fd;
  color: #123f68;
}

.gongsil-write-extra-add:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.gongsil-write-extra-list {
  display: grid;
  gap: 8px;
}

.gongsil-write-extra-row[hidden] {
  display: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-extra-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-extra-row > label,
.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-extra-row .lb_icon {
  position: static !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  width: auto !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 10px !important;
  border: 1px solid #c8d9e7 !important;
  border-radius: 10px !important;
  background: #f4f9fd !important;
  color: #285271 !important;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-extra-row > label span,
.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-extra-row .lb_icon span {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-extra-row .file_wr {
  display: contents !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-extra-row .frm_file,
.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-extra-row .frm_input {
  min-height: 44px !important;
  padding-left: 12px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-extra-row .file_del {
  grid-column: 2 / 4;
  color: #5f7384;
  font-size: 0.82rem;
  font-weight: 800;
}

.gongsil-board-page .nc-theme.nc-theme #bo_w .btn_confirm {
  justify-content: flex-end !important;
}

@media (max-width: 720px) {
  .gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-extra-row {
    grid-template-columns: 1fr auto;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-extra-row > label,
  .gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-extra-row .lb_icon {
    grid-column: 1 / 3;
    height: 36px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-extra-row .file_del {
    grid-column: 1 / 3;
  }
}

.nc-qa-list {
  display: grid;
  gap: 10px;
}

.nc-qa-item {
  padding: 14px;
}

.nc-qa-mark,
.nc-qa-state {
  border-color: rgba(15, 118, 110, 0.22);
  background: #ecfdf5;
  color: var(--gs-teal);
}

.nc-qa-title a:hover {
  color: var(--gs-teal);
}

.nc-qa-meta,
.nc-qa-excerpt,
.nc-qa-reactions {
  color: var(--gs-muted);
}

.bo_sch_wrap {
  background: rgba(17, 48, 80, 0.42);
}

.bo_sch {
  padding: 20px;
  border: 1px solid var(--gs-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--gs-shadow-strong);
}

.bo_sch h3 {
  margin: 0 0 12px;
  color: var(--gs-text);
  font-size: 1rem;
  font-weight: 900;
}

.sch_bar {
  border: 1px solid var(--gs-line-strong);
  border-radius: 999px;
  background: #f8fbff;
}

.sch_input {
  background: transparent !important;
}

.sch_btn,
.bo_sch_cls {
  border: 0;
  background: var(--gs-blue);
  color: #fff;
}

.pg_wrap {
  margin: 16px 0;
}

.pg_page,
.pg_current {
  min-width: 34px;
  height: 34px;
  border: 1px solid var(--gs-line-strong);
  border-radius: 9px;
  background: #fff;
  color: var(--gs-muted);
  font-weight: 900;
  line-height: 32px;
}

.pg_current {
  border-color: var(--gs-blue);
  background: var(--gs-blue);
  color: #fff;
}

@media (max-width: 900px) {
  .nc-header__inner,
  .nc-profile-hero__inner,
  .nc-container-wrap {
    width: min(100% - 24px, var(--gs-shell));
  }

  .nc-nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
  }

  .nc-nav__label,
  .nc-nav__utility {
    display: none;
  }

  .nc-nav__main {
    white-space: nowrap;
  }

  .nc-subnav {
    display: none !important;
  }

  .nc-hero-tools {
    grid-template-columns: 1fr;
  }

  .nc-top-auth {
    justify-content: flex-start;
  }

  #bo_btn_top,
  .bo_fx,
  #bo_v_info {
    align-items: stretch;
    flex-direction: column;
  }

  .nc-feed-author,
  .nc-board-feed-author {
    align-items: flex-start;
  }

  .nc-feed-taxonomy,
  .bo_v_taxonomy,
  .bo_v_meta_stats {
    width: 100%;
    margin-left: 48px;
  }

  .nc-board-feed-item,
  #bo_v,
  #bo_w {
    padding: 14px;
  }

  #bo_v_title .bo_v_tit {
    font-size: 1.24rem;
  }

  #bo_v_con {
    font-size: 0.95rem;
    word-break: break-word;
  }
}

@media (max-width: 520px) {
  .nc-main {
    padding-top: 12px;
  }

  .nc-nav__main,
  .nc-nav__utility a,
  .nc-top-auth a {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .nc-brand__title strong {
    font-size: 0.9rem;
  }

  .nc-search input {
    min-height: 36px;
  }

  .nc-feed-title,
  .nc-board-feed-title {
    font-size: 1rem;
  }

  .nc-feed-content,
  .nc-board-feed-content {
    font-size: 0.88rem;
  }
}

/* Final layout override for the Gongsil service shell. */
.nc-theme {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto auto minmax(0, 1fr) auto !important;
  min-height: 100vh !important;
  overflow: visible !important;
  background: var(--gs-bg) !important;
}

.nc-theme .nc-top-frame {
  grid-column: 1 !important;
  grid-row: 1 !important;
  min-height: auto !important;
  border-right: 0 !important;
  border-bottom: 1px solid var(--gs-line) !important;
  background: var(--gs-surface) !important;
}

.nc-theme .nc-top-frame .nc-profile-hero__inner {
  width: min(var(--gs-shell), calc(100% - 40px)) !important;
  min-height: auto !important;
  padding: 12px 0 !important;
}

.nc-theme .nc-top-frame .nc-hero-tools {
  display: grid !important;
  grid-template-columns: 1fr minmax(220px, 420px) auto !important;
  align-items: center !important;
  justify-content: stretch !important;
  gap: 12px !important;
}

.nc-theme .nc-top-brand,
.nc-theme .nc-top-frame .nc-search,
.nc-theme .nc-top-frame .nc-top-auth {
  grid-column: auto !important;
}

.nc-theme .nc-top-brand {
  justify-self: start !important;
}

.nc-theme .nc-top-frame .nc-search {
  justify-self: center !important;
  width: min(100%, 420px) !important;
}

.nc-theme .nc-top-frame .nc-top-auth {
  justify-self: end !important;
}

.nc-theme .nc-header {
  grid-column: 1 !important;
  grid-row: 2 !important;
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  border-right: 0 !important;
  border-bottom: 1px solid var(--gs-line) !important;
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(8px) !important;
}

.nc-theme .nc-header__inner {
  display: block !important;
  width: min(var(--gs-shell), calc(100% - 40px)) !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 8px 0 !important;
}

.nc-theme .nc-header .nc-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  min-height: 42px !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  flex-wrap: wrap !important;
}

.nc-theme .nc-header .nc-nav__group {
  width: auto !important;
  flex: 0 0 auto !important;
}

.nc-theme .nc-header .nc-nav__main,
.nc-theme .nc-header .nc-nav__utility a {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border: 1px solid var(--gs-line-strong) !important;
  border-radius: 10px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f2f7fc 100%) !important;
  color: #1c4f7c !important;
  box-shadow: 0 1px 2px rgba(16, 44, 72, 0.07) !important;
  white-space: nowrap !important;
}

.nc-theme .nc-header .nc-nav__main i,
.nc-theme .nc-header .nc-nav__utility a i {
  width: auto !important;
  margin: 0 !important;
  color: inherit !important;
  font-size: 0.94rem !important;
}

.nc-theme .nc-header .nc-nav__main span,
.nc-theme .nc-header .nc-nav__utility a span {
  display: inline !important;
  color: inherit !important;
  font-size: 0.81rem !important;
  font-weight: 900 !important;
}

.nc-theme .nc-header .nc-nav__group.is-current .nc-nav__main,
.nc-theme .nc-header .nc-nav__main:hover,
.nc-theme .nc-header .nc-nav__utility a:hover {
  border-color: var(--gs-blue) !important;
  background: linear-gradient(180deg, var(--gs-blue-strong) 0%, var(--gs-blue) 100%) !important;
  color: #fff !important;
}

.nc-theme .nc-main {
  grid-column: 1 !important;
  grid-row: 3 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 16px 0 28px !important;
  overflow: visible !important;
}

.nc-theme .nc-footer {
  grid-column: 1 !important;
  grid-row: 4 !important;
}

.nc-theme .nc-container-wrap {
  display: block !important;
  grid-template-columns: 1fr !important;
  width: min(var(--gs-shell), calc(100% - 40px)) !important;
  height: auto !important;
  margin: 0 auto !important;
}

.nc-theme .nc-content {
  width: 100% !important;
  min-width: 0 !important;
}

.nc-theme .nc-main--community #aside.nc-sidebar {
  display: none !important;
}

@media (max-width: 900px) {
  .nc-theme .nc-top-frame .nc-profile-hero__inner,
  .nc-theme .nc-header__inner,
  .nc-theme .nc-container-wrap {
    width: min(100% - 24px, var(--gs-shell)) !important;
  }

  .nc-theme .nc-top-frame .nc-hero-tools {
    grid-template-columns: 1fr !important;
  }

  .nc-theme .nc-top-brand,
  .nc-theme .nc-top-frame .nc-search,
  .nc-theme .nc-top-frame .nc-top-auth {
    grid-column: 1 !important;
    justify-self: stretch !important;
  }

  .nc-theme .nc-header {
    position: sticky !important;
    top: 0 !important;
  }

  .nc-theme .nc-header .nc-nav {
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
  }
}

body .nc-theme.nc-theme {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: auto auto minmax(0, 1fr) auto !important;
}

body .nc-theme.nc-theme > .nc-top-frame,
body .nc-theme.nc-theme > .nc-header,
body .nc-theme.nc-theme > .nc-main,
body .nc-theme.nc-theme > .nc-footer {
  grid-column: 1 / -1 !important;
}

body .nc-theme.nc-theme > .nc-top-frame {
  grid-row: 1 !important;
}

body .nc-theme.nc-theme > .nc-header {
  grid-row: 2 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
}

body .nc-theme.nc-theme > .nc-main {
  grid-row: 3 !important;
}

body .nc-theme.nc-theme > .nc-footer {
  grid-row: 4 !important;
}

body .nc-theme.nc-theme > .nc-header .nc-header__inner {
  width: min(var(--gs-shell), calc(100% - 40px)) !important;
}

body .nc-theme.nc-theme > .nc-header .nc-nav {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

body .nc-theme.nc-theme > .nc-header .nc-nav__group {
  width: auto !important;
}

body .nc-theme.nc-theme > .nc-main #container_wr.nc-container-wrap {
  display: block !important;
  width: min(var(--gs-shell), calc(100% - 40px)) !important;
  max-width: var(--gs-shell) !important;
  grid-template-columns: minmax(0, 1fr) !important;
}

body .nc-theme.nc-theme > .nc-main #aside.nc-sidebar {
  display: none !important;
}

body .nc-theme.nc-theme > .nc-top-frame .nc-hero-tools {
  display: grid !important;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 420px) minmax(180px, 1fr) !important;
  grid-template-rows: auto !important;
  align-items: center !important;
  gap: 12px !important;
}

body .nc-theme.nc-theme > .nc-top-frame .nc-profile-hero__inner {
  width: min(var(--gs-shell), calc(100% - 40px)) !important;
  max-width: var(--gs-shell) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

body .nc-theme.nc-theme > .nc-top-frame .nc-top-brand,
body .nc-theme.nc-theme > .nc-top-frame .nc-search,
body .nc-theme.nc-theme > .nc-top-frame .nc-top-auth {
  grid-row: 1 !important;
}

body .nc-theme.nc-theme > .nc-top-frame .nc-top-brand {
  grid-column: 1 !important;
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
}

body .nc-theme.nc-theme > .nc-top-frame .nc-search {
  grid-column: 2 !important;
  width: min(100%, 420px) !important;
}

body .nc-theme.nc-theme > .nc-top-frame .nc-top-auth {
  grid-column: 3 !important;
}

body .nc-theme.nc-theme > .nc-header.nc-header {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
}

body .nc-theme.nc-theme > .nc-header.nc-header .nc-header__inner {
  width: min(var(--gs-shell), calc(100% - 40px)) !important;
  min-width: 0 !important;
  max-width: var(--gs-shell) !important;
  height: auto !important;
}

body .nc-theme.nc-theme > .nc-header.nc-header .nc-nav {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
}

body .nc-theme.nc-theme > .nc-header.nc-header .nc-nav__label,
body .nc-theme.nc-theme > .nc-header.nc-header .nc-nav__utility {
  display: none !important;
}

body .nc-theme.nc-theme > .nc-header.nc-header .nc-subnav,
body .nc-theme.nc-theme > .nc-header.nc-header .nc-subnav.nc-subnav--board-categories,
body .nc-theme.nc-theme > .nc-header.nc-header .nc-nav__group > .nc-subnav {
  display: none !important;
}

body .nc-theme.nc-theme > .nc-main.nc-main.nc-main--community:not(.nc-main--shop) {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

body .nc-theme.nc-theme > .nc-main.nc-main.nc-main--community:not(.nc-main--shop) > #container_wr.nc-container-wrap.nc-community-shell,
body .nc-theme.nc-theme > .nc-main.nc-main.nc-main--community:not(.nc-main--shop):has(.nc-unified-feed) > #container_wr.nc-container-wrap.nc-community-shell {
  display: block !important;
  width: min(var(--gs-shell), calc(100% - 40px)) !important;
  max-width: var(--gs-shell) !important;
  margin: 0 auto !important;
  grid-template-columns: minmax(0, 1fr) !important;
  justify-content: stretch !important;
}

body .nc-theme.nc-theme > .nc-main.nc-main.nc-main--community:not(.nc-main--shop) #bo_list,
body .nc-theme.nc-theme > .nc-main.nc-main.nc-main--community:not(.nc-main--shop) #bo_v,
body .nc-theme.nc-theme > .nc-main.nc-main.nc-main--community:not(.nc-main--shop) #bo_w {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 900px) {
  body .nc-theme.nc-theme > .nc-top-frame .nc-hero-tools {
    grid-template-columns: 1fr !important;
  }

  body .nc-theme.nc-theme > .nc-top-frame .nc-top-brand,
  body .nc-theme.nc-theme > .nc-top-frame .nc-search,
  body .nc-theme.nc-theme > .nc-top-frame .nc-top-auth {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}

/* Gongsil integrated board shell */
body.content-page {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

#hd_login_msg {
  display: none !important;
}

body:not(.gongsil-board-shell-ready) > .nc-theme {
  opacity: 0;
}

.gongsil-board-page {
  --shell-max-width: 1360px;
  --calendar-quickbar-height: 42px;
  width: min(var(--shell-max-width), calc(100% - var(--shell-gutter)));
  margin: 0 auto;
  padding: 12px 0 24px;
}

.gongsil-board-page .gongsil-board-content-wrapper.content-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: 16px;
  align-items: start;
  width: 100%;
  min-width: 0;
}

.gongsil-board-left-sidebar {
  position: sticky;
  top: 10px;
  z-index: 18;
  align-self: start;
  width: 100%;
  min-width: 0;
}

.gongsil-board-left-card {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 14px;
  border: 1px solid #d4e1ee;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 60, 100, 0.08);
  box-sizing: border-box;
}

.gongsil-board-left-head {
  display: grid;
  gap: 2px;
  margin-bottom: 6px;
  padding-bottom: 11px;
  border-bottom: 1px solid #e3edf6;
  color: #17486e;
  line-height: 1.15;
}

.gongsil-board-left-kicker {
  color: #6d879b;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gongsil-board-left-head strong {
  color: #103a61;
  font-size: 1rem;
  font-weight: 950;
}

.gongsil-board-menu-link {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: #285271;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.1;
  box-sizing: border-box;
}

.gongsil-board-menu-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  color: #5f84a2;
  font-size: 0.94rem;
}

.gongsil-board-menu-link span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gongsil-board-menu-link:hover,
.gongsil-board-menu-link:focus-visible {
  border-color: #c6d8e7;
  background: #f4f9fd;
  color: #17486e;
  text-decoration: none;
}

.gongsil-board-menu-link.is-active {
  border-color: #1b67b5;
  background: linear-gradient(180deg, #2f83ff 0%, #1b67b5 100%);
  color: #fff;
  box-shadow: 0 4px 10px rgba(27, 103, 181, 0.28);
}

.gongsil-board-menu-link.is-active i {
  color: #fff;
}

.gongsil-board-page .nc-theme.nc-theme .btn_bo_user a[title="글쓰기"],
.gongsil-board-page .nc-theme.nc-theme .nc-main.nc-main--community-board .btn_bo_user a[title="글쓰기"],
.gongsil-board-page .nc-theme.nc-theme .nc-main.nc-main--community-board #bo_v_top a[title="글쓰기"],
.gongsil-board-page .nc-theme.nc-theme .nc-main.nc-main--community-board #bo_v_bot a[title="글쓰기"] {
  display: inline-flex !important;
  width: auto !important;
  min-width: 84px !important;
  padding: 0 13px !important;
  gap: 6px !important;
}

.gongsil-board-page .nc-theme.nc-theme .btn_bo_user a[title="글쓰기"] .sound_only,
.gongsil-board-page .nc-theme.nc-theme #bo_v_top a[title="글쓰기"] .sound_only,
.gongsil-board-page .nc-theme.nc-theme #bo_v_bot a[title="글쓰기"] .sound_only {
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: visible !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.gongsil-board-page .gongsil-board-content-wrapper > .nc-theme.nc-theme {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 18px 20px !important;
  border: 1px solid #d4e1ee !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(20, 60, 100, 0.08) !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.gongsil-board-page .nc-theme.is-board-loading {
  opacity: 0.62;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.gongsil-board-page .nc-theme.nc-theme > .nc-header,
.gongsil-board-page .nc-theme.nc-theme > .nc-top-frame,
.gongsil-board-page .nc-theme.nc-theme > .nc-footer {
  display: none !important;
}

.gongsil-board-page .nc-theme.nc-theme > .nc-main.nc-main {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

.gongsil-board-page .nc-theme.nc-theme > .nc-main #container_wr.nc-container-wrap,
.gongsil-board-page .nc-theme.nc-theme > .nc-main.nc-main--community:not(.nc-main--shop) > #container_wr.nc-container-wrap.nc-community-shell,
.gongsil-board-page .nc-theme.nc-theme > .nc-main.nc-main--community:not(.nc-main--shop):has(.nc-unified-feed) > #container_wr.nc-container-wrap.nc-community-shell {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-sizing: border-box !important;
  grid-template-columns: minmax(0, 1fr) !important;
}

.gongsil-board-page .nc-theme.nc-theme #container.nc-content {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-sizing: border-box !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list,
.gongsil-board-page .nc-theme.nc-theme #bo_v,
.gongsil-board-page .nc-theme.nc-theme #bo_w,
.gongsil-board-page .nc-theme.nc-theme .bo_fx,
.gongsil-board-page .nc-theme.nc-theme .tbl_head01,
.gongsil-board-page .nc-theme.nc-theme .tbl_frm01 {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.gongsil-board-page .nc-theme.nc-theme table {
  max-width: 100% !important;
}

.gongsil-board-page .nc-page-title {
  margin: 0 0 16px !important;
  padding: 0 0 12px !important;
  border-bottom: 1px solid #e3edf6 !important;
}

.gongsil-board-page .nc-page-title p {
  color: #6d879b !important;
  font-size: 0.75rem !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.gongsil-board-page .nc-page-title h2 {
  color: #123f68 !important;
  font-size: 1.18rem !important;
  letter-spacing: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_cate {
  display: block !important;
  margin: 0 0 16px !important;
  padding: 0 0 14px !important;
  border-bottom: 1px solid #e3edf6 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_cate h2 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_cate_ul {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_cate_ul li {
  margin: 0 !important;
  padding: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_cate_ul a,
.gongsil-board-page .nc-theme.nc-theme #bo_cate_ul #bo_cate_on {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border: 1px solid #c8d9e7 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #285271 !important;
  font-size: 0.84rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_cate_ul a:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_cate_ul a:focus-visible {
  border-color: #8db5d4 !important;
  background: #f4f9fd !important;
  color: #17486e !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_cate_ul #bo_cate_on {
  border-color: #1b67b5 !important;
  background: #1b67b5 !important;
  color: #fff !important;
  box-shadow: 0 4px 10px rgba(27, 103, 181, 0.2) !important;
}

.gongsil-board-top-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 14px;
  padding: 0 0 13px;
  border-bottom: 1px solid #e3edf6;
  overflow: visible;
  scrollbar-width: none;
}

.gongsil-board-top-menu::-webkit-scrollbar {
  display: none;
}

.gongsil-board-top-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: #285271;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.gongsil-board-top-link i {
  color: #5f84a2;
  font-size: 0.94rem;
}

.gongsil-board-top-link:hover,
.gongsil-board-top-link:focus-visible {
  border-color: #c6d8e7;
  background: #f4f9fd;
  color: #17486e;
  text-decoration: none;
}

.gongsil-board-top-link.is-active {
  border-color: #1b67b5;
  background: linear-gradient(180deg, #2f83ff 0%, #1b67b5 100%);
  color: #fff;
  box-shadow: 0 4px 10px rgba(27, 103, 181, 0.22);
}

.gongsil-board-top-link.is-active i {
  color: #fff;
}

.gongsil-board-page .gongsil-board-content-wrapper > .calendar-sidebar.gongsil-board-right-sidebar {
  top: 10px;
  justify-self: stretch;
}

@media (min-width: 1180px) {
  .gongsil-board-page .calendar-filter-card {
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(640px, 92vw);
    border-radius: 16px;
  }

  .gongsil-board-page .day-detail-card {
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(760px, 92vw);
    max-height: 80vh;
    border-radius: 16px;
  }
}

@media (max-width: 1180px) {
  .gongsil-board-page {
    --shell-max-width: 1180px;
  }

  .gongsil-board-page .gongsil-board-content-wrapper.content-wrapper {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 340px);
    gap: 14px;
  }

  .gongsil-board-page .gongsil-board-content-wrapper > .nc-theme.nc-theme {
    padding: 14px !important;
  }
}

@media (max-width: 1024px) {
  .gongsil-board-page {
    width: min(960px, calc(100% - 12px));
    padding: var(--calendar-quickbar-height) 0 16px;
  }

  .gongsil-board-page .gongsil-board-content-wrapper.content-wrapper {
    display: block;
  }

  .gongsil-board-left-sidebar {
    position: static;
    margin-bottom: 10px;
  }

  .gongsil-board-left-card {
    display: flex;
    align-items: center;
    gap: 7px;
    overflow-x: auto;
    padding: 9px;
    border-radius: 12px;
    scrollbar-width: none;
  }

  .gongsil-board-left-card::-webkit-scrollbar {
    display: none;
  }

  .gongsil-board-left-head {
    display: none;
  }

  .gongsil-board-menu-link {
    flex: 0 0 auto;
    grid-template-columns: auto;
    min-height: 32px;
    padding: 0 11px;
    white-space: nowrap;
  }

  .gongsil-board-menu-link i {
    display: none;
  }

  .gongsil-board-menu-link span {
    overflow: visible;
    text-overflow: clip;
  }

  .gongsil-board-page .gongsil-board-content-wrapper > .nc-theme.nc-theme {
    padding: 12px 10px !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 640px) {
  .gongsil-board-page {
    width: calc(100% - 10px);
  }

  .gongsil-board-page .gongsil-board-content-wrapper > .nc-theme.nc-theme {
    padding: 10px 8px !important;
    border-radius: 10px !important;
  }
}

/* Community board list and article refinements. */
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-list {
  gap: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-table-list {
  --nc-board-row-grid: 42px 58px minmax(0, 1fr) 86px 42px 42px 50px 54px;
  display: grid !important;
  width: 100% !important;
  overflow: hidden !important;
  border: 1px solid #d5e4f1 !important;
  border-radius: 10px !important;
  background: #fff !important;
  box-shadow: 0 4px 14px rgba(18, 63, 104, 0.05) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-table-list.has-checkbox {
  --nc-board-row-grid: 34px 42px 58px minmax(0, 1fr) 86px 42px 42px 50px 54px;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-table-head,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-table-row {
  display: grid !important;
  grid-template-columns: var(--nc-board-row-grid) !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-table-head {
  min-height: 38px !important;
  padding: 0 12px !important;
  border-bottom: 1px solid #dce8f3 !important;
  background: #f5f9fd !important;
  color: #5f7689 !important;
  font-size: 0.78rem !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-table-list:not(.has-checkbox) .nc-board-table-head span:nth-child(3) {
  text-align: left !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-table-list.has-checkbox .nc-board-table-head span:nth-child(4) {
  text-align: left !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-item.nc-board-table-row {
  min-height: 43px !important;
  padding: 0 12px !important;
  max-width: none !important;
  border: 0 !important;
  border-bottom: 1px solid #edf3f8 !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
  cursor: pointer;
  transition: background-color 0.14s ease, color 0.14s ease;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-item.nc-board-table-row .nc-board-feed-check,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-item.nc-board-table-row .nc-board-row-check {
  position: static !important;
  top: auto !important;
  left: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-check .selec_chk + label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  cursor: pointer !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-head-check {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-head-check .selec_chk + label {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  cursor: pointer !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-head-check .selec_chk + label span,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-check .selec_chk + label span {
  position: relative !important;
  float: none !important;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  border: 1px solid #b9cbe0 !important;
  border-radius: 4px !important;
  background-color: #fff !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-head-check .selec_chk:checked + label span,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-check .selec_chk:checked + label span {
  border-color: #1b67b5 !important;
  background: #1b67b5 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-head-check .selec_chk:checked + label span::after,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-check .selec_chk:checked + label span::after {
  position: absolute !important;
  top: 1px !important;
  left: 5px !important;
  width: 5px !important;
  height: 10px !important;
  border: solid #fff !important;
  border-width: 0 2px 2px 0 !important;
  content: "" !important;
  transform: rotate(45deg) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-head-check .selec_chk:focus-visible + label span,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-check .selec_chk:focus-visible + label span {
  box-shadow: 0 0 0 3px rgba(27, 103, 181, 0.16) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-item.nc-board-table-row:nth-child(even) {
  background: #fbfdff !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-item.nc-board-table-row:last-of-type {
  border-bottom: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-item.nc-board-table-row.is-notice {
  background: #f0f7ff !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-item.nc-board-table-row.is-private {
  background: #fffaf5 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-item:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-item:focus-visible {
  background: #eef7ff !important;
  box-shadow: inset 3px 0 0 #2d7dd2 !important;
  transform: none !important;
  outline: none;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-check,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-number,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-category,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-author,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-good,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-comment,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-hit,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-date {
  min-width: 0 !important;
  color: #61758a !important;
  font-size: 0.82rem !important;
  font-weight: 650 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-number {
  color: #88a0b4 !important;
  font-size: 0.78rem !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-category {
  justify-self: center !important;
  width: 100% !important;
  margin: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-category span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 38px !important;
  max-width: 52px !important;
  min-height: 22px !important;
  padding: 0 8px !important;
  border: 1px solid #d5e4f1 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #315f82 !important;
  font-size: 0.75rem !important;
  font-weight: 850 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-item.is-notice .nc-board-row-category span {
  border-color: #b9d7f2 !important;
  background: #dcefff !important;
  color: #0f4f85 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-title {
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 6px 0 2px !important;
  color: #172f43 !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-title a {
  display: block !important;
  max-width: 100% !important;
  color: inherit !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-item:hover .nc-board-feed-title a,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-item:focus-visible .nc-board-feed-title a {
  color: #1b67b5 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-title-comment {
  margin-left: 4px !important;
  color: #d3514c !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
}

.gongsil-board-page .nc-theme.nc-theme .nc-board-private-badge {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 20px !important;
  margin-left: 6px !important;
  padding: 0 6px !important;
  border: 1px solid #fed7aa !important;
  border-radius: 999px !important;
  background: #fff7ed !important;
  color: #c2410c !important;
  font-size: 0.7rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme .nc-board-private-badge--view {
  margin: 8px 0 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-author {
  overflow: hidden !important;
  color: #3d5366 !important;
  text-overflow: ellipsis !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-author a {
  color: inherit !important;
  text-decoration: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-comment {
  color: #d3514c !important;
  font-weight: 850 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-content,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-media {
  display: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-mobile-meta {
  display: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-pagination {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 14px 0 12px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-pagination .pg_wrap {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-pagination .pg {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-pagination .pg_page,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-pagination .pg_current {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 34px !important;
  height: 34px !important;
  line-height: 1 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  margin: 12px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  float: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-inline-search {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex: 0 1 420px !important;
  width: min(420px, 100%) !important;
  max-width: 420px !important;
  min-width: 260px !important;
  margin: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-inline-search select {
  width: auto !important;
  height: 42px !important;
  min-width: 96px !important;
  margin: 0 !important;
  padding: 0 30px 0 12px !important;
  border: 1px solid #cbddeb !important;
  border-radius: 8px !important;
  background-color: #f8fbff !important;
  color: #153f63 !important;
  font-size: 0.84rem !important;
  font-weight: 850 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-inline-search .sch_bar {
  display: flex !important;
  align-items: center !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid #cbddeb !important;
  border-radius: 8px !important;
  background: #fff !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-inline-search .sch_input {
  flex: 1 1 auto !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 12px !important;
  border: 0 !important;
  background: #fff !important;
  color: #153f63 !important;
  font-size: 0.86rem !important;
  font-weight: 750 !important;
  outline: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-inline-search .sch_btn {
  width: 42px !important;
  min-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-left: 1px solid #1a5f9e !important;
  border-radius: 0 !important;
  background: #1b67b5 !important;
  color: #fff !important;
  box-shadow: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn_bo_user {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  justify-content: center !important;
  gap: 7px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn_bo_user > li {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  margin: 0 !important;
  background: transparent !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn,
.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn_b01,
.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn_admin,
.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn_more_opt {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  min-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 12px !important;
  border: 1px solid #cbddeb !important;
  border-radius: 8px !important;
  background: #f8fbff !important;
  color: #153f63 !important;
  font-family: var(--gs-font-sans) !important;
  font-size: 0.86rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn_bo_user a[title="글쓰기"] {
  min-width: 88px !important;
  padding: 0 12px !important;
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn i,
.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn_b01 i,
.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn_admin i,
.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn_more_opt i,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-inline-search .sch_btn i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 1em !important;
  height: 1em !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn:focus-visible,
.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn_more_opt:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn_more_opt:focus-visible {
  border-color: #8eb4d5 !important;
  background: #eef7ff !important;
  color: #174f86 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .more_opt.is_list_btn {
  top: calc(100% + 8px) !important;
  right: 0 !important;
  min-width: 128px !important;
  padding: 6px !important;
  border: 1px solid #cbddeb !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 24px rgba(16, 44, 72, 0.14) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .more_opt.is_list_btn li {
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .more_opt.is_list_btn button {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  min-height: 34px !important;
  padding: 0 10px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #36556d !important;
  font-size: 0.8rem !important;
  font-weight: 850 !important;
  text-align: left !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-inline-search .sch_btn.btn,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-inline-search .sch_btn.btn_b01 {
  width: 42px !important;
  min-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 !important;
  border: 0 !important;
  border-left: 1px solid #1a5f9e !important;
  border-radius: 0 !important;
  background: #1b67b5 !important;
  color: #fff !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-inline-search .sch_btn.btn:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-inline-search .sch_btn.btn:focus-visible {
  background: #174f86 !important;
  color: #fff !important;
}

@media (max-width: 760px) {
  .gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-inline-search {
    max-width: none !important;
    min-width: 0 !important;
    width: 100% !important;
    flex-basis: auto !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-inline-search select {
    min-width: 82px !important;
    padding-right: 24px !important;
    font-size: 0.78rem !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .bo_fx .btn_bo_user {
    width: 100% !important;
    justify-content: center !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-table-list,
  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-table-list.has-checkbox {
    --nc-board-row-grid: auto minmax(0, 1fr) auto;
    border-radius: 9px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-table-head {
    display: none !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-feed-item.nc-board-table-row {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    grid-template-areas:
      "category title comment"
      "meta meta meta" !important;
    gap: 5px 8px !important;
    min-height: 58px !important;
    padding: 9px 10px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-table-list.has-checkbox .nc-board-feed-item.nc-board-table-row {
    grid-template-columns: auto auto minmax(0, 1fr) auto !important;
    grid-template-areas:
      "check category title comment"
      "check meta meta meta" !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-check {
    grid-area: check !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-number,
  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-author,
  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-good,
  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-hit,
  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-date {
    display: none !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-category {
    grid-area: category !important;
    align-self: center !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-category span {
    min-width: auto !important;
    max-width: 62px !important;
    min-height: 21px !important;
    padding: 0 7px !important;
    font-size: 0.72rem !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-title {
    grid-area: title !important;
    padding: 0 !important;
    font-size: 0.91rem !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-comment {
    grid-area: comment !important;
    align-self: center !important;
    min-width: 26px !important;
    color: #d3514c !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-mobile-meta {
    display: flex !important;
    grid-area: meta !important;
    min-width: 0 !important;
    gap: 8px !important;
    color: #788a9b !important;
    font-size: 0.76rem !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-row-mobile-meta span {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_list .nc-board-title-comment {
    display: none !important;
  }
}

.gongsil-board-page .nc-theme.nc-theme #bo_v {
  display: block !important;
  max-width: 100% !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_info {
  display: flex !important;
  justify-content: flex-end !important;
  width: min(100%, 860px) !important;
  max-width: 860px !important;
  margin: -4px auto 24px !important;
  padding: 0 0 14px !important;
  border-bottom: 1px solid #e3edf6 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_info > h2 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_info .nc-view-meta {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 7px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_info .nc-view-meta-group {
  display: flex !important;
  align-items: center !important;
  gap: 7px !important;
  flex-wrap: wrap !important;
  min-width: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_info .nc-view-meta-stats {
  justify-content: flex-start !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_info .nc-view-meta-byline {
  justify-content: flex-end !important;
  margin-left: auto !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_info .nc-view-meta-item {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  min-height: 30px !important;
  padding: 0 9px !important;
  border: 1px solid #d8e6f1 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #385872 !important;
  font-family: var(--gs-font-sans) !important;
  font-size: 0.78rem !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_info button.nc-view-meta-item {
  cursor: pointer !important;
  appearance: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_info button.nc-view-meta-item:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_v_info button.nc-view-meta-item:focus-visible,
.gongsil-board-page .nc-theme.nc-theme #bo_v_info a.nc-view-meta-item:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_v_info a.nc-view-meta-item:focus-visible {
  border-color: #9fbdd6 !important;
  background: #f4f9fd !important;
  color: #174f86 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_info .nc-view-share-button {
  border-color: #b9cfe2 !important;
  background: #f8fbff !important;
  color: #174f86 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_info .nc-view-meta-item i {
  color: #1b67b5 !important;
  font-size: 0.88rem !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_info .nc-view-meta-item strong {
  color: #102f4a !important;
  font-weight: 950 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_top {
  width: min(100%, 860px) !important;
  max-width: 860px !important;
  margin: 14px auto 10px !important;
  padding: 14px 0 0 !important;
  border-top: 1px solid #e8f0f7 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_top .btn_bo_user {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_top .btn_bo_user > li {
  position: relative !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_top .btn,
.gongsil-board-page .nc-theme.nc-theme #bo_v_top .btn_more_opt {
  min-height: 38px !important;
  width: auto !important;
  min-width: 98px !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_top .nc-view-action-label {
  display: inline !important;
  position: static !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_top .more_opt {
  top: calc(100% + 8px) !important;
  right: auto !important;
  left: 50% !important;
  min-width: 136px !important;
  transform: translateX(-50%) !important;
  border: 1px solid #c8d9e7 !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 20px rgba(18, 66, 110, 0.13) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_top .more_opt.is-open {
  display: block !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_title,
.gongsil-board-page .nc-theme.nc-theme #bo_v_title .bo_v_tit,
.gongsil-board-page .nc-theme.nc-theme #bo_v_img,
.gongsil-board-page .nc-theme.nc-theme #bo_v_con,
.gongsil-board-page .nc-theme.nc-theme #bo_v_act,
.gongsil-board-page .nc-theme.nc-theme #bo_v_file,
.gongsil-board-page .nc-theme.nc-theme #bo_v_link,
.gongsil-board-page .nc-theme.nc-theme .bo_v_nb,
.gongsil-board-page .nc-theme.nc-theme .nc-view-pager,
.gongsil-board-page .nc-theme.nc-theme .cmt_btn,
.gongsil-board-page .nc-theme.nc-theme #bo_vc,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w {
  width: min(100%, 860px) !important;
  max-width: 860px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_title {
  margin: 0 auto 10px !important;
  text-align: center !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_title .bo_v_tit {
  color: #101820 !important;
  font-family: var(--gs-font-sans) !important;
  font-size: clamp(1.55rem, 2.8vw, 2rem) !important;
  font-weight: 950 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_atc {
  max-width: none !important;
  padding: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_share {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 18px !important;
  padding: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_share .nc-share-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  min-height: 34px !important;
  padding: 0 12px !important;
  border: 1px solid #c8d9e7 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #285271 !important;
  font-family: var(--gs-font-sans) !important;
  font-size: 0.82rem !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  appearance: none !important;
  box-shadow: 0 1px 2px rgba(16, 44, 72, 0.05) !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_share .nc-share-button:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_v_share .nc-share-button:focus-visible {
  border-color: #8eb4d5 !important;
  color: #174f86 !important;
  box-shadow: 0 3px 8px rgba(16, 44, 72, 0.12) !important;
  transform: translateY(-1px) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_share .nc-share-button--kakao {
  border-color: #eedb78 !important;
  background: #fff9d8 !important;
  color: #4c3f10 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_sns {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_sns li {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  list-style: none !important;
  text-align: left !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_sns a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  min-height: 34px !important;
  height: auto !important;
  width: auto !important;
  padding: 0 12px !important;
  border: 1px solid #c8d9e7 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #285271 !important;
  font-size: 0.82rem !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_sns img {
  flex: 0 0 auto !important;
  width: 16px !important;
  max-width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  object-fit: contain !important;
}

.gongsil-board-page .nc-theme.nc-theme .nc-main:not(.nc-main--shop) #bo_v_atc #bo_v_sns img {
  display: block !important;
  flex: 0 0 16px !important;
  width: 16px !important;
  max-width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_sns span {
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_img:empty {
  display: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con {
  margin-bottom: 34px !important;
  color: #243f56 !important;
  font-family: var(--gs-font-sans) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.86 !important;
  word-break: keep-all !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con :where(p, div, li, span, td, th, a, em, small),
.gongsil-board-page .nc-theme.nc-theme #bo_vc :where(p, div, span, strong, em, b, small, textarea, input, button, label),
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w :where(p, div, span, strong, em, b, small, textarea, input, button, label),
.gongsil-board-page .nc-theme.nc-theme #bo_w :where(input, textarea, select, button, label) {
  font-family: var(--gs-font-sans) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con :where(p, div, li, span) {
  font-weight: 500 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con :where(strong, b) {
  font-family: var(--gs-font-sans) !important;
  font-weight: 850 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con p {
  margin: 0 0 15px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con h2 {
  margin: 30px 0 12px !important;
  color: #123f68 !important;
  font-size: 1.08rem !important;
  font-weight: 950 !important;
  line-height: 1.45 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con ul,
.gongsil-board-page .nc-theme.nc-theme #bo_v_con ol {
  margin: 0 0 18px !important;
  padding-left: 22px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con li {
  margin: 6px 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con a {
  color: #1b67b5 !important;
  font-weight: 800 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 3px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con a:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_v_con a:focus-visible {
  color: #0f4f85 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card {
  font-family: var(--gs-font-sans) !important;
  width: min(100%, 720px) !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card .nc-link-preview-anchor,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card .nc-link-preview-anchor,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card .nc-link-preview-anchor {
  grid-template-columns: minmax(112px, 168px) minmax(0, 1fr) !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card .nc-link-preview-thumb,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card .nc-link-preview-thumb,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card .nc-link-preview-thumb {
  width: 100% !important;
  height: 104px !important;
  min-height: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card .nc-link-preview-thumb img,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card .nc-link-preview-thumb img,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card .nc-link-preview-thumb img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card a,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card a {
  color: #102f4a !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card a:hover .nc-link-preview-title,
.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card a:focus-visible .nc-link-preview-title,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card a:hover .nc-link-preview-title,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card a:focus-visible .nc-link-preview-title {
  color: #1b67b5 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con table {
  width: 100% !important;
  max-width: 100% !important;
  margin: 12px 0 24px !important;
  overflow: hidden !important;
  border: 1px solid #dbe7f2 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 10px !important;
  background: #fff !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con th,
.gongsil-board-page .nc-theme.nc-theme #bo_v_con td {
  padding: 12px 14px !important;
  border: 0 !important;
  border-bottom: 1px solid #edf3f8 !important;
  color: #334e63 !important;
  font-size: 0.94rem !important;
  line-height: 1.5 !important;
  vertical-align: middle !important;
  overflow-wrap: anywhere !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con tr:last-child td {
  border-bottom: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con th {
  background: #f4f9fd !important;
  color: #123f68 !important;
  font-weight: 950 !important;
  text-align: center !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con td a {
  color: #1b67b5 !important;
  font-weight: 850 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-intro {
  margin: 0 0 18px !important;
  padding: 14px 16px !important;
  border: 1px solid #d8e6f1 !important;
  border-left: 4px solid #1b67b5 !important;
  background: #f6fbff !important;
  color: #31536f !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-heading {
  margin: 28px 0 10px !important;
  color: #123f68 !important;
  font-size: 1.08rem !important;
  font-weight: 950 !important;
  line-height: 1.35 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table {
  margin: 0 0 22px !important;
  table-layout: fixed !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table th,
.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table td {
  text-align: center !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table td:first-child {
  color: #102f4a !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-season-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  min-width: 112px !important;
  min-height: 34px !important;
  padding: 0 11px !important;
  border: 1px solid #b9d7ee !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #1b67b5 !important;
  font-size: 0.86rem !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-season-mark {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  border-radius: 999px !important;
  background: #e8f3ff !important;
  color: #1b67b5 !important;
  font-size: 0.74rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-season-name {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  color: inherit !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-season-action {
  color: inherit !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-season-link:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-season-link:focus-visible {
  border-color: #1b67b5 !important;
  background: #eef7ff !important;
  color: #124b83 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-season-link--peak {
  border-color: #f0c6cd !important;
  color: #c92a47 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-season-link--peak .nc-season-mark {
  background: #fff2f5 !important;
  color: #c92a47 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-season-link--peak:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-season-link--peak:focus-visible {
  border-color: #d94865 !important;
  background: #fff2f5 !important;
  color: #a71933 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_act.nc-view-like-actions {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 34px !important;
  margin-bottom: 34px !important;
  text-align: center !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_act .bo_v_act_gng {
  position: relative !important;
  display: inline-flex !important;
  justify-content: center !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_act a.nc-like-button,
.gongsil-board-page .nc-theme.nc-theme #bo_v_act span.nc-like-button {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  width: 112px !important;
  height: 112px !important;
  min-width: 112px !important;
  min-height: 112px !important;
  padding: 0 !important;
  border: 1px solid #d8e6f1 !important;
  border-radius: 14px !important;
  background: #fff !important;
  color: #214d72 !important;
  font-family: var(--gs-font-sans) !important;
  font-size: 0.84rem !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
  box-shadow: 0 6px 16px rgba(18, 66, 110, 0.08) !important;
  cursor: pointer !important;
  transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_act .nc-like-button i {
  margin: 0 !important;
  color: #d94865 !important;
  font-size: 1.78rem !important;
  line-height: 1 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_act .nc-like-button strong {
  display: block !important;
  color: #102f4a !important;
  font-size: 1.36rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_act .nc-like-button:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_v_act .nc-like-button:focus-visible {
  border-color: #e96a83 !important;
  color: #c92a47 !important;
  box-shadow: 0 9px 22px rgba(217, 72, 101, 0.18) !important;
  transform: translateY(-2px) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_act .nc-like-button.is-on {
  border-color: #e96a83 !important;
  background: #fff2f5 !important;
  color: #c92a47 !important;
  box-shadow: 0 9px 22px rgba(217, 72, 101, 0.18) !important;
  transform: translateY(-2px) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_act .nc-like-button.is-busy {
  opacity: 0.72 !important;
  pointer-events: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_act .nc-like-button--down {
  display: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_act_good,
.gongsil-board-page .nc-theme.nc-theme #bo_v_act_nogood {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 50% !important;
  z-index: 5 !important;
  display: none;
  width: max-content !important;
  min-width: 150px !important;
  padding: 9px 12px !important;
  border-radius: 999px !important;
  background: #1b67b5 !important;
  color: #fff !important;
  font-size: 0.8rem !important;
  font-weight: 850 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  transform: translateX(-50%) !important;
  box-shadow: 0 8px 18px rgba(18, 66, 110, 0.18) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_v_act_good.is-error,
.gongsil-board-page .nc-theme.nc-theme #bo_v_act_nogood.is-error {
  background: #d94865 !important;
}

.gongsil-board-page .nc-theme.nc-theme .nc-view-pager {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  gap: 8px !important;
  margin-top: 20px !important;
  margin-bottom: 16px !important;
}

.gongsil-board-page .nc-theme.nc-theme .nc-view-pager-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  min-height: 42px !important;
  padding: 0 14px !important;
  border: 1px solid #c8d9e7 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #285271 !important;
  font-family: var(--gs-font-sans) !important;
  font-size: 0.84rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: 0 1px 2px rgba(16, 44, 72, 0.05) !important;
}

.gongsil-board-page .nc-theme.nc-theme .nc-view-pager-button--prev {
  justify-self: start !important;
}

.gongsil-board-page .nc-theme.nc-theme .nc-view-pager-button--list {
  min-width: 92px !important;
  border-color: #9fbdd6 !important;
  background: #f8fbff !important;
  color: #174f86 !important;
}

.gongsil-board-page .nc-theme.nc-theme .nc-view-pager-button--next {
  justify-self: end !important;
}

.gongsil-board-page .nc-theme.nc-theme a.nc-view-pager-button:hover,
.gongsil-board-page .nc-theme.nc-theme a.nc-view-pager-button:focus-visible {
  border-color: #8eb4d5 !important;
  color: #174f86 !important;
  box-shadow: 0 4px 11px rgba(16, 44, 72, 0.12) !important;
  transform: translateY(-1px) !important;
}

.gongsil-board-page .nc-theme.nc-theme .nc-view-pager-button.is-disabled {
  opacity: 0.42 !important;
  cursor: default !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc span.bo_vc_w:empty {
  display: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc > article {
  grid-template-columns: 44px minmax(0, 1fr) !important;
  gap: 0 14px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc article .pf_img.nc-comment-avatar {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
  border: 1px solid rgba(31, 76, 113, 0.08) !important;
  border-radius: 50% !important;
  color: #102f4a !important;
  font-size: 1.32rem !important;
  line-height: 1 !important;
  box-shadow: 0 2px 7px rgba(16, 44, 72, 0.08) !important;
  overflow: hidden !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc article .pf_img.nc-comment-avatar span {
  display: block !important;
  line-height: 1 !important;
  transform: translateY(1px) !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc article .nc-comment-avatar--1 { background: #fff4e8 !important; }
.gongsil-board-page .nc-theme.nc-theme #bo_vc article .nc-comment-avatar--2 { background: #edf8ff !important; }
.gongsil-board-page .nc-theme.nc-theme #bo_vc article .nc-comment-avatar--3 { background: #f0f7ed !important; }
.gongsil-board-page .nc-theme.nc-theme #bo_vc article .nc-comment-avatar--4 { background: #fff2f6 !important; }
.gongsil-board-page .nc-theme.nc-theme #bo_vc article .nc-comment-avatar--5 { background: #f5f1ff !important; }
.gongsil-board-page .nc-theme.nc-theme #bo_vc article .nc-comment-avatar--6 { background: #f2f6f9 !important; }
.gongsil-board-page .nc-theme.nc-theme #bo_vc article .nc-comment-avatar--7 { background: #fff9de !important; }
.gongsil-board-page .nc-theme.nc-theme #bo_vc article .nc-comment-avatar--8 { background: #eefaf4 !important; }

.gongsil-board-page .nc-theme.nc-theme #bo_vc article .cm_wrap {
  padding-right: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 7px 12px !important;
  padding-right: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-meta-main {
  display: inline-flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  min-width: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-meta-side {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 6px !important;
  margin-left: auto !important;
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .bo_vc_hdinfo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
  margin-left: 0 !important;
  color: #778493 !important;
  font-size: 0.78rem !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-delete-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  border: 0 !important;
  background: transparent !important;
  color: #a5b0ba !important;
  font-family: var(--gs-font-sans) !important;
  font-size: 1rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-delete-button:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-delete-button:focus-visible {
  color: #607286 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-like-button,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-report-button,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-action-button,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-reply-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 28px !important;
  padding: 0 8px !important;
  border: 1px solid transparent !important;
  border-radius: 6px !important;
  background: transparent !important;
  color: #385872 !important;
  font-family: var(--gs-font-sans) !important;
  font-size: 0.78rem !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  appearance: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-like-button {
  gap: 5px !important;
  border-color: #d8e6f1 !important;
  background: #fff !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-like-button i {
  color: #1b67b5 !important;
  font-size: 0.9rem !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-like-button strong {
  color: #102f4a !important;
  font-weight: 950 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-like-button.is-on {
  border-color: #1b67b5 !important;
  background: #eef7ff !important;
  color: #174f86 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-report-button {
  color: #44586b !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-report-button:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-report-button:focus-visible,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-action-button:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-action-button:focus-visible {
  background: #f4f9fd !important;
  color: #174f86 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  gap: 5px !important;
  margin-top: 8px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-action-button {
  color: #7a8793 !important;
  font-size: 0.76rem !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-reply-button {
  padding-right: 0 !important;
  color: #285271 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-reply-button:hover,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-reply-button:focus-visible {
  color: #1b67b5 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .bo_vl_opt,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .btn_cm_opt,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .bo_vc_act {
  display: none !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-media-list {
  display: block !important;
  margin-top: 10px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card--comment,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card--comment {
  max-width: 560px !important;
  margin: 10px 0 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card--comment .nc-link-preview-anchor,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card--comment .nc-link-preview-anchor {
  grid-template-columns: 132px minmax(0, 1fr) !important;
  min-height: 88px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card--comment .nc-link-preview-thumb,
.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card--comment .nc-link-preview-thumb img,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card--comment .nc-link-preview-thumb,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card--comment .nc-link-preview-thumb img {
  height: 88px !important;
  min-height: 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card--comment .nc-link-preview-body,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card--comment .nc-link-preview-body {
  padding: 12px 13px !important;
}

.gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card--comment .nc-link-preview-title,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card--comment .nc-link-preview-title {
  font-size: 0.9rem !important;
}

.gongsil-board-page .nc-theme.nc-theme .nc-link-preview-dock {
  display: block !important;
  margin: 8px 0 0 !important;
}

.gongsil-board-page .nc-theme.nc-theme .nc-link-preview-dock[hidden] {
  display: none !important;
}

.gongsil-board-page .nc-theme.nc-theme .nc-link-preview-loading {
  margin: 8px 0 0 !important;
  color: #6f8294 !important;
  font-size: 0.78rem !important;
  font-weight: 750 !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w textarea#wr_content,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w textarea#wr_content,
.gongsil-board-page .nc-theme.nc-theme .bo_vc_w .bo_vc_w_info .frm_input,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .bo_vc_w_info .frm_input {
  border: 1px solid #7892a8 !important;
  background: #fff !important;
  box-shadow: inset 0 1px 0 rgba(16, 58, 97, 0.05) !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w textarea#wr_content:focus,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w textarea#wr_content:focus,
.gongsil-board-page .nc-theme.nc-theme .bo_vc_w .bo_vc_w_info .frm_input:focus,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .bo_vc_w_info .frm_input:focus {
  border-color: #1b67b5 !important;
  box-shadow: 0 0 0 3px rgba(27, 103, 181, 0.16) !important;
  outline: none !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w .secret_cm.chk_box label,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .secret_cm.chk_box label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 28px !important;
  padding-left: 0 !important;
  color: #385872 !important;
  font-weight: 850 !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w .secret_cm.chk_box input[type="checkbox"] + label span,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .secret_cm.chk_box input[type="checkbox"] + label span {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  display: inline-block !important;
  flex: 0 0 auto !important;
  width: 17px !important;
  height: 17px !important;
  margin: 0 !important;
  border: 1px solid #7892a8 !important;
  border-radius: 4px !important;
  background: #fff !important;
  background-image: none !important;
  box-shadow: inset 0 1px 0 rgba(16, 58, 97, 0.06) !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w .secret_cm.chk_box input[type="checkbox"]:checked + label span,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .secret_cm.chk_box input[type="checkbox"]:checked + label span {
  border-color: #1b67b5 !important;
  background: #1b67b5 !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w .secret_cm.chk_box input[type="checkbox"]:checked + label span::after,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .secret_cm.chk_box input[type="checkbox"]:checked + label span::after {
  position: absolute !important;
  top: 1px !important;
  left: 5px !important;
  width: 5px !important;
  height: 10px !important;
  border: solid #fff !important;
  border-width: 0 2px 2px 0 !important;
  content: "" !important;
  transform: rotate(45deg) !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w .secret_cm.chk_box input[type="checkbox"]:focus-visible + label span,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .secret_cm.chk_box input[type="checkbox"]:focus-visible + label span {
  box-shadow: 0 0 0 3px rgba(27, 103, 181, 0.16) !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w .btn_comment_cancel,
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .btn_comment_cancel {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 70px !important;
  height: 40px !important;
  padding: 0 14px !important;
  border: 1px solid #cbddeb !important;
  border-radius: 6px !important;
  background: #fff !important;
  color: #385872 !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

.gongsil-board-page .nc-theme.nc-theme .bo_vc_w .btn_comment_cancel[hidden],
.gongsil-board-page .nc-theme.nc-theme #bo_vc_w .btn_comment_cancel[hidden] {
  display: none !important;
}

@media (max-width: 720px) {
  .gongsil-board-page .nc-theme.nc-theme #bo_w form {
    gap: 12px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-meta {
    align-items: flex-start !important;
    justify-content: flex-start !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-category-buttons,
  .gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-options,
  .gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-visibility__options {
    width: 100% !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-category-buttons label {
    flex: 1 1 72px !important;
    min-width: 0 !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_w .gongsil-write-visibility label {
    flex: 1 1 100% !important;
    justify-content: space-between !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_w .bo_w_tit .frm_input {
    padding-right: 12px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_w .bo_w_tit #btn_autosave {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
    margin-top: 8px !important;
    transform: none !important;
  }

  .gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha {
    gap: 6px !important;
    padding: 8px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_img,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_img {
    width: 96px !important;
    min-width: 96px !important;
    height: 38px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_key,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_key {
    flex: 1 1 78px !important;
    width: auto !important;
    min-width: 78px !important;
    height: 38px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_mp3,
  .gongsil-board-page .nc-theme.nc-theme .bo_vc_w #captcha #captcha_reload,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_mp3,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc_w #captcha #captcha_reload {
    width: 36px !important;
    height: 36px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_info {
    justify-content: flex-start !important;
    margin-bottom: 18px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_info .nc-view-meta {
    justify-content: space-between !important;
    align-items: flex-start !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_info .nc-view-meta-group {
    width: 100% !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_info .nc-view-meta-byline {
    justify-content: flex-start !important;
    margin-left: 0 !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_top .btn_bo_user {
    justify-content: flex-start !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_top .btn,
  .gongsil-board-page .nc-theme.nc-theme #bo_v_top .btn_more_opt {
    min-width: 64px !important;
    min-height: 36px !important;
    padding: 0 11px !important;
    font-size: 0.78rem !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con {
    font-size: 0.96rem !important;
    line-height: 1.78 !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con th,
  .gongsil-board-page .nc-theme.nc-theme #bo_v_con td {
    padding: 9px 6px !important;
    font-size: 0.82rem !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card {
    max-width: 100% !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card .nc-link-preview-anchor,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card .nc-link-preview-anchor,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card .nc-link-preview-anchor {
    grid-template-columns: 96px minmax(0, 1fr) !important;
    min-height: 78px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card .nc-link-preview-thumb,
  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card .nc-link-preview-thumb img,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card .nc-link-preview-thumb,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card .nc-link-preview-thumb img,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card .nc-link-preview-thumb,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card .nc-link-preview-thumb img {
    height: 78px !important;
    min-height: 0 !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card .nc-link-preview-body,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card .nc-link-preview-body,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card .nc-link-preview-body {
    padding: 10px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card .nc-link-preview-title,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card .nc-link-preview-title,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card .nc-link-preview-title {
    margin-bottom: 4px !important;
    font-size: 0.82rem !important;
    line-height: 1.35 !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-link-preview-card .nc-link-preview-desc,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-link-preview-card .nc-link-preview-desc,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc_w .nc-link-preview-card .nc-link-preview-desc {
    display: none !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table,
  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table thead,
  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table tbody,
  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table tr,
  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table th,
  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table td {
    display: block !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table {
    border-radius: 12px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table thead {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table tbody {
    width: 100% !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table tr {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 8px !important;
    padding: 10px !important;
    border-bottom: 1px solid #edf3f8 !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table tr:last-child {
    border-bottom: 0 !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table td {
    min-width: 0 !important;
    padding: 0 !important;
    border-bottom: 0 !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table td:first-child {
    grid-column: 1 / -1 !important;
    padding-bottom: 1px !important;
    text-align: left !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table td:nth-child(2)::before,
  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table td:nth-child(3)::before {
    display: block !important;
    margin-bottom: 5px !important;
    color: #71869a !important;
    font-size: 0.68rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table td:nth-child(2)::before {
    content: "성수기" !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table td:nth-child(3)::before {
    content: "비수기" !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-reservation-table td:first-child {
    white-space: normal !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-season-link {
    gap: 4px !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 40px !important;
    padding: 0 6px !important;
    font-size: 0.76rem !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-season-mark {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    font-size: 0.66rem !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_con .nc-season-name {
    flex-direction: column !important;
    gap: 1px !important;
    max-width: 76px !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_v_act a.nc-like-button,
  .gongsil-board-page .nc-theme.nc-theme #bo_v_act span.nc-like-button {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_vc > article {
    grid-template-columns: 36px minmax(0, 1fr) !important;
    gap: 0 11px !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_vc article .pf_img.nc-comment-avatar {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
    font-size: 1.1rem !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_vc header {
    align-items: flex-start !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_vc .bo_vc_hdinfo {
    width: auto !important;
    margin-left: 0 !important;
  }

  .gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-like-button,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-report-button,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-action-button,
  .gongsil-board-page .nc-theme.nc-theme #bo_vc .nc-comment-reply-button {
    min-height: 26px !important;
    padding: 0 6px !important;
    font-size: 0.74rem !important;
  }
}
