@charset "utf-8";
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap'); */
/* NotoSans 쓸 경우 주석 풀고, body 적용 */

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("fonts/Pretendard-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

* {
  word-break: keep-all;
  box-sizing: border-box;
}

body {
  font-family:
    "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

html {
  font-family:
    "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif !important;
}

/* 초기화 */
html {
  overflow-y: auto !important;
}

html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
  margin: 0;
  padding: 0;
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-family: inherit !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}

label,
input,
button,
select,
img {
  vertical-align: middle;
  font-size: 1em;
}

input,
button {
  margin: 0;
  padding: 0;
  font-family: inherit !important;
}

input[type="submit"] {
  cursor: pointer;
}

button {
  cursor: pointer;
}

textarea,
select {
  font-family: inherit !important;
}

select {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
  word-break: break-all;
}

pre {
  overflow-x: scroll;
  font-size: 1.1em;
}

a {
  color: inherit;
  text-decoration: none;
}

/*head.sub.php + lib/itgo.theme.colors.php 에서 --point 등 브랜드 변수 주입 */
:root {
  --primary: #191919;
  --seconday: #9f9f9f;
  --header-h: 54px;
  --lnb-h: 48px;
  --footer-h: 286px;
}

/* 입력·선택 필드 포커스 — point 컬러 통일 */
input:not([type="button"]):not([type="submit"]):not([type="reset"]):not(
    [type="checkbox"]
  ):not([type="radio"]):not([type="hidden"]):not([type="file"]):not(
    [type="image"]
  ):not([type="range"]):not(.itgo-sidebar-search__input):not(
    .itgo-mobile-search__input
  ):not(.itgo-board-combined__input):focus,
select:focus {
  outline: none;
  border-color: var(--point, #C7852E) !important;
  box-shadow: 0 0 0 1px var(--point, #C7852E);
}

/* textarea — 자체 outline/ring 비활성, 직계 부모 테두리로 포커스 표시 */
textarea {
  -webkit-tap-highlight-color: transparent;
}

textarea:focus,
textarea:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

div:has(> textarea:focus),
.itgo-textarea-field:focus-within {
  border-color: var(--point, #C7852E) !important;
}

div:has(> textarea) > textarea,
.itgo-textarea-field > textarea {
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

textarea.itgo-textarea-box {
  border: 1px solid #d7d7d7;
  transition: border-color 0.2s ease;
}

textarea.itgo-textarea-box:focus,
textarea.itgo-textarea-box:focus-visible {
  border-color: var(--point, #C7852E) !important;
}

.overlay {
  position: relative;
}

.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 0;
}

#header.active {
  background-color: #fff !important;
  color: #191919 !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.06);
}

.itgo-toggle {
  position: relative;
  width: 40px;
  height: 20px;
  border-radius: 9999px;
  background: #d9d9d9;
  transition: background 0.2s ease;
}

.itgo-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: #fff;
  transition: transform 0.2s ease;
}

.itgo-toggle-input:checked + .itgo-toggle {
  background: var(--point);
}

.itgo-toggle-input:checked + .itgo-toggle::after {
  transform: translateX(20px);
}

.itgo-field-label {
  width: 123px;
  flex-shrink: 0;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.8);
}

.itgo-field-required {
  color: var(--point);
}

.itgo-input {
  width: 100%;
  height: 45px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 0.9375rem;
  color: #191919;
  background: #fff;
}

.itgo-input:focus {
  outline: none;
  border-color: var(--point, #C7852E) !important;
  box-shadow: 0 0 0 1px var(--point, #C7852E);
}

/* readonly input: .itgo-input:focus !important 덮어쓰기 (div 잠금 필드는 Tailwind 유틸 사용) */
.itgo-input.itgo-input--locked:focus,
.itgo-input.itgo-input--locked:focus-visible {
  outline: none;
  border-color: #e5e5e5 !important;
  box-shadow: none !important;
}

.itgo-password-field {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
}

.itgo-password-field.itgo-field-flex {
  flex: 1 1 0%;
  min-width: 0;
}

.itgo-password-field .itgo-password-input--pad,
.itgo-password-field input[type="password"],
.itgo-password-field input[type="text"].itgo-password-input--pad {
  padding-right: 2.75rem !important;
  width: 100%;
}

.itgo-password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9f9f9f;
  cursor: pointer;
}

.itgo-password-toggle:hover,
.itgo-password-toggle:focus {
  color: #191919;
  outline: none;
}

.itgo-password-toggle i {
  font-size: 1.25rem;
  line-height: 1;
}

.itgo-form-box {
  background: #fff;
  border-radius: 12px;
  padding: 40px 60px;
}

.itgo-form-panel {
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 40px;
}

.itgo-field-flex {
  flex: 1 1 0%;
  min-width: 0;
  width: 100%;
}

.itgo-biz-confirm-loading {
  width: 280px;
  height: 280px;
  max-width: 100%;
  margin: 0 auto;
  object-fit: contain;
}

.itgo-biz-confirm-body {
  padding: 1.25rem 0;
}

.itgo-biz-confirm-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .sub_tit {
    margin-bottom: 2rem;
  }
}

/* 신고 모달 */
.itgo-report-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.itgo-report-modal.is-open {
  display: flex;
}

.itgo-report-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.itgo-report-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border-radius: 12px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.itgo-report-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.itgo-report-modal__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #191919;
}

.itgo-report-modal__close {
  border: 0;
  background: transparent;
  color: #191919;
  cursor: pointer;
  padding: 4px;
}

.itgo-report-reason-item:has(input:checked) {
  border-color: var(--point);
  background: var(--point-muted-bg);
}

body.itgo-report-open {
  overflow: hidden;
}

.itgo-biz-confirm-visual.is-loading {
  width: 280px;
  height: 280px;
  margin-bottom: 1rem;
}

.itgo-biz-confirm-visual.is-success {
  width: auto;
  height: auto;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0;
}

.itgo-biz-confirm-success-icon {
  line-height: 1;
}

.itgo-biz-confirm-success-icon i {
  font-size: 5rem;
  color: var(--point);
}

.itgo-biz-confirm-detail {
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .itgo-biz-confirm-body {
    padding: 1.5rem 0;
  }

  .itgo-biz-confirm-loading {
    width: 400px;
    height: 400px;
  }

  .itgo-biz-confirm-visual.is-loading {
    width: 400px;
    height: 400px;
    margin-bottom: 1.25rem;
  }

  .itgo-biz-confirm-visual.is-success {
    margin-bottom: 1rem;
    padding: 0.5rem 0;
  }

  .itgo-biz-confirm-success-icon i {
    font-size: 6rem;
  }

  .itgo-biz-confirm-detail {
    margin-bottom: 2rem;
  }
}

.itgo-page-inner #register_form {
  background: transparent;
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  html,
  body {
    background-color: #ffffff !important;
  }

  .itgo-page-inner,
  .itgo-mypage,
  #bo_list,
  #bo_v,
  #bo_w,
  #bo_memo,
  .site-wrap,
  .itgo-layout,
  .itgo-content {
    background-color: #ffffff !important;
  }

  .itgo-page-inner .itgo-form-box {
    padding: 16px;
    border-radius: 8px;
  }

  .itgo-page-inner .itgo-form-panel {
    padding: 16px;
    border-radius: 8px;
  }

  .itgo-page-inner .itgo-form-box > .itgo-form-panel {
    padding: 0;
    border: none;
    border-radius: 0;
  }

  .itgo-page-inner #register_form {
    max-width: none;
  }

  .itgo-page-inner .itgo-form-box .itgo-field-label,
  .itgo-page-inner #register_form .itgo-field-label {
    width: 100%;
  }

  .itgo-page-inner .itgo-form-box .itgo-field-flex,
  .itgo-page-inner #register_form .itgo-field-flex {
    width: 100%;
    flex: none;
  }

  .itgo-page-inner .itgo-form-box .itgo-input,
  .itgo-page-inner #register_form .itgo-input {
    width: 100%;
    height: 45px;
    min-height: 45px;
    box-sizing: border-box;
    flex: none;
  }

  .itgo-page-inner .itgo-form-box .itgo-btn-primary,
  .itgo-page-inner #register_form .itgo-btn-primary {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

.itgo-page-inner #register_form .itgo-field-flex .itgo-input {
  width: 100%;
}

.itgo-text-point {
  color: var(--point);
}

.itgo-page-inner #register_form .is_captcha_use {
  margin-top: 0.5rem;
}

.itgo-page-inner #register_form #captcha {
  margin: 0;
  padding: 1rem;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  background: #fafafa;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.itgo-page-inner #register_form #captcha legend {
  display: none;
}

.itgo-page-inner #register_form #captcha #captcha_img {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  max-width: 10rem;
  height: auto;
  margin: 0;
  border: 1px solid #d9d9d9;
  border-radius: 0.375rem;
}

.itgo-page-inner #register_form #captcha #captcha_key,
.itgo-page-inner #register_form #captcha .captcha_box {
  flex: 1 1 8rem;
  min-width: 0;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0.625rem 0.75rem;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  height: 2.5rem;
}

.itgo-page-inner #register_form #captcha #captcha_reload,
.itgo-page-inner #register_form #captcha #captcha_mp3 {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 1px solid #d9d9d9;
  border-radius: 0.375rem;
  background: #fff !important;
  background-image: none !important;
  font-size: 1.25rem;
  color: #434343;
  line-height: 1;
  overflow: visible;
  text-indent: 0;
  cursor: pointer;
  vertical-align: middle;
}

.itgo-page-inner #register_form #captcha #captcha_reload i,
.itgo-page-inner #register_form #captcha #captcha_mp3 i {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
  color: #434343;
}

.itgo-page-inner #register_form #captcha #captcha_reload .sr-only,
.itgo-page-inner #register_form #captcha #captcha_mp3 .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.itgo-page-inner #register_form #captcha #captcha_info {
  flex: 0 0 100%;
  display: block;
  margin: 0;
  font-size: 0.8125rem;
  color: #9f9f9f;
}

.itgo-page-inner #register_form #captcha #captcha_audio {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.itgo-page-inner #register_form #captcha.m_captcha #captcha_img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 60px;
  margin: 0;
}

@media (max-width: 1023px) {
  .itgo-page-inner #register_form #captcha #captcha_key,
  .itgo-page-inner #register_form #captcha .captcha_box {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    height: 2.5rem;
    min-height: 2.5rem;
  }
}

.itgo-biz-cert-dropzone {
  width: 100%;
  transition: border-color 0.2s ease;
}

.itgo-biz-cert-dropzone:focus-within {
  border-color: var(--point);
}

.itgo-login-card {
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.itgo-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--point);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.itgo-btn-primary:hover,
.itgo-btn-primary:focus {
  background-color: var(--point-hover);
  color: #fff;
}

.itgo-btn-primary:disabled {
  background-color: #bfbfbf;
  cursor: not-allowed;
}

@keyframes itgo-spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: itgo-spin 1s linear infinite;
}

/* 아이콘 있는 경우 header.active * {color: #000 !important;} 해주시면 됩니다. */

/* 애니메이션 관련 */

/* 버튼 */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #fff;
  color: var(--primary);
  outline: 1px solid var(--primary);
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
}

.btn-primary:active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary {
  background-color: var(--seconday);
  color: #fff;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: #fff;
  color: var(--seconday);
  outline: 1px solid var(--seconday);
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
}

.btn-secondary:active {
  background: var(--seconday);
  color: #fff;
  box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-primary-outline {
  background-color: transparent;
  color: var(--primary);
  outline: 1px solid var(--primary);
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(96, 165, 250, 0.15);
  outline: none;
}

.btn-primary-outline:active {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(96, 165, 250, 0.1);
}

.btn-secondary-outline {
  background-color: transparent;
  color: var(--seconday);
  outline: 1px solid var(--seconday);
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus {
  background: var(--seconday);
  color: #fff;
  box-shadow: 0 2px 8px rgba(156, 163, 175, 0.15);
  outline: none;
}

.btn-secondary-outline:active {
  background: #fff;
  color: var(--seconday);
  box-shadow: 0 1px 4px rgba(156, 163, 175, 0.1);
}

.btn-animation {
  position: relative;
  overflow: hidden;
  color: var(--primary);
  outline: 1px solid var(--primary);
}

.btn-animation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  z-index: -1;
  transition: all 0.3s ease;
}

.btn-animation:hover {
  color: #fff;
  outline: 0;
}

.btn-animation:hover::before {
  width: 100%;
}

.button:disabled,
.btn-primary:disabled,
.btn-secondary:disabled,
.btn-primary-outline:disabled,
.btn-secondary-outline:disabled,
.btn-animation:disabled {
  background: #e5e7eb !important;
  /* Tailwind gray-200 */
  color: #b0b0b0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  opacity: 0.6;
  pointer-events: none;
  filter: grayscale(0.2);
}

.sit_icon {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.editor-content img {
  display: initial;
}

#sev_himg * {
  font-family:
    "Pretendard", "Noto Emoji", "Segoe UI Emoji", sans-serif !important;
}

.sev_admin {
  display: none;
}

/* Lnb 관련  */
/* lnb  */
.lnb_wrap {
  position: relative;
}

.lnb {
  background: #fff;
}

.lnb .lnb_map {
  height: var(--lnb-h);
  display: flex;
  align-items: center;
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
  max-width: 1600px;
  margin: 0 auto;
}

.lnb .lnb_map .home {
  width: var(--lnb-h);
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lnb .lnb_map .home a {
  color: #333;
}

.lnb .lnb_map > li {
  height: 100%;
  border-right: 1px solid #ddd;

  position: relative;
}

.lnb .lnb_map li.dep a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lnb .lnb_map li.dep a span {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #333;
}

.lnb .lnb_map li.dep ul {
  display: none;
  position: absolute;
  left: 0;
  top: var(--lnb-h);
  width: 100%;
  z-index: 9999;
}

.lnb .lnb_map li.dep ul li {
  width: 100%;
  background: #f9f9f9;
  border-bottom: 1px solid #fff;
}

.lnb .lnb_map li.dep ul li a:hover {
  background: var(--primary);
  color: #fff;
  transition: 0.3s all;
}

.lnb .lnb_map li.dep ul li a.on {
  background: var(--primary);
  color: #fff;
}

/* 구글 번역 부분 커스텀 css - 번역기능 있을 경우만 사용 */

body {
  position: static !important;
  top: 0px !important;
}

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  display: none !important;
}

body > .skiptranslate,
.goog-logo-link,
.gskiptranslate,
.goog-te-gadget span,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
div#goog-gt- {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0px;
  width: 100px;
}

.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}

#google_translate_element select {
  background: transparent;
  color: #000;
  border: none;
  font-weight: bold;
  border-radius: 0px;
  padding: 8px 12px;
}

/* 게시판 목록 — 전체선택 체크박스 (gallery 배너 게시판 등) */
.itgo-board-select-all__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #666;
  cursor: pointer;
  user-select: none;
}

.itgo-board-select-all__text {
  display: inline-block;
  line-height: 1.25rem;
}

.itgo-board-select-all input[type="checkbox"],
#gall_allchk.itgo-board-select-all input[type="checkbox"] {
  position: static !important;
  top: auto !important;
  left: auto !important;
  width: 1rem !important;
  height: 1rem !important;
  min-width: 1rem;
  min-height: 1rem;
  margin: 0 !important;
  opacity: 1 !important;
  z-index: auto !important;
  overflow: visible !important;
  flex-shrink: 0;
}

/* 게시판 목록 — 툴바 관리 아이콘 (basic legacy style.css override) */
#bo_list.itgo-board-combined .itgo-board-list-actions {
  float: none;
}

#bo_list.itgo-board-combined .itgo-board-list-actions .more_opt.is_list_btn {
  display: none !important;
  float: none;
  width: auto;
  top: auto;
  right: auto;
  padding: 0;
  border-radius: 0.5rem;
}

#bo_list.itgo-board-combined
  .itgo-board-list-actions
  .more_opt.is_list_btn::before,
#bo_list.itgo-board-combined
  .itgo-board-list-actions
  .more_opt.is_list_btn::after {
  content: none;
}

#bo_list.itgo-board-combined
  .itgo-board-list-actions
  .more_opt.is_list_btn.is-open {
  display: block !important;
}

#bo_list.itgo-board-combined .itgo-board-list-actions .more_opt.is_list_btn li {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  border-bottom: 0;
  text-align: left;
}

/* 게시판 공통 — 검색 필터·즐겨찾기·검색창 (combined / memo 등) */
.itgo-board-combined__search-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .itgo-board-combined__search-row {
    flex-direction: row;
    gap: 12px;
    justify-content: flex-end;
  }
}

@media (max-width: 1023px) {
  .itgo-board-combined__search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
  }

  .itgo-board-combined__search-field {
    grid-column: 1 / -1;
  }

  .itgo-board-filter__trigger {
    height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .itgo-board-filter--period .itgo-board-filter__menu {
    width: 100%;
    min-width: 0;
  }

  .itgo-board-combined__search-field {
    height: 46px;
  }
}

@media (min-width: 1024px) {
  .itgo-board-combined__search-field {
    flex: 1 1 auto;
    min-width: 0;
  }
}

.itgo-board-filter {
  position: relative;
}

.itgo-board-filter__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  font-size: 14px;
  line-height: 1.2;
  color: #191919;
  text-align: left;
  cursor: pointer;
}

.itgo-board-filter.is-open .itgo-board-filter__trigger,
.itgo-board-filter__trigger:focus-visible {
  border-color: var(--point);
  outline: none;
}

.itgo-board-filter__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.itgo-board-filter__icon {
  flex-shrink: 0;
  font-size: 18px;
  color: #9f9f9f;
  transition: transform 0.2s ease;
}

.itgo-board-filter.is-open .itgo-board-filter__icon {
  transform: rotate(180deg);
}

.itgo-board-filter__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 30;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.itgo-board-filter--period .itgo-board-filter__menu {
  min-width: 100%;
  width: 275px;
}

.itgo-board-filter__options {
  margin: 0;
  padding: 6px 0;
  list-style: none;
}

.itgo-board-filter__custom {
  padding: 12px 14px 14px;
  border-top: 1px solid #ececec;
}

.itgo-board-filter__custom-title {
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.2;
  color: #191919;
}

.itgo-board-filter__custom-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px;
}

.itgo-board-filter__date {
  width: 100%;
  min-width: 0;
  height: 36px;
  padding: 0 8px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 12px;
  color: #191919;
  background: #fff;
}

.itgo-board-filter__date-sep {
  flex-shrink: 0;
  font-size: 12px;
  color: #9f9f9f;
  line-height: 1;
}

.itgo-board-filter__date-apply {
  flex-shrink: 0;
  height: 36px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  background: var(--point);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
}

.itgo-board-filter__date-apply:hover {
  background: var(--point-hover);
}

.itgo-board-filter.is-custom .itgo-board-filter__custom {
  background: var(--point-muted-bg);
}

.itgo-board-filter__option {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  background: transparent;
  font-size: 14px;
  line-height: 1.2;
  color: #191919;
  text-align: left;
  cursor: pointer;
}

.itgo-board-filter__option:hover,
.itgo-board-filter__option.is-active {
  color: var(--point);
  background: var(--point-muted-bg);
}

.itgo-board-favorite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 500;
}

.itgo-favorite-btn i {
  font-weight: 500;
}

.itgo-board-combined__search-field {
  display: flex;
  align-items: stretch;
  height: 46px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.itgo-board-combined__search-field:focus-within {
  border-color: var(--point);
}

.itgo-board-combined__input {
  height: 100%;
  border: 0;
  border-radius: 0;
  padding: 0 14px;
  font-size: 14px;
  color: #191919;
  background: transparent;
  outline: none;
}

.itgo-board-combined__input::placeholder {
  color: rgba(25, 25, 25, 0.4);
}

.itgo-board-combined__search-btn {
  width: 58px;
  height: auto;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: var(--point);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.itgo-board-combined__search-btn:hover {
  background: var(--point-hover);
}

/* 게시판 글쓰기 — 임시저장 팝업, 에디터, 하단 버튼 */
#bo_w #autosave_wrapper {
  position: relative;
}

#bo_w #autosave_pop {
  display: none;
  z-index: 20;
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  width: min(100%, 350px);
  max-height: 220px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

html.no-overflowscrolling #bo_w #autosave_pop {
  max-height: 10000px;
}

#bo_w #autosave_pop strong {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #191919;
  border-bottom: 1px solid #e9e9e9;
}

#bo_w #autosave_pop ul {
  margin: 0;
  padding: 8px 14px;
  list-style: none;
  overflow-y: auto;
  max-height: 140px;
  border-bottom: 1px solid #e9e9e9;
}

#bo_w #autosave_pop li {
  padding: 8px 4px;
  border-bottom: 1px solid #f3f4f6;
}

#bo_w #autosave_pop li:last-child {
  border-bottom: 0;
}

#bo_w #autosave_pop a {
  display: block;
  font-size: 13px;
  color: #374151;
  text-decoration: none;
}

#bo_w #autosave_pop a:hover {
  color: var(--primary, #f97316);
}

#bo_w #autosave_pop span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-style: italic;
  color: #9ca3af;
}

#bo_w #autosave_pop div {
  text-align: center;
  margin: 0;
}

#bo_w #autosave_pop .autosave_close {
  cursor: pointer;
  width: 100%;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
}

#bo_w #autosave_pop .autosave_close:hover {
  background: #f9fafb;
  color: #374151;
}

#bo_w #btn_autosave {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  line-height: 1.2;
  white-space: nowrap;
}

#bo_w .bo_w_tit #wr_subject {
  padding-right: 9.5rem;
}

/* 글쓰기 폼 입력 높이 통일 (46px) */
#bo_w .itgo-write-control {
  display: block;
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 0 12px;
  font-size: 14px;
  color: #191919;
  background-color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s ease;
}

#bo_w input.itgo-write-control,
#bo_w select.itgo-write-control {
  height: 46px;
  line-height: 1.4;
}

#bo_w input.itgo-write-control:focus,
#bo_w select.itgo-write-control:focus {
  border-color: var(--point);
  outline: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

#bo_w select.itgo-write-control {
  padding-right: 32px;
}

#bo_w .bo_w_tit #wr_subject.itgo-write-control {
  padding-right: 9.5rem;
}

#bo_w .itgo-board-tags.itgo-write-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  height: auto;
  min-height: 46px;
  padding: 8px 12px;
  line-height: normal;
}

#bo_w .itgo-board-tags.itgo-write-control:focus-within {
  border-color: var(--point);
}

#bo_w .itgo-board-tags__input {
  flex: 1 1 140px;
  min-width: 140px;
  min-height: 28px;
  height: 28px;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  font-size: 14px;
  line-height: 28px;
  color: #191919;
  outline: none;
  box-shadow: none;
}

#bo_w .itgo-board-tags__input::placeholder {
  color: rgba(25, 25, 25, 0.4);
}

#bo_w .itgo-board-tags__input:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

#bo_w input[type="file"].itgo-write-control {
  height: 46px;
  padding: 6px 12px;
  line-height: normal;
  color: #6b7280;
}

#bo_w input[type="file"].itgo-write-control::file-selector-button {
  margin-right: 12px;
  height: 32px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: #f3f4f6;
  color: #374151;
  font-size: 14px;
  font-weight: 600;
  line-height: 32px;
  cursor: pointer;
  vertical-align: middle;
}

#bo_w input[type="file"].itgo-write-control::file-selector-button:hover {
  background: #e5e7eb;
}

#bo_w .wr_content {
  border-radius: 0;
  overflow: visible;
}

#bo_w .wr_content iframe,
#bo_w .wr_content .se2_inputarea,
#bo_w .wr_content .cke_chrome,
#bo_w .wr_content .cke_top,
#bo_w .wr_content .cke_bottom,
#bo_w .wr_content .se2_tool,
#bo_w .wr_content .se2_input_wrap {
  border-radius: 0 !important;
}

@media (max-width: 1023px) {
  #bo_w .wr_content .se2_tool,
  #bo_w .wr_content .se2_tool_bar {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  #bo_w .wr_content .se2_inputarea,
  #bo_w .wr_content iframe.se2_inputarea {
    width: 100% !important;
    max-width: 100%;
    min-height: 220px !important;
  }
}

.itgo-board-view__content video,
.editor_content video {
  width: 100%;
  max-width: 100%;
  height: auto;
}

#bo_w .itgo-write-actions .btn-outline:hover,
#bo_w .itgo-write-actions .btn-outline:focus {
  border-color: #d1d5db !important;
  outline: none !important;
  box-shadow: none !important;
}

#bo_w .itgo-write-actions .btn-primary:hover,
#bo_w .itgo-write-actions .btn-primary:focus {
  border-color: transparent !important;
  outline: none !important;
}

/* 메인·게시판 갤러리 카드 (Figma CARD) */
.itgo-post-card {
  text-decoration: none;
  color: inherit;
}

.itgo-post-card__new,
.itgo-board-new-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 9px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--point-badge-grad-start) 0%, var(--point) 100%);
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  line-height: 1;
}

.itgo-board-new-badge__label {
  display: block;
}

.itgo-main-posts-table__subject {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
}

.notranslate {
  translate: no !important;
}

.itgo-news-panel {
  max-height: 425px;
}

.itgo-news-list-host .itgo-news-list {
  scrollbar-width: thin;
}

.itgo-mypage-panel-btn {
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.itgo-mypage-mobile-row__link {
  color: inherit;
  text-decoration: none;
}

.itgo-mypage-mobile-row--comment .itgo-mypage-mobile-row__link {
  display: block;
}

.itgo-mypage .line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 업로드 예약 모달 */
body.itgo-schedule-open {
  overflow: hidden;
}

.itgo-schedule-calendar .itgo-schedule-cal-day {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  border: 0;
  background: transparent;
  color: #191919;
  font-size: 0.75rem;
  cursor: pointer;
}

.itgo-schedule-calendar .itgo-schedule-cal-day.is-selected {
  background: var(--point);
  color: #fff;
}

.itgo-schedule-calendar .itgo-schedule-cal-day.is-disabled {
  opacity: 0.2;
  cursor: not-allowed;
}

.itgo-schedule-calendar .itgo-schedule-cal-empty {
  width: 2.75rem;
  height: 2.75rem;
}

#bo_w .itgo-write-actions .btn-primary-outline {
  border-color: var(--point);
  color: var(--point);
  background: #fff;
}

#bo_w .itgo-write-actions .btn-primary-outline:hover,
#bo_w .itgo-write-actions .btn-primary-outline:focus {
  border-color: var(--point);
  color: var(--point);
  background: #fff7f2;
}

#bo_w .itgo-write-actions .itgo-btn-schedule-outline {
  min-height: 2.5rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-radius: 0.375rem;
  min-width: 96px;
}

/* 예약 업로드 — Figma 138:14127 */
.itgo-btn-schedule-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 10px 24px;
  border: 1px solid var(--point);
  border-radius: 6px;
  background: #fff;
  color: var(--point);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  transition: background-color 0.2s ease;
}

.itgo-btn-schedule-outline:hover,
.itgo-btn-schedule-outline:focus {
  background: #fff7f2;
  color: var(--point);
  border-color: var(--point);
  outline: none;
}

.itgo-btn-schedule-outline:active {
  background: #fff3eb;
}

/* 메인 광고 배너 (Figma 50:4036) */
.itgo-ad-banner-card {
  position: relative;
  overflow: hidden;
  background: #fafafa;
}

.itgo-ad-banner-card--hero {
  width: 100%;
  height: 220px;
}

.itgo-ad-banner-card--grid {
  width: 100%;
  height: 160px;
}

.itgo-ad-banner-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.itgo-ad-banner-card__go {
  position: absolute;
  right: 20px;
  bottom: 21px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .itgo-ad-banner-card--hero {
    height: 357px;
  }

  .itgo-ad-banner-card--grid {
    height: 194px;
  }
}

.itgo-banner-admin-list__thumb {
  width: 120px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
  background: #f2f2f2;
}

.itgo-board-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  color: #9f9f9f;
}

.itgo-board-list-icon--comment {
  color: var(--point);
  font-size: 14px;
  font-weight: 500;
}

.itgo-board-table__meta-icons {
  margin-left: 4px;
}

@media (min-width: 1024px) {
  .itgo-banner-admin-list__thumb {
    width: 160px;
    height: 90px;
  }
}

.itgo-main-posts .itgo-post-grid {
  row-gap: 28px;
}

@media (min-width: 1024px) {
  .itgo-main-posts .itgo-post-grid {
    row-gap: 28px;
  }
}

/* 구독 버튼 공통 — Figma Subscribe (234:13760) */
.itgo-subscribe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.itgo-subscribe-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* 작성자 구독 (id) — 74×21 */
.itgo-subscribe-btn--member {
  width: 74px;
  height: 21px;
  padding: 2px 8px;
  border-radius: 4px;
  background-color: var(--point-soft-bg);
  color: var(--point);
  font-size: 12px;
}

.itgo-subscribe-btn--member .itgo-subscribe-btn__icon {
  font-size: 12px;
  line-height: 1;
  color: var(--point);
}

.itgo-subscribe-btn--member.is-active {
  padding: 2px 8px 2px 7px;
  background: linear-gradient(90deg, var(--point-subscribe-grad-start) 0%, var(--point) 100%);
  color: #fff;
}

.itgo-subscribe-btn--member.is-active .itgo-subscribe-btn__icon {
  color: #fff;
}

/* 게시판 구독 (Post) — 86×26 */
.itgo-subscribe-btn--board {
  width: 86px;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 6px;
  background-color: var(--point-soft-bg);
  color: var(--point);
  font-size: 15px;
}

.itgo-subscribe-btn--board .itgo-subscribe-btn__icon {
  font-size: 14px;
  line-height: 1;
  color: var(--point);
}

.itgo-subscribe-btn--board.is-active {
  padding: 4px 8px 4px 7px;
  background: linear-gradient(90deg, var(--point-subscribe-grad-start) 0%, var(--point) 100%);
  color: #fff;
}

.itgo-subscribe-btn--board.is-active .itgo-subscribe-btn__icon {
  color: #fff;
}

/* 글쓰기 게시판 선택 모달 */
.itgo-write-picker-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.itgo-write-picker-modal.is-open {
  display: flex;
}

.itgo-write-picker-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.itgo-write-picker-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border-radius: 12px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.itgo-write-picker-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.itgo-write-picker-modal__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #191919;
}

.itgo-write-picker-modal__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.itgo-write-picker-modal__back:hover {
  background: #fafafa;
}

.itgo-write-picker-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #666;
  cursor: pointer;
}

.itgo-write-picker-modal__close:hover {
  background: #fafafa;
  color: #191919;
}

.itgo-write-picker-modal__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.itgo-write-picker-modal__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fff;
  color: #191919;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease;
}

.itgo-write-picker-modal__item:hover {
  border-color: var(--point);
  color: var(--point);
  background: #fffaf6;
}

body.itgo-write-picker-open {
  overflow: hidden;
}

/* 커뮤니티 사이드바 — 잇고 메인 시안 0706 */
.itgo-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.itgo-sidebar-card {
  background: #fff;
  border: 1px solid #eae7e0;
  border-radius: 14px;
  overflow: hidden;
}

.itgo-sidebar-card__profile {
  padding: 20px;
}

.itgo-sidebar-card__profile-divider {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f0ede6;
}

.itgo-sidebar-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.itgo-sidebar-card__action-btn {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 8px;
  border-radius: 8px;
  background: #f4f2ec;
  color: #5c5950;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.itgo-sidebar-card__action-btn:hover {
  background: #ebe8e0;
  color: #2c2a28;
}

.itgo-sidebar-card__stats {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.itgo-sidebar-card__stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 13px;
}

.itgo-sidebar-card__stat-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #9a948a;
}

.itgo-sidebar-card__stat-value {
  color: #2c2a28;
  font-weight: 600;
}

.itgo-sidebar-card__write {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-top: 16px;
  min-height: 44px;
  padding: 12px;
  border: 0;
  border-radius: 9px;
  background: var(--point);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.itgo-sidebar-card__write:hover {
  background: var(--point-hover);
}

.itgo-sidebar-card__section-title {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 2px 6px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #2c2a28;
}

.itgo-sidebar-card__quick-links {
  display: flex;
  gap: 8px;
  padding: 8px 4px 2px;
  border-top: 1px solid #f0ede6;
}

.itgo-sidebar-card__quick-link {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 38px;
  padding: 9px 8px;
  border-radius: 8px;
  background: #f4f2ec;
  color: #5c5950;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.itgo-sidebar-card__quick-link:hover {
  background: #ebe8e0;
  color: #2c2a28;
}

.itgo-sidebar-card--favorites {
  padding: 16px 14px;
}

.itgo-sidebar-card--boards {
  padding: 10px 8px;
}

.itgo-sidebar-group {
  border-top: 1px solid #f0f0f0;
}

.itgo-sidebar-group:first-child {
  border-top: 0;
}

.itgo-sidebar-group > summary {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 8px 13px 10px;
  font-size: 14px;
  font-weight: 700;
  color: #222;
  cursor: pointer;
  list-style: none;
}

.itgo-sidebar-group > summary::-webkit-details-marker {
  display: none;
}

.itgo-sidebar-group > summary::before {
  content: "";
  width: 4px;
  height: 15px;
  border-radius: 2px;
  background: var(--point);
  flex-shrink: 0;
}

.itgo-sidebar-group > summary .itgo-sidebar-group__chevron {
  margin-left: auto;
  color: #b0aaa0;
  transition: transform 0.18s ease;
}

.itgo-sidebar-group[open] > summary .itgo-sidebar-group__chevron {
  transform: rotate(180deg);
}

.itgo-sidebar-group__panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 2px 6px;
}

.itgo-sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 8px 9px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.itgo-sidebar-link:hover {
  background: #f5f5f5;
  color: #111;
}

.itgo-sidebar-link .ri-star-fill {
  color: var(--point);
}

.itgo-sidebar-board-row {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-right: 6px;
}

.itgo-sidebar-board-row__link {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 4px;
}

.itgo-sidebar-board-row__fav {
  flex: 0 0 auto;
  margin-left: auto;
  width: 28px;
  height: 28px;
  color: #ccc;
  transition: color 0.2s ease;
}

.itgo-sidebar-board-row__fav.is-active {
  color: var(--point);
}

@media (hover: hover) {
  .itgo-sidebar-board-row__fav:not(.is-active):hover {
    color: var(--point);
  }
}

.itgo-sidebar-board-row__fav:focus,
.itgo-sidebar-board-row__fav:focus-visible {
  outline: none;
  box-shadow: none;
}

.itgo-sidebar-fav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 2px 6px;
}

.itgo-sidebar-fav-list .empty-msg {
  padding: 0 6px 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #a39d8f;
  text-align: left;
}

.itgo-sidebar-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #e0ddd5;
  border-radius: 11px;
  background: #fff;
  transition: border-color 0.2s ease;
}

.itgo-sidebar-search:focus-within {
  border-color: var(--point);
}

/* 모바일 사이드바 드로어 */
body.itgo-mobile-drawer-open {
  overflow: hidden;
}

#mobileSidebarDrawer .itgo-sidebar--drawer {
  width: 100%;
  gap: 12px;
  padding: 12px;
}

#mobileSidebarDrawer .itgo-sidebar--drawer .itgo-sidebar-card__actions,
#mobileSidebarDrawer .itgo-sidebar--drawer .itgo-sidebar-card__action-btn {
  max-width: none;
}

/* 모바일 게시글 목록 행 */
.itgo-post-row:first-child {
  border-top: 1px solid #ececec;
}

/* 게시판 목록형 모바일 행 (네이버 카페 스타일) */
.itgo-board-list-mobile .itgo-board-mobile-row:first-child,
.itgo-board-list-mobile .itgo-post-notice-row:first-child {
  border-top: 1px solid #ececec;
}

.itgo-board-mobile-row__new-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--point);
}

.itgo-board-mobile-row__comment {
  flex-shrink: 0;
}

#mobileSidebarDrawer {
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1023px) {
  .itgo-site-footer .space-y-3 p {
    line-height: 1.6;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
}

.itgo-post-card__new,
.itgo-post-row .itgo-post-card__new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: var(--point);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.itgo-sidebar-search__input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 20px;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  font-size: 14px;
  line-height: 20px;
  color: #191919;
  background: transparent;
  outline: none;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.itgo-sidebar-search__input::placeholder {
  color: rgba(25, 25, 25, 0.4);
}

.itgo-sidebar-search .itgo-sidebar-search__input:focus,
.itgo-sidebar-search .itgo-sidebar-search__input:focus-visible,
.itgo-sidebar-search__input:focus,
.itgo-sidebar-search__input:focus-visible {
  outline: none !important;
  border: 0 !important;
  border-color: transparent !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.itgo-sidebar-search__input[readonly] {
  cursor: default;
}

.itgo-sidebar-search__submit {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 1;
  cursor: pointer;
  outline: none;
  box-shadow: none;
}

.itgo-sidebar-search__submit:focus,
.itgo-sidebar-search__submit:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

/* 모바일 FAB / TOP 버튼 */
.itgo-mobile-actions {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.itgo-mobile-top-btn,
.itgo-mobile-fab {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.itgo-mobile-top-btn {
  background: #fff;
  color: #191919;
}

.itgo-mobile-fab {
  width: 56px;
  height: 56px;
  background: var(--point);
  color: #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.itgo-mobile-fab:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 117, 52, 0.35);
}

.itgo-mobile-fab:active {
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .itgo-mobile-actions {
    display: none;
  }
}

/* 모바일 검색 오버레이 */
.itgo-mobile-search {
  position: fixed;
  inset: 0;
  z-index: 10020;
}

.itgo-mobile-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.itgo-mobile-search__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-8px);
  opacity: 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.itgo-mobile-search.is-open .itgo-mobile-search__panel {
  transform: translateY(0);
  opacity: 1;
}

.itgo-mobile-search__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px 0;
}

.itgo-mobile-search__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #191919;
  cursor: pointer;
}

.itgo-mobile-search__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #191919;
}

.itgo-mobile-search__form {
  padding: 12px 16px 16px;
}

.itgo-mobile-search__field-row {
  margin-bottom: 10px;
}

.itgo-mobile-search__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #777;
}

.itgo-mobile-search__select {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 14px;
  color: #191919;
  background: #fff;
}

.itgo-mobile-search__input-row {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.itgo-mobile-search__field {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  min-height: 46px;
  height: 46px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.itgo-mobile-search__field:focus-within {
  border-color: var(--point);
}

.itgo-mobile-search__input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 0 36px 0 14px;
  border: 0 !important;
  border-radius: 0;
  font-size: 14px;
  line-height: 20px;
  color: #191919;
  background: transparent;
  outline: none;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.itgo-mobile-search__field .itgo-mobile-search__input:focus,
.itgo-mobile-search__field .itgo-mobile-search__input:focus-visible,
.itgo-mobile-search__input:focus,
.itgo-mobile-search__input:focus-visible {
  outline: none !important;
  border: 0 !important;
  border-color: transparent !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}

.itgo-mobile-search__input::placeholder {
  color: rgba(25, 25, 25, 0.4);
}

.itgo-mobile-search__clear {
  position: absolute;
  top: 50%;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #bfbfbf;
  transform: translateY(-50%);
  cursor: pointer;
}

.itgo-mobile-search__clear:hover,
.itgo-mobile-search__clear:focus-visible {
  color: #9f9f9f;
  outline: none;
}

.itgo-mobile-search__clear i {
  font-size: 20px;
  line-height: 1;
}

.itgo-mobile-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-width: 58px;
  height: 46px;
  border: 0;
  border-radius: 6px;
  background: var(--point);
  color: #fff;
  cursor: pointer;
}

.itgo-mobile-search__submit:hover {
  background: var(--point-hover);
}

body.itgo-mobile-search-open {
  overflow: hidden;
}

/* 전체검색 결과 */
.itgo-layout .itgo-content:has(#itgo-search-results) {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

#itgo-search-results.itgo-search-results--page {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: calc(
    100dvh - var(--itgo-header-h, 54px) - var(--itgo-footer-h, 286px) -
      var(--itgo-main-banner-h, 0px)
  );
}

.itgo-search-results__search-row .itgo-search-results__keyword-field {
  order: 1;
}

.itgo-search-results__search-row .itgo-search-results__filter-group {
  order: 2;
}

.itgo-search-results__search-row .itgo-search-results__filter-field {
  order: 3;
}

@media (max-width: 1023px) {
  .itgo-search-results__search-row .itgo-search-results__keyword-field {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .itgo-search-results__search-row .itgo-search-results__filter-group {
    order: 1;
  }

  .itgo-search-results__search-row .itgo-search-results__filter-field {
    order: 2;
  }

  .itgo-search-results__search-row .itgo-search-results__keyword-field {
    order: 3;
  }
}

.itgo-search-results .itgo-board-combined__search-field {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 46px;
  height: 46px;
}

.itgo-search-results .itgo-board-combined__input {
  flex: 1 1 auto;
  min-width: 0;
  height: auto;
  line-height: 20px;
  padding: 13px 14px;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.itgo-search-results__advanced-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #9f9f9f;
  cursor: pointer;
  list-style: none;
}

.itgo-search-results__advanced-toggle::-webkit-details-marker {
  display: none;
}

.itgo-search-results__advanced[open] .itgo-search-results__advanced-toggle {
  color: #191919;
}

.itgo-search-results__advanced-body {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.itgo-search-results__advanced-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.itgo-search-results__advanced-label {
  font-size: 12px;
  font-weight: 500;
  color: #9f9f9f;
}

.itgo-search-results__select,
.itgo-search-results__advanced-body .select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 14px;
  color: #191919;
  background: #fff;
}

@media (min-width: 1024px) {
  .itgo-search-results__select {
    height: 46px;
  }

  .itgo-search-results__form .itgo-board-combined__search-row {
    align-items: stretch;
  }

  .itgo-search-results__row {
    padding: 16px 0;
  }

  .itgo-search-results__row-title {
    font-size: 16px;
  }

  .itgo-search-results__row-excerpt {
    font-size: 14px;
  }
}

.itgo-search-results__sop {
  margin: 0;
  padding: 0;
  border: 0;
}

.itgo-search-results__sop-group {
  display: inline-flex;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.itgo-search-results__sop-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 36px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 500;
  color: #9f9f9f;
  cursor: pointer;
}

.itgo-search-results__sop-btn input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.itgo-search-results__sop-btn.is-active {
  background: var(--point);
  color: #fff;
}

.itgo-search-results__chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  border-radius: 9999px;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: #191919;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.itgo-search-results__chip:hover {
  border-color: var(--point);
  color: var(--point);
}

.itgo-search-results__chip.is-active {
  border-color: var(--point);
  background: var(--point);
  color: #fff;
}

.itgo-search-results__chip.is-active:hover {
  color: #fff;
}

.itgo-search-results__chip-count {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.9;
}

.itgo-search-results__more {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 500;
  color: #9f9f9f;
  text-decoration: none;
}

.itgo-search-results__more:hover {
  color: var(--point);
}

.itgo-search-results__row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid #ececec;
  text-decoration: none;
  color: inherit;
}

.itgo-search-results__row-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.itgo-search-results__row-title {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: #191919;
}

.itgo-search-results__comment-badge {
  display: inline-flex;
  align-items: center;
  margin-right: 4px;
  padding: 1px 6px;
  border-radius: 4px;
  background: #f5f5f5;
  color: #9f9f9f;
  font-size: 11px;
  font-weight: 600;
  vertical-align: middle;
}

.itgo-search-results__row-excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #757575;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.itgo-search-results__row-meta {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: #9f9f9f;
}

.itgo-search-results__meta-sep {
  margin: 0 4px;
}

.itgo-search-results__row-comment {
  flex-shrink: 0;
  width: 44px;
  min-height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  border-radius: 6px;
  background: #f5f5f5;
}

.itgo-search-results__row-comment-num {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #191919;
}

.itgo-search-results__row-comment-label {
  margin-top: 4px;
  font-size: 10px;
  line-height: 1;
  color: #9f9f9f;
}

.itgo-search-results__section-more {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--point);
  text-decoration: none;
}

.itgo-search-results__section-more:hover {
  color: var(--point-hover);
}

.itgo-search-results__pagination .pg_page,
.itgo-search-results__pagination .pg_current {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.itgo-search-results__pagination .pg_current {
  background: #191919;
  color: #fff;
}

/* 새소식 알림 버튼·배지 */
.itgo-news-wrap .itgo-news-btn {
  position: relative;
}

.itgo-news-wrap--mobile .itgo-news-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 9px;
  line-height: 16px;
}

.itgo-news-wrap--desktop .itgo-news-badge {
  position: static;
}

/* 검색어 강조 — 그누보드 기본 핫핑크(#ff005a) 대신 포인트 컬러 */
b.sch_word,
.sch_word {
  color: var(--point);
  background: rgba(var(--point-rgb), 0.14);
  padding: 0 3px;
  margin: 0 1px;
  border-radius: 2px;
  font-weight: 600;
  line-height: inherit;
}
/* get_sideview() 팝업 메뉴 비활성화 (쪽지·메일 등 — 추후 filter로 재활성) */
.sv_wrap .sv,
.sv_wrap noscript.sv_nojs {
  display: none !important;
}

/* 웹푸시 알림 수신 동의 배너 */
.itgo-push-optin {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}

.itgo-push-optin.hidden {
  display: none;
}

.itgo-push-optin__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .itgo-push-optin__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
}

.itgo-push-optin__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #191919;
}

.itgo-push-optin__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #6b7280;
  white-space: pre-line;
}

.itgo-push-optin__actions {
  display: flex;
  flex-shrink: 0;
  gap: 8px;
}

.itgo-push-optin__btn {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.itgo-push-optin__btn--primary {
  border: none;
  background: var(--point);
  color: #fff;
}

.itgo-push-optin__btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.itgo-push-optin__btn--ghost {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
}

@media (max-width: 1023px) {
  body.itgo-has-push-optin .itgo-mobile-actions {
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
}

/* 회원가입 약관동의 아코디언 */
.itgo-register-agree {
  border: 1px solid #ececec;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.itgo-register-agree__all {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid #ececec;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #191919;
  margin: 0;
}

.itgo-register-agree__item {
  border-bottom: 1px solid #ececec;
}

.itgo-register-agree__item:last-child {
  border-bottom: none;
}

.itgo-register-agree__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  cursor: pointer;
  list-style: none;
}

.itgo-register-agree__summary::-webkit-details-marker {
  display: none;
}

.itgo-register-agree__summary-main {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.itgo-register-agree__link {
  font-size: 14px;
  color: #191919;
  text-decoration: none;
}

.itgo-register-agree__link:hover {
  color: var(--point);
}

.itgo-register-agree__required {
  color: #9f9f9f;
  font-weight: 400;
}

.itgo-register-agree__chevron {
  font-size: 20px;
  color: #9f9f9f;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.itgo-register-agree__item[open] .itgo-register-agree__chevron {
  transform: rotate(180deg);
}

.itgo-register-agree__panel {
  padding: 0 16px 16px 40px;
}

.itgo-register-agree__content {
  max-height: 240px;
  overflow-y: auto;
  padding: 12px;
  border: 1px solid #ececec;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: #434343;
  background: #fafafa;
}

.itgo-register-agree__content.itgo-content-body {
  word-break: keep-all;
}

.itgo-register-agree__content.itgo-content-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.itgo-register-agree__content.itgo-content-body table th,
.itgo-register-agree__content.itgo-content-body table td {
  border: 1px solid #ececec;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.itgo-register-agree__content.itgo-content-body table th {
  background: #f5f5f5;
  font-weight: 500;
  color: #191919;
}
