@charset "UTF-8";
/* reset.scss */
*,
*:before,
*:after {
  box-sizing: border-box;
  flex-shrink: 1;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-wrap: break-word;
  box-sizing: border-box;
  word-break: keep-all;
}

:lang(ko) {
  word-break: keep-all;
  word-wrap: break-word;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
form,
fieldset,
legend,
hr {
  margin: 0;
  padding: 0;
}

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

::-moz-focus-inner {
  border: 0;
  padding: 0;
}

html {
  /* 스크롤 바의 색상 지정 */
  /* 스크롤 바 호버 시 색상 지정 */
}
html ::-webkit-scrollbar {
  /* 스크롤 바(배경)의 너비 */
  width: 8px;
  height: 8px;
  /* 스크롤 바의 배경색 */
  background-color: #f6f6f6;
}
html ::-webkit-scrollbar-thumb {
  /* 스크롤 바의 색상 */
  background-color: #5A5A5A;
  border-radius: 4px;
}
html ::-webkit-scrollbar-thumb:hover {
  /* 스크롤 바의 색상 */
}

body {
  color: var(--color-darken);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
          text-size-adjust: none;
}

caption,
legend {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}

table {
  border-spacing: 0;
  table-layout: fixed;
}

picture {
  display: inline-block;
}

picture > img {
  display: block;
}

img,
picture,
video,
canvas {
  max-width: 100%;
  border: none;
}

img {
  vertical-align: top;
}

hr.type-dashed {
  border-top-style: dashed;
}
hr.type-hide {
  display: none;
}

ol,
ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  text-underline-position: under;
  color: var(--color-darken);
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  overflow: visible;
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}
button:disabled {
  cursor: default;
}

input,
select,
textarea {
  box-sizing: border-box;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active {
  -webkit-text-fill-color: #000 !important;
  box-shadow: 0 0 0px 1000px #fff inset !important;
}

input:autofill,
input:autofill:hover,
input:autofill:focus,
input:autofill:active {
  -webkit-text-fill-color: #000 !important;
  box-shadow: 0 0 0px 1000px #fff inset !important;
}

svg {
  fill: transparent;
}

:root {
  /* gray */
  --gray-100: #FCFCFD;
  --gray-200: #f9f9fb;
  --gray-300: #F0F0F3;
  --gray-400: #E7E8EC;
  --gray-500: #E0E1E6;
  --gray-600: #D9DAE0;
  --gray-700: #CDCED6;
  --gray-800: #B9BBC5;
  --gray-900: #8C8D97;
  /* mainpage */
  --gray1: #333;
  --gray2: #666;
  --gray3: #888;
  /* semantic color */
  --color-primary: #2A968B;
  --color-secondary: #57544B;
  --color-darken: var(--gray1);
  --color-white: #fff;
  --color-gray: #E6E6E6;
  --color-darkgray: #282828;
  --color-error: #FF0000;
  --color-point: #f6f0e3;
  --color-red: #c01d4b;
  --color-disabled: #D3D3D3;
  --border-primary: var(--color-primary);
  --border-secondary: var(--color-secondary);
  --border-darken: var(--color-darken);
  --border-white: var(--color-white);
  --border-gray: var(--color-gray);
  --border-darkgray: var(--color-darkgray);
  --border-error: var(--color-error);
  --border-point: var(--color-point);
  --border-red: var(--color-red);
  --bg-primary: var(--color-primary);
  --bg-secondary: var(--color-secondary);
  --bg-darken: var(--color-darken);
  --bg-white: var(--color-white);
  --bg-gray: var(--color-gray);
  --bg-error: var(--color-error);
  --bg-point: var(--color-point);
  --bg-red: var(--color-red);
  --bg-darkgray: var(--color-darkgray);
}

/* SUIT */
@font-face {
  font-family: "SUIT";
  font-weight: 100;
  src: url("fonts/SUIT-Thin.woff2") format("woff2");
}
@font-face {
  font-family: "SUIT";
  font-weight: 200;
  src: url("fonts/SUIT-ExtraLight.woff2") format("woff2");
}
@font-face {
  font-family: "SUIT";
  font-weight: 300;
  src: url("fonts/SUIT-Light.woff2") format("woff2");
}
@font-face {
  font-family: "SUIT";
  font-weight: 400;
  src: url("fonts/SUIT-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "SUIT";
  font-weight: 500;
  src: url("fonts/SUIT-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "SUIT";
  font-weight: 600;
  src: url("fonts/SUIT-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "SUIT";
  font-weight: 700;
  src: url("fonts/SUIT-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "SUIT";
  font-weight: 800;
  src: url("fonts/SUIT-ExtraBold.woff2") format("woff2");
}
@font-face {
  font-family: "SUIT";
  font-weight: 900;
  src: url("fonts/SUIT-Heavy.woff2") format("woff2");
}
/* y universe */
@font-face {
  font-family: "YUniverse-L";
  font-weight: 100;
  src: url("fonts/YUniverse-L.woff2") format("woff2");
}
@font-face {
  font-family: "YUniverse-B";
  font-weight: 900;
  src: url("fonts/YUniverse-B.woff2") format("woff2");
}
/* CormorantGaramond */
@font-face {
  font-family: "Cormorant Garamond", serif;
  src: url("fonts/CormorantGaramond-Bold.woff") format("woff"), url("fonts/CormorantGaramond-Bold.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant Garamond", serif;
  src: url("fonts/CormorantGaramond-SemiBold.woff") format("woff"), url("fonts/CormorantGaramond-SemiBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant Garamond", serif;
  src: url("fonts/CormorantGaramond-Medium.woff") format("woff"), url("fonts/CormorantGaramond-Medium.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant Garamond", serif;
  src: url("fonts/CormorantGaramond-Regular.woff") format("woff"), url("fonts/CormorantGaramond-Regular.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant Garamond", serif;
  src: url("fonts/CormorantGaramond-Light.woff") format("woff"), url("fonts/CormorantGaramond-Light.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
/* Pretendard */
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Black.woff") format("woff"), url("fonts/Pretendard-Black.woff2") format("woff2");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-ExtraBold.woff") format("woff"), url("fonts/Pretendard-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Bold.woff") format("woff"), url("fonts/Pretendard-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-SemiBold.woff") format("woff"), url("fonts/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Medium.woff") format("woff"), url("fonts/Pretendard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Regular.woff") format("woff"), url("fonts/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Light.woff") format("woff"), url("fonts/Pretendard-Light.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-ExtraLight.woff") format("woff"), url("fonts/Pretendard-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  font-style: normal;
  src: url("fonts/Pretendard-Thin.woff") format("woff"), url("fonts/Pretendard-Thin.woff2") format("woff2");
  font-weight: 100;
  font-display: swap;
}
:root {
  /* Breakpoints (참고용) */
  --bp-xl: 1400px;
  --bp-lg: 1200px;
  --bp-md: 768px;
  --bp-sm: 480px;
  /* Desktop-first 기본 값 */
  --container-max: 1430px; /* 넓은 본문 폭 */
  --gutter: clamp(24px, 2.5vw, 32px); /* 여유 있는 좌우 여백 */
}

.container {
  inline-size: min(100% - var(--gutter) * 2, var(--container-max));
  margin-inline: auto;
}
.container.fluid {
  inline-size: 100%;
  max-inline-size: none; /* ← 100% 대신 none이 더 명확 */
  padding-inline: 0;
}

/* ===== 하향 분기: 화면이 줄어들수록 보정 ===== */
/* 1) 1440px 이하: 살짝 압축 */
@media (max-width: 1440px) {
  :root {
    --container-max: 1200px;
    --gutter: clamp(20px, 2.5vw, 28px);
  }
}
/* 2) 1200px 이하: 본문 폭 축소, 여백 조정 */
@media (max-width: 1200px) {
  :root {
    --container-max: 1040px;
    --gutter: clamp(18px, 3.5vw, 24px);
  }
}
/* 3) 768px 이하: 태블릿 레이아웃 전환 */
@media (max-width: 768px) {
  :root {
    --container-max: 680px; /* 필요 시 auto로도 가능 */
    --gutter: clamp(16px, 4.5vw, 22px);
  }
  /* 예시: 그리드/테이블/필터 등 레이아웃 보정 */
  .grid {
    gap: 16px;
  }
}
/* 4) 480px 이하: 모바일 세로 안전 여백 확보 */
@media (max-width: 480px) {
  :root {
    --container-max: 100%; /* 사실상 컨테이너 꽉 차기 */
    --gutter: clamp(16px, 5vw, 20px);
  }
}
input {
  font-size: 16px;
}

.text-field {
  height: 50px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-secondary);
  padding: 0 10px;
}
.text-field.fluid {
  width: 100%;
}
.text-field:hover, .text-field:focus {
  border: 1px solid var(--border-primary);
}

.field-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.textarea-box {
  border: 1px solid var(--border-secondary);
  border-radius: 9px;
  overflow: hidden;
  margin-top: 10px;
}
.textarea-box textarea {
  font-size: 16px;
  border: none;
  width: 100%;
  height: 213px;
  padding: 20px;
  resize: none;
  overflow-y: auto;
}

.form-row {
  margin: 20px 0;
}
.form-row .form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
.form-row .file-ui {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.form-row .file-ui .file-name {
  width: 220px;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--color-darken);
  border-radius: 10px;
  color: var(--color-darken);
  background: #fff;
}
.form-row .file-ui .btn.file-btn {
  height: 50px;
  padding: 0 18px;
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  background: #fff;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.form-row .file-ui .btn.file-btn:hover {
  background: var(--color-primary);
  color: #fff;
}
.form-row .file-ui .file-note {
  color: var(--color-darken);
  font-size: 18px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 25px;
  font-size: 24px;
  padding: 0 27.5px;
  font-weight: 400;
  /* color */
}
.btn.btn-primary {
  background-color: var(--bg-primary);
  color: #fff;
}
.btn.btn-secondary {
  background-color: var(--bg-secondary);
  color: #fff;
}
.btn.btn-point {
  background-color: var(--bg-point);
  color: #fff;
}
.btn.btn-point.line {
  background-color: #fff;
  border: 1px solid var(--border-point);
  color: var(--color-point);
}
.btn.btn-line {
  border: 1px solid #fff;
  color: #fff;
}

/* other type */
.btn-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  height: 50px;
  border: 2px solid var(--border-darken);
  border-radius: 25px;
  min-width: 160px;
}
.btn-link .label {
  color: var(--color-darken);
  white-space: nowrap;
  font-weight: 900;
}
.btn-link .icon {
  display: block;
  width: 24px;
  height: 24px;
  margin-left: 10px;
}
.btn-link .icon::before {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.btn-link.prev .icon::before {
  background-image: url("../images/icon/icon-prev.svg");
}
.btn-link.next .icon::before {
  background-image: url("../images/icon/icon-next.svg");
}
.btn-link.list .icon::before {
  background-image: url("../images/icon/icon-list.svg");
}

.btn-down {
  display: flex;
  align-items: center;
}
.btn-down .icon {
  display: block;
  width: 24px;
  height: 24px;
}

/* -------------------------------
공통 control (체크/라디오 공용 가능)
---------------------------------*/
.control {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  position: relative;
}
.control input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
.control label {
  position: relative;
  padding-left: 25px;
  line-height: 24px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.control.disabled label {
  cursor: not-allowed;
  opacity: 0.6;
}

/* -------------------------------
체크박스 단일
---------------------------------*/
.checkbox label::before,
.checkbox label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.checkbox label::before {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-darken);
  border-radius: 4px;
  background: var(--color-white);
  transition: border-color 0.2s, background-color 0.2s;
}
.checkbox label::after {
  width: 20px;
  height: 20px;
  background: url("../images/icon/icon-check.svg") no-repeat center/14px 14px;
  opacity: 0;
  transition: opacity 0.15s;
}
.checkbox input:focus + label::before,
.checkbox label:hover::before {
  border-color: var(--color-primary);
}
.checkbox input:checked + label::before {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.checkbox input:checked + label::after {
  opacity: 1;
  filter: invert(1) brightness(10);
}
.checkbox.disabled label::before {
  background: var(--bg-disabled);
  border-color: var(--border-disabled);
}
.checkbox.disabled input:checked + label::before {
  background: var(--border-disabled);
  border-color: var(--border-disabled);
}

.select-box {
  border: 1px solid var(--border-secondary);
  border-radius: 9px;
  display: flex;
  align-items: center;
  height: 50px;
  gap: 8px;
  position: relative;
}
.select-box:hover {
  border: 1px solid var(--border-primary);
}
.select-box select {
  font-size: 18px;
  width: 100%;
  min-width: 80px;
  height: 100%;
  border: 0;
  color: var(--color-white);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  /* ✅ iOS / macOS 대비 */
}
.select-box select::-ms-expand {
  display: none; /* IE용 화살표 제거 */
}
.select-box select:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--border-primary);
}
.select-box .icon-arrow {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 12px;
  transition: 0.3s;
  transform: translateY(-50%);
  z-index: -1;
}
.select-box .icon-arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/icon/icon-select-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.select-box:focus .icon-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.js-custom-select {
  position: relative;
}
.js-custom-select .select-btn {
  width: 100%;
  height: 50px;
  text-indent: 12px;
  padding: 0;
  background: transparent;
  color: #111;
  border-radius: 9px;
  text-align: left;
}
.js-custom-select .select-list {
  position: absolute;
  z-index: 100;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border-secondary);
  border-radius: 9px;
  max-height: 240px;
  overflow: auto;
  padding: 6px;
}
.js-custom-select .select-list li {
  padding: 10px 12px;
  border-radius: 6px;
  color: #111;
}
.js-custom-select .select-list li:hover, .js-custom-select .select-list li.selected {
  background: var(--border-primary);
}

.radio[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* 기본(네이티브) 모양을 제거 */
  box-sizing: border-box;
  background-clip: content-box;
  width: 9px;
  height: 9px;
  border: 1px solid var(--border-secondary);
  cursor: pointer;
}
.radio[type=radio]:checked {
  border-color: var(--border-secondary);
  background-color: var(--bg-secondary);
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 25px;
  cursor: pointer;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  /* size */
}
.icon:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.icon.icon-home:before {
  background-image: url(../images/icon/icon-home.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-download:before {
  background-image: url(../images/icon/icon-download.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-down:before {
  background-image: url(../images/icon/icon-down.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.icon-attachment:before {
  background-image: url(../images/icon/icon-attachment.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.icon.size-12:before {
  width: 12px;
  height: 12px;
}
.icon.size-20:before {
  width: 20px;
  height: 20px;
}
.icon.size-24:before {
  width: 24px;
  height: 24px;
}
.icon.size-30:before {
  width: 30px;
  height: 30px;
}
.icon.size-50:before {
  width: 50px;
  height: 50px;
}
.icon.size-100:before {
  width: 100px;
  height: 100px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  font-style: normal;
  flex-shrink: 0;
  /* color */
  /* size */
}
.chip.primary {
  background-color: var(--bg-darken);
  color: #fff;
}
.chip.secondary {
  background-color: var(--bg-secondary);
  color: #fff;
}
.chip.point {
  background-color: var(--bg-point);
  color: #fff;
}
/* ===============================
   Table (Semantic Version)
   =============================== */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-top: 2px solid var(--color-darken);
  border-bottom: 1px solid var(--color-darken);
  background: var(--color-white);
  /* 모바일에서 가로 스크롤 표시 */
}
.table-wrap::-webkit-scrollbar {
  height: 6px;
}
.table-wrap::-webkit-scrollbar-thumb {
  background: var(--color-darken);
  border-radius: 3px;
}

/* 실제 테이블 */
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900, #222);
}

/* 셀 공통 */
.table-wrap td,
.table-wrap th {
  padding: 16px 20px;
  border-top: 1px solid var(--color-darken);
  vertical-align: middle;
  word-break: keep-all;
}

/* 첫 행 */
.table-wrap tbody tr:first-child td {
  border-top: none;
}

/* 왼쪽 셀(항목명) */
.table-wrap td:first-child {
  width: 30%;
  background: var(--gray-200);
  font-weight: 700;
  color: var(--color-darken, #111);
  border-right: 1px solid var(--color-darken);
}

/* 오른쪽 셀(내용) */
.table-wrap td:last-child {
  width: 70%;
  color: var(--gray-800, #333);
}

.loading-component {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loading-component.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loading-component .loading-inner {
  width: 320px;
  text-align: center;
}
.loading-component .loading-bar-wrap {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
}
.loading-component .loading-bar {
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  transition: width 0.3s ease;
}
.loading-component .loading-percent {
  color: #fff;
  font-size: 16px;
  font-family: "Pretendard", sans-serif;
}

body.loading #wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

body.loaded #wrapper {
  opacity: 1;
  visibility: visible;
}

#loading-screen {
  position: fixed;
  inset: 0;
  background: #000;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-bar-wrap {
  width: 320px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
  border-radius: 3px;
  overflow: hidden;
}

.loading-bar {
  width: 0%;
  height: 100%;
  background: #fff;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.loading-percent {
  font-size: 16px;
}

#header {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
#header::after {
  content: "";
  position: absolute;
  top: 97px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--bg-white);
  z-index: 90;
  transition: all 0.4s;
}
#header .container {
  width: 100%;
  max-width: 100%;
  padding-inline: 80px;
  margin-inline: 0;
}
#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  position: relative;
}
#header h1 {
  flex-shrink: 0;
  margin-right: auto;
}
#header h1 a {
  display: block;
  width: 150px;
  height: 60px;
  background-image: url("../../assets/images/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
}
#header nav {
  margin-left: auto;
}
#header nav ul {
  display: flex;
  align-items: center;
  gap: 80px;
  height: 96px;
}
#header nav li {
  position: relative;
}
#header nav li::after {
  content: "";
  width: 0%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
  background-color: var(--bg-primary);
}
#header nav li.on > a {
  color: var(--color-primary);
}
#header nav li.on::after {
  width: 100%;
}
#header nav li.on .depth-box {
  opacity: 1;
  visibility: visible;
}
#header nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  color: var(--color-darken);
  font-size: 20px;
  font-weight: 500;
}
#header .depth-box {
  width: 100%;
  position: absolute;
  z-index: 100;
  top: 0;
  transform: translateY(97px);
  transition: opacity 0.3s ease;
  visibility: hidden;
  opacity: 0;
}
#header .depth-box .depth-inner {
  width: 100%;
  max-width: 1430px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: flex-end;
}
#header .depth-box a {
  height: 100%;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--color-gray);
}
#header .depth-box a:hover {
  color: var(--color-darken);
}
#header .gnb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-left: 80px;
}
#header .gnb .btn-line {
  border-radius: 0;
  font-size: 18px;
  gap: 10px;
  display: none;
}
#header .gnb .btn-line .icon {
  width: 24px;
  height: 24px;
}
#header .gnb .select-box {
  width: 88px;
  cursor: pointer;
}
#header .gnb .select-box select {
  cursor: pointer;
}
#header .gnb .btn-menu {
  width: 23px;
  height: 17px;
  display: none;
  cursor: pointer;
}
#header .gnb .btn-menu.openmenu div:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
#header .gnb .btn-menu.openmenu div:nth-child(2) {
  opacity: 0;
}
#header .gnb .btn-menu.openmenu div:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}
#header .gnb .btn-menu div {
  width: 100%;
  height: 3px;
  margin-bottom: 4px;
  background: var(--bg-darken);
  transition: transform 0.4s ease;
}
#header.menu-on {
  background-color: var(--bg-white);
}
#header.menu-on::after {
  height: 70px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#header.menu-on h1 a {
  background-image: url("../../assets/images/logo.png");
}
#header.menu-on nav a {
  color: var(--color-darken);
}
#header.menu-on .gnb .btn-line {
  border: 1px solid var(--color-darken);
  color: var(--color-darken);
}
#header.menu-on .gnb .btn-line .icon {
  filter: brightness(0) saturate(100%) invert(21%) sepia(0%) saturate(2499%) hue-rotate(179deg) brightness(92%) contrast(94%);
}
#header.menu-on .gnb .select-box {
  border: 1px solid var(--color-darken);
}
#header.menu-on .gnb .select-box select {
  color: var(--color-darken);
}
#header.menu-on .gnb .select-box .icon-arrow {
  filter: brightness(0) saturate(100%) invert(21%) sepia(0%) saturate(2499%) hue-rotate(179deg) brightness(92%) contrast(94%);
}
#header.menu-on .depth-box .depth-inner a {
  color: var(--color-darken);
  opacity: 0.7;
}
#header.menu-on .depth-box .depth-inner a:hover {
  color: var(--color-darken);
  opacity: 1;
}
#header.all .gnb .btn-menu {
  position: absolute;
  z-index: 999;
  right: 0;
}
#header.all .gnb .btn-menu div {
  background: var(--bg-white);
}
#header.all .sitemap {
  opacity: 1;
  height: 100vh;
  visibility: visible;
}
#header.all .sitemap li::after {
  width: 100%;
}
#header.on {
  border-bottom: 1px solid var(--border-gray);
}
#header.on h1 a {
  background-image: url("../../assets/images/logo.png");
  background-size: cover;
  background-repeat: no-repeat;
}
#header.on .gnb .btn-line {
  border: 1px solid var(--color-darken);
  color: var(--color-darken);
}
#header.on .gnb .btn-line .icon {
  filter: brightness(0) saturate(100%) invert(21%) sepia(0%) saturate(2499%) hue-rotate(179deg) brightness(92%) contrast(94%);
}
#header.on .gnb .select-box {
  border: 1px solid var(--color-darken);
}
#header.on .gnb .select-box select {
  color: var(--color-darken);
}
#header.on .gnb .select-box .icon-arrow {
  filter: brightness(0) saturate(100%) invert(21%) sepia(0%) saturate(2499%) hue-rotate(179deg) brightness(92%) contrast(94%);
}
#header .sitemap {
  width: 100%;
  height: 0;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 100;
  top: 0;
  transition: all 0.4s;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  background-color: rgba(0, 0, 0, 0.7);
}
#header .sitemap .container {
  width: 100%;
  max-width: 1430px;
  height: 100vh;
  display: flex;
  align-items: center;
}
#header .sitemap ul {
  width: 100%;
}
#header .sitemap li {
  display: flex;
  align-items: center;
  padding: 50px 0;
  position: relative;
}
#header .sitemap li:after {
  content: "";
  width: 0%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 3s;
}
#header .sitemap li + li {
  margin-top: 10px;
}
#header .sitemap li p {
  width: 30%;
  font-size: 50px;
  font-weight: 700;
  color: #fff;
  margin-left: 50px;
}
#header .sitemap li .depth2 {
  width: calc(80% - 50px);
}
#header .sitemap li a {
  font-size: 20px;
  padding: 0 10px;
  color: #fff;
  margin-top: 30px;
  margin-bottom: 10px;
  margin-left: 50px;
  position: relative;
}
#header .sitemap li a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: -10px;
  top: 0;
  opacity: 0;
}
#header .sitemap li a:hover {
  color: red;
}
#header .sitemap li a:hover::after {
  opacity: 1;
}

#footer {
  background-color: #111;
}
#footer .footer-inner {
  padding: 96px 0 80px;
}
#footer .left h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
#footer .left .flex {
  flex-direction: column;
  gap: 12px;
  margin-top: 139px;
}
#footer .left .info {
  display: flex;
  align-items: center;
  gap: 12px;
}
#footer .left .info a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
}
#footer .left .info a::after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  background-color: #fff;
  margin-left: 12px;
}
#footer .left .info a:last-child::after {
  display: none;
}
#footer .left .info a.color-primary {
  font-weight: 600;
}
#footer .left address {
  color: #fff;
  font-style: normal;
}
#footer .left .copy {
  color: #fff;
}
#footer .right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
  margin-left: auto;
  flex-shrink: 0;
}
#footer .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
}

#goTop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
}
#goTop img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}
#goTop em {
  width: 50px;
  height: 50px;
  filter: brightness(0) saturate(100%);
  background-image: url("../../assets/images/top-btn.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#goTop.on {
  opacity: 1;
}

#visual {
  margin-top: 158px;
}
#visual .visual-inner {
  margin: 0 auto;
}
#visual .bg-box {
  width: 100%;
  height: 422px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
#visual .visual-title {
  width: 100%;
  height: 150px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-120px);
}
#visual.company .visual-title {
  background-image: url("../../assets/images/visual/text-company.png");
}
#visual.company .bg-box {
  background-image: url("../../assets/images/visual/bg-company.jpg");
}
#visual.product .visual-title {
  background-image: url("../../assets/images/visual/text-product.png");
}
#visual.product .bg-box {
  background-image: url("../../assets/images/visual/bg-product.jpg");
}
#visual.facility .visual-title {
  background-image: url("../../assets/images/visual/text-facility.png");
}
#visual.facility .bg-box {
  background-image: url("../../assets/images/visual/bg-facility.jpg");
}
#visual.support .visual-title {
  background-image: url("../../assets/images/visual/text-support.png");
}
#visual.support .bg-box {
  background-image: url("../../assets/images/visual/bg-support.jpg");
}
#visual.inquiry .visual-title {
  background-image: url("../../assets/images/visual/text-inquiry.png");
}
#visual.inquiry .bg-box {
  background-image: url("../../assets/images/visual/bg-inquiry.jpg");
}

.section-title-box {
  margin-top: 100px;
  position: relative;
}
.section-title-box::before {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background-color: var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
}
.section-title-box::after {
  content: "";
  display: block;
  width: 30px;
  height: 5px;
  background-color: var(--color-secondary);
  position: absolute;
  top: 0;
  left: 30px;
}

.section-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 60px;
  padding-top: 5px;
}

/* boardlist */
#boardList {
  margin-top: 20px;
}
#boardList .board-list {
  display: flex;
  flex-wrap: wrap;
  border-top: 3px solid var(--border-darken);
  border-bottom: 4px solid var(--border-darken);
  margin: 0 auto;
}
#boardList .board-list .board-item:last-child {
  border-bottom: 0;
}
#boardList .board-list.no-hov .board-item .img-box {
  display: none;
}
#boardList .board-list .chip {
  margin-left: 10px;
  margin-right: 10px;
}
#boardList .board-item {
  width: 100%;
  flex-grow: 1;
  border-bottom: 1px solid var(--border-darkgray);
  padding: 50px 0;
  display: flex;
  align-items: flex-start;
  position: relative;
}
#boardList .board-item > div {
  width: calc(100% - 190px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
#boardList .board-item .num {
  font-size: 20px;
  width: 50px;
  text-align: center;
  flex-shrink: 0;
  margin-right: 40px;
}
#boardList .board-item .title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  transition: all 0.4s;
}
#boardList .board-item .title {
  font-size: 24px;
  font-weight: 800;
  word-break: break-all;
}
#boardList .board-item .date {
  width: 100px;
  flex-shrink: 0;
  margin-top: 10px;
  margin-left: 90px;
}

/* boarddetail */
#boardDetail {
  margin: 50px auto;
}
#boardDetail .title-box {
  border-top: 2px solid var(--border-darken);
  padding: 50px 0;
  display: flex;
  align-items: center;
}
#boardDetail .title {
  font-size: 30px;
  font-weight: bold;
  margin-right: 10px;
}
#boardDetail .date {
  margin-left: auto;
  flex-shrink: 0;
}
#boardDetail .cont-box {
  padding: 50px 0;
  border-top: 4px solid var(--border-darken);
  border-bottom: 4px solid var(--border-darken);
  font-size: 18px;
}
#boardDetail .post-navigation {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}

/* thumblsit */
.thumb-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 20px;
}
.thumb-list .no-data {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-darken);
  text-align: center;
  grid-column: 1/-1; /* 시작 열 ~ 마지막 열까지 */
  border-top: 1px solid var(--border-darkgray);
  border-bottom: 1px solid var(--border-darkgray);
}
.thumb-list .thumb-item {
  width: 100%;
  margin: 0 auto;
}
.thumb-list .thumb-item:hover .img-box img {
  transform: scale(1.1);
}
.thumb-list .img-box {
  width: 100%;
  height: 351px;
  overflow: hidden;
  background-image: url(../images/img-noimg-thumb.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.thumb-list .img-box img {
  width: 100%;
  height: 100%;
  transition: all 0.4s;
  -o-object-fit: cover;
     object-fit: cover;
}
.thumb-list .cont-box {
  margin-top: 20px;
}
.thumb-list .cont-box .title,
.thumb-list .cont-box .cont {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.thumb-list .cont-box .title {
  font-size: 24px;
  -webkit-line-clamp: 1;
}
.thumb-list .cont-box .cont {
  margin-top: 10px;
}
.thumb-list .date {
  font-size: 18px;
}

#pagination {
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 25px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 100px;
}
#pagination > a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: fill 0.3s;
}
#pagination > a + a {
  margin-left: 10px;
}
#pagination button {
  display: flex;
  align-items: center;
  justify-content: center;
}
#pagination button + button {
  margin-left: 10px;
}
#pagination button:disabled, #pagination button[disabled] {
  background-color: #f6f6f6 !important;
  border: 1px solid #e6e6e6 !important;
}
#pagination button:disabled .icon::before, #pagination button[disabled] .icon::before {
  filter: brightness(0) saturate(100%) invert(76%) sepia(46%) saturate(1%) hue-rotate(76deg) brightness(109%) contrast(100%) !important;
}
#pagination .btn-pgn {
  height: 40px;
  font-weight: 900;
}
#pagination .btn-pgn.next .icon, #pagination .btn-pgn.prev .icon {
  width: 24px;
  height: 24px;
}
#pagination .btn-pgn.next .icon:before, #pagination .btn-pgn.prev .icon:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#pagination .btn-pgn.next .icon:before {
  background-image: url(../images/icon/icon-next.svg);
}
#pagination .btn-pgn.prev .icon:before {
  background-image: url(../images/icon/icon-prev.svg);
}
#pagination .num-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}
#pagination .num-list li {
  margin: 0 2px;
}
#pagination .num-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--color-darken);
  font-size: 18px;
  font-weight: 900;
}
#pagination .num-list li.active a {
  color: var(--color-white);
  background-color: var(--bg-primary);
}

.attachment-box {
  margin-top: 50px;
  border-top: 1px solid var(--border-darken);
}
.attachment-box .attachment-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.attachment-box .attachment-header .attachment-title {
  font-size: 20px;
}
.attachment-box .attachment-header .icon-box .icon::before {
  content: "";
  width: 24px;
  height: 24px;
}
.attachment-box .attachment-header .btn-down {
  gap: 10px;
}

.attachment-list {
  margin-top: 20px;
}
.attachment-list ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.attachment-list .file-item {
  display: flex;
  align-items: center;
  padding: 10px;
  gap: 10px;
  border: 1px solid #e6e6e6;
}
.attachment-list .file-item:hover {
  background-color: #fbfbfb;
  border: 1px solid var(--color-primary);
}
.attachment-list .file-item:hover .file-name {
  color: var(--color-darken);
}
.attachment-list .file-item .file-icon {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
}
.attachment-list .file-item .file-icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
}
.attachment-list .file-item .file-icon.pdf:before {
  background-image: url(../images/icon/icon-pdf.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.attachment-list .file-item .file-icon.xls:before {
  background-image: url(../images/icon/icon-xls.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.attachment-list .file-item .file-icon.doc:before {
  background-image: url(../images/icon/icon-doc.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.attachment-list .file-item .file-icon.jpg:before {
  background-image: url(../images/icon/icon-jpg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.attachment-list .file-item .file-icon.png:before {
  background-image: url(../images/icon/icon-png.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.attachment-list .file-item .file-icon.hwp:before {
  background-image: url(../images/icon/icon-hwp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.attachment-list .file-item .file-icon.zip:before {
  background-image: url(../images/icon/icon-zip.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.attachment-list .file-item .file-name {
  font-size: 18px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #adadad;
  max-width: calc(100% - 140px);
}
.attachment-list .file-item div {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.attachment-list .file-item .file-size {
  font-size: 16px;
  color: #adadad;
}

/* tabs */
.tabs {
  margin: 50px auto;
}
.tabs ul {
  display: flex;
  align-items: center;
}
.tabs ul li {
  position: relative;
  width: 50%;
}
.tabs ul li a {
  height: 70px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-darken);
  border-bottom: 1px solid var(--gray-900);
  background: rgba(255, 255, 255, 0);
}
.tabs ul li.active a {
  color: var(--color-white);
  font-weight: 900;
  background-color: var(--bg-primary);
  border-radius: 35px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  border-bottom: 0;
}

#breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 15px 0;
}
#breadcrumb .link-home {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
#breadcrumb .depthbox {
  display: flex;
  align-items: center;
  gap: 10px;
}
#breadcrumb .depthbox p {
  font-size: 18px;
  color: var(--color-darken);
  font-weight: 600;
  position: relative;
  padding-left: 10px;
}
#breadcrumb .depthbox p::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--gray1);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* Modal (theme-aware) */
.modal {
  /* ✨ 모달 전용 변수: 테마별로 표면/전경/오버레이 제어 */
  --modal-surface: var(--color-white);
  --modal-foreground: var(--color-darken);
  --modal-overlay: rgba(0, 0, 0, .45);
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none; /* aria-hidden="true"일 때 숨김 */
  /* 사이즈 변형 */
  /* 드로어형 (오른쪽 슬라이드) */
}
.modal[aria-hidden=false] {
  display: block;
}
.modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: var(--modal-overlay);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px); /* 어둠 속에서도 레이어 분리감 */
}
.modal .modal-container {
  position: relative;
  width: min(720px, 100% - 32px);
  max-height: calc(100dvh - 80px);
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  background: var(--modal-surface);
  color: var(--color-darken);
  border: 1px solid var(--border-darken);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  outline: none;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.modal[aria-hidden=false] .modal-container {
  transform: translateY(0);
  opacity: 1;
}
.modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-500);
}
.modal .modal-header .modal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-darken);
}
.modal .modal-header .modal-close {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  position: relative;
  color: var(--color-darken);
  border: 1px solid var(--color-darken);
}
.modal .modal-header .modal-close::before, .modal .modal-header .modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: currentColor; /* 테마에 따라 자동 적응 */
  transform-origin: 50% 50%;
}
.modal .modal-header .modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal .modal-header .modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal .modal-header .modal-close:hover {
  background: var(--gray-200);
}
.modal .modal-header .modal-close:focus-visible {
  outline: 2px solid rgba(var(--color-primary-rgb), 0.4);
  outline-offset: 2px;
}
.modal .modal-body {
  padding: 20px;
  overflow: auto;
  color: inherit; /* ✅ 전경색 상속 */
}
.modal .modal-body .table {
  min-width: 100%;
}
.modal .modal-footer {
  padding: 12px 20px;
  border-top: 1px solid var(--gray-500);
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.modal-sm .modal-container {
  width: min(420px, 100% - 32px);
}
.modal-lg .modal-container {
  width: min(1000px, 100% - 32px);
}
.modal-drawer .modal-container {
  margin: 0 0 0 auto;
  height: 100dvh;
  width: min(480px, 100%);
  border-radius: 0;
  transform: translateX(24px);
  opacity: 1;
}
.modal-drawer[aria-hidden=false] .modal-container {
  transform: translateX(0);
}
.modal .box-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.modal .box-wrap .box {
  width: 100%;
  min-width: 0;
}
.modal .box-wrap .box .flex * {
  min-width: 0;
}
.modal .box-wrap .box.col1 {
  grid-column: span 1;
}
.modal .box-wrap .box.col2 {
  grid-column: span 2;
}
.modal .box-wrap .box.col3 {
  grid-column: span 3;
}
.modal .box-wrap .box.col4 {
  grid-column: span 4;
}
.modal .box-wrap + .box-wrap {
  margin-top: 24px;
}

/* 바디 스크롤 잠금 */
.body-lock {
  overflow: hidden;
}

/* 🌙 다크 테마 전용 오버라이드 */
:root {
  /* 폴백: color-mix 미지원 시 사용될 약간 어두운 표면색 */
  --modal-surface-dark-fallback: #f2f2f5;
}

/* 최신 브라우저: color-mix 사용 (OKLab 추천) */
@supports (color: color-mix(in oklab, white, black)) {
  :root {
    --modal-surface-dark: color-mix(in oklab, var(--color-white), black 16%);
  }
}
/* 다크 테마
   - 표면은 화이트를 16% 블랙으로 톤다운
   - 전경은 진한 #121212
   - 오버레이는 조금 더 진하게 */
[data-theme=dark] .modal {
  --modal-surface: var(--modal-surface-dark, var(--modal-surface-dark-fallback));
  --modal-foreground: #121212;
  --modal-overlay: rgba(0, 0, 0, .6);
}

/* 다크 테마 디테일 튜닝: 보더/호버 대비 과하지 않게 */
[data-theme=dark] .modal .modal-container {
  border-color: color-mix(in oklab, var(--border-darken), white 28%);
}

[data-theme=dark] .modal .modal-header,
[data-theme=dark] .modal .modal-footer {
  border-color: color-mix(in oklab, var(--gray-500), white 30%);
}

[data-theme=dark] .modal .modal-header .modal-close:hover {
  background: color-mix(in oklab, var(--gray-200), black 12%);
}

.modal .modal-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.modal .modal-body .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.modal .modal-body .table-wrap {
  margin-top: 10px;
}

/* =========================================================
 * componentMedia.scss
 * - Header & Footer responsive only
 * - 1st breakpoint: 1430px (container-max와 동일)
 * ======================================================= */
/* ========================= */
/* ≤ 1430px : 첫 분기(압축)   */
/* ========================= */
@media (max-width: 1430px) {
  #header .container {
    padding-inline: 60px;
  }
  #header nav ul {
    gap: 60px;
  }
  #header nav a {
    font-size: 18px;
  }
  #header .gnb {
    margin-left: 60px;
    gap: 16px;
  }
  #header .depth-box .depth-inner {
    gap: 28px;
  }
  #footer .footer-inner {
    padding: 84px 0 64px;
  }
  #footer .left h2 {
    font-size: 34px;
    line-height: 1.24;
  }
  #footer .left .flex {
    margin-top: 96px;
    gap: 10px;
  }
  #footer .left .info a {
    font-size: 15px;
  }
  #footer .right {
    gap: 16px;
  }
  #footer .btn {
    height: 46px;
    font-size: 15px;
    padding: 0 18px;
  }
  #goTop {
    right: 40px;
    bottom: 40px;
    width: 48px;
    height: 48px;
  }
  #goTop em {
    width: 48px;
    height: 48px;
  }
  #visual .bg-box {
    height: 380px; /* 기본 422px → 축소 */
    background-position: center;
  }
  #visual .visual-title {
    height: 132px;
    transform: translateY(-100px);
  }
  .section-title-box {
    margin-top: 80px;
  }
  .section-title-box::before, .section-title-box::after {
    width: 26px;
    height: 4px;
  }
  .section-title-box::after {
    left: 26px;
  }
  .section-title {
    font-size: 42px;
    line-height: 52px;
  }
  .tabs {
    margin: 44px auto;
  }
  .tabs ul li a {
    height: 64px;
    font-size: 18px;
  }
  /* LIST */
  #boardList .board-item {
    padding: 44px 0;
  }
  #boardList .board-item > div {
    width: calc(100% - 170px);
  }
  #boardList .board-item .num {
    margin-right: 32px;
  }
  #boardList .board-item .title {
    font-size: 22px;
  }
  #boardList .board-item .date {
    width: 90px;
    margin-left: 80px;
  }
  #boardList .board-list {
    border-top-width: 3px;
    border-bottom-width: 4px;
  }
  /* DETAIL */
  #boardDetail .title-box {
    padding: 44px 0;
  }
  #boardDetail .title {
    font-size: 28px;
  }
  #boardDetail .cont-box {
    padding: 44px 0;
    font-size: 17px;
  }
  /* THUMB */
  .thumb-list {
    gap: 40px;
  }
  .thumb-list .img-box {
    height: 320px;
  }
  .thumb-list .cont-box .title {
    font-size: 22px;
  }
  .thumb-list .date {
    font-size: 16px;
  }
  #pagination {
    padding: 6px 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  }
  #pagination .btn-pgn {
    height: 40px;
    font-size: 16px;
  }
  #pagination .btn-pgn .icon {
    inline-size: 22px;
    block-size: 22px;
  }
  #pagination .num-list li a {
    inline-size: 38px;
    block-size: 38px;
    font-size: 17px;
  }
}
/* ========================= */
/* ≤ 1200px : 본문/여백 축소  */
/* ========================= */
@media (max-width: 1200px) {
  #header .container {
    padding-inline: 40px;
  }
  #header .header-inner {
    height: 88px;
  }
  #header nav {
    display: none;
  }
  #header .gnb {
    margin-left: 40px;
    gap: 12px;
  }
  #header .gnb .btn-menu {
    display: block;
  }
  #header .depth-box {
    transform: translateY(89px);
  }
  #header .depth-box .depth-inner {
    height: 64px;
    gap: 24px;
  }
  #header .depth-box a {
    font-size: 16px;
  }
  #header .sitemap {
    overflow-y: auto;
  }
  #footer .footer-inner {
    padding: 72px 0 52px;
  }
  #footer .left h2 {
    font-size: 30px;
  }
  #footer .left .flex {
    margin-top: 72px;
    gap: 8px;
  }
  #footer .left .info {
    flex-wrap: wrap;
  }
  #footer .left .info a {
    font-size: 14px;
  }
  #footer .left .info a::after {
    height: 10px;
    margin-left: 10px;
  }
  #footer .left address, #footer .left .copy {
    font-size: 13px;
    line-height: 1.5;
  }
  #footer .right {
    gap: 12px;
  }
  #footer .btn {
    height: 44px;
    font-size: 14px;
    padding: 0 16px;
  }
  #goTop {
    right: 32px;
    bottom: 36px;
    width: 46px;
    height: 46px;
  }
  #visual {
    margin-top: 120px; /* 헤더 높이 축소 반영 */
  }
  #visual .bg-box {
    height: 340px;
    background-position: center;
  }
  #visual .visual-title {
    height: 120px;
    transform: translateY(-80px);
  }
  .section-title-box {
    margin-top: 70px;
  }
  .section-title-box::before, .section-title-box::after {
    width: 22px;
    height: 4px;
  }
  .section-title-box::after {
    left: 22px;
  }
  .section-title {
    font-size: 36px;
    line-height: 46px;
  }
  .tabs {
    margin: 40px auto;
  }
  .tabs ul {
    gap: 6px;
  }
  .tabs ul li {
    width: auto; /* 비율 해제하고 내용 길이에 맞춤 */
    flex: 1 1 auto;
  }
  .tabs ul li a {
    height: 60px;
    font-size: 17px;
    padding: 0 20px;
  }
  /* LIST */
  #boardList .board-item {
    padding: 40px 0;
  }
  #boardList .board-item > div {
    width: calc(100% - 150px);
  }
  #boardList .board-item .num {
    font-size: 18px;
    margin-right: 24px;
  }
  #boardList .board-item .title {
    font-size: 20px;
  }
  #boardList .board-item .date {
    width: 84px;
    margin-left: 66px;
    font-size: 14px;
  }
  /* DETAIL */
  #boardDetail {
    margin: 40px auto;
  }
  #boardDetail .title-box {
    padding: 40px 0;
  }
  #boardDetail .title {
    font-size: 26px;
  }
  #boardDetail .cont-box {
    padding: 40px 0;
    font-size: 16px;
  }
  #boardDetail .post-navigation {
    gap: 16px;
  }
  /* THUMB */
  .thumb-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .thumb-list .img-box {
    height: 280px;
  }
  .thumb-list .cont-box .title {
    font-size: 20px;
  }
  .thumb-list .date {
    font-size: 15px;
  }
  #pagination {
    inline-size: clamp(320px, 56vw, 400px);
    margin-top: 48px;
    margin-bottom: 80px;
  }
  #pagination .btn-pgn {
    height: 38px;
    font-size: 15px;
  }
  #pagination .num-list {
    margin: 0 8px;
  }
  #pagination .num-list li a {
    inline-size: 36px;
    block-size: 36px;
    font-size: 16px;
  }
}
/* ========================= */
/* ≤ 768px : 태블릿 전환       */
/* ========================= */
@media (max-width: 768px) {
  /* button */
  .btn {
    height: 38px;
  }
  .js-custom-select .select-btn {
    height: 38px;
  }
  #header {
    position: relative;
    height: 70px;
    border-bottom: none;
    /* 사이트맵(모바일 풀스크린) */
    /* Hover 상태일 때 라인 높이 보정 */
  }
  #header .container {
    padding-inline: 24px;
  }
  #header .header-inner {
    height: 70px;
    justify-content: space-between;
  }
  #header h1 a {
    width: 120px;
    height: 48px;
    background-size: contain;
  }
  #header .gnb {
    margin-left: 0;
    gap: 12px;
  }
  #header .gnb .btn-line {
    padding: 0 10px;
    font-size: 14px;
    width: 70px;
    height: 36px;
  }
  #header .gnb .btn-line .icon {
    display: none;
  }
  #header .gnb .select-box {
    width: 78px;
    height: 38px;
  }
  #header .gnb .select-box select {
    font-size: 14px;
  }
  #header .gnb .btn-menu {
    width: 23px;
    height: 17px;
  }
  #header .sitemap .container {
    padding-inline: 24px;
    align-items: flex-start;
  }
  #header .sitemap li {
    align-items: flex-start;
    margin-top: 0;
  }
  #header .sitemap li p {
    font-size: 28px;
    margin-left: 0;
    width: 40%;
  }
  #header .sitemap li a {
    font-size: 16px;
    margin-top: 0;
    margin-left: 28px;
    margin-bottom: 20px;
    display: block;
  }
  #header .sitemap li a:last-child {
    margin-bottom: 0;
  }
  #header::after {
    top: 69px;
  }
  #header .depth-box {
    transform: translateY(70px);
  }
  #footer {
    /* .footer-inner > .flex 를 세로 스택으로 */
  }
  #footer .footer-inner {
    padding: 60px 0 40px;
  }
  #footer .footer-inner > .flex {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  #footer .left h2 {
    font-size: 26px;
  }
  #footer .left .flex {
    margin-top: 32px;
    gap: 8px;
  }
  #footer .left .info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
  }
  #footer .left .info a {
    font-size: 14px;
  }
  #footer .left address, #footer .left .copy {
    font-size: 13px;
  }
  #footer .right {
    width: 100%;
    display: flex;
    gap: 10px;
    margin-left: 0;
    margin-top: 0;
    /* 버튼이 많아질 때 줄바꿈 */
    flex-wrap: wrap;
  }
  #footer .btn {
    flex: 1 1 auto;
    min-width: 180px;
    height: 42px;
    font-size: 14px;
    justify-content: center;
  }
  #goTop {
    right: 24px;
    bottom: 30px;
    width: 44px;
    height: 44px;
    transition: bottom 0.2s ease, opacity 0.2s ease;
  }
  #visual {
    margin-top: 80px;
    /* breadcrumb.jsp 위치 보정 */
  }
  #visual .bg-box {
    height: 300px;
    background-position: center top;
    background-size: cover;
  }
  #visual .visual-title {
    height: 96px;
    transform: translateY(-60px);
  }
  #visual .breadcrumb {
    font-size: 12px;
    position: absolute;
    top: 378px;
    right: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 10px;
    border-radius: 8px;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    z-index: 10;
  }
  .section-title-box {
    margin-top: 50px;
    padding-left: 0;
  }
  .section-title {
    font-size: 28px;
    line-height: 38px;
    padding-top: 8px;
  }
  .tabs {
    margin: 30px auto;
  }
  .tabs ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2열 */
    gap: 10px;
  }
  .tabs ul li {
    width: 100%; /* 각 열을 채우기 */
  }
  .tabs ul li a {
    height: 56px;
    font-size: 15px;
    border-radius: 28px;
    border: 1px solid var(--gray-400);
    background: var(--color-white);
  }
  .tabs ul li.active a {
    background-color: var(--bg-primary);
    color: var(--color-white);
    font-weight: 800;
    border: 0;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.08);
  }
  /* LIST */
  #boardList .board-item {
    padding: 28px 0;
    align-items: center;
    gap: 10px;
    /* 날짜를 우측 고정 → 아래 한 줄 배치로 변경 */
    flex-wrap: wrap;
    /* 필요 시 유지 가능 */
  }
  #boardList .board-item > div {
    width: 100%;
  }
  #boardList .board-item .num {
    display: none;
  }
  #boardList .board-item .title {
    font-size: 18px;
    -webkit-line-clamp: 2; /* 두 줄 허용 */
  }
  #boardList .board-item .date {
    width: auto;
    margin: 8px 0 0 0;
    font-size: 13px;
    order: 2; /* 제목 다음 줄 */
  }
  #boardList .board-list {
    border-top-width: 2px;
    border-bottom-width: 3px;
  }
  /* DETAIL */
  #boardDetail {
    margin: 32px auto;
    /* 첨부파일 박스(접근성 + 모바일 가독성) */
  }
  #boardDetail .title-box {
    padding: 28px 0;
    flex-wrap: wrap;
    gap: 8px;
  }
  #boardDetail .title {
    font-size: 22px;
  }
  #boardDetail .date {
    font-size: 13px;
  }
  #boardDetail .cont-box {
    padding: 28px 0;
    font-size: 15px;
  }
  #boardDetail .post-navigation {
    gap: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }
  #boardDetail .post-navigation .btn-link {
    /* ← 핵심 3가지 재정의 */
    justify-content: vcenter; /* space-between 제거 */
    min-width: 0; /* 160px 최소폭 해제 */
    width: 100%; /* 그리드 셀 너비에 맞춤 */
    /* 모바일 터치/시각 최적화 */
    height: 38px;
    padding: 0 12px;
    border-width: 2px;
    border-radius: 18px;
    gap: 8px; /* label-아이콘 간격 */
  }
  #boardDetail .post-navigation .btn-link .label {
    font-size: 13px;
    font-weight: 800;
  }
  #boardDetail .post-navigation .btn-link .icon {
    width: 14px;
    height: 14px;
    margin-left: 6px; /* 좌우 여백 축소 */
  }
  #boardDetail .post-navigation .btn-link.list {
    grid-column: 1/-1;
  }
  #boardDetail .attachment-box .attachment-header {
    gap: 8px;
  }
  #boardDetail .attachment-box .attachment-header .attachment-title {
    font-size: 16px;
  }
  #boardDetail .attachment-box .attachment-header .btn-down {
    font-size: 13px;
  }
  #boardDetail .attachment-box .attachment-list .file-item {
    grid-template-columns: auto 1fr auto; /* 아이콘, 이름, 사이즈/버튼 */
    display: grid;
    align-items: center;
    gap: 8px;
  }
  #boardDetail .attachment-box .attachment-list .file-item .file-name {
    font-size: 14px;
  }
  #boardDetail .attachment-box .attachment-list .file-item .file-size {
    font-size: 12px;
  }
  /* THUMB : 2열 */
  .thumb-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .thumb-list .img-box {
    height: 240px;
  }
  .thumb-list .cont-box {
    margin-top: 14px;
  }
  .thumb-list .cont-box .title {
    font-size: 18px;
  }
  .thumb-list .date {
    font-size: 14px;
  }
  #pagination {
    inline-size: 100%;
    padding: 8px;
    box-shadow: none;
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    gap: 6px;
    flex-wrap: wrap;
  }
  #pagination .btn-pgn {
    height: 34px;
    font-size: 13px;
    padding-inline: 8px;
    white-space: nowrap;
  }
  #pagination .btn-pgn .icon {
    inline-size: 18px;
    block-size: 18px;
  }
  #pagination .num-list {
    margin: 0 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 2px;
    order: 2;
    width: 100%;
  }
  #pagination .num-list li a {
    inline-size: 32px;
    block-size: 32px;
    font-size: 14px;
  }
}
/* ========================= */
/* ≤ 480px : 모바일 세로       */
/* ========================= */
@media (max-width: 480px) {
  #header .container {
    padding-inline: 16px;
  }
  #header h1 a {
    width: 100px;
    height: 40px;
  }
  #header .gnb .btn-line {
    font-size: 12px;
  }
  #header .gnb .btn-menu {
    width: 20px;
    height: 14px;
  }
  #header .gnb .select-box {
    width: 68px;
    font-size: 12px;
  }
  #header .sitemap li p {
    font-size: 20px;
  }
  #footer .footer-inner {
    padding: 48px 0 32px;
    gap: 24px;
  }
  #footer .left h2 {
    font-size: 22px;
  }
  #footer .left .info a {
    font-size: 13px;
  }
  #footer .left address, #footer .left .copy {
    font-size: 12px;
    line-height: 1.5;
  }
  #footer .btn {
    height: 38px;
    font-size: 13px;
    min-width: 140px;
  }
  #goTop {
    right: 16px;
    bottom: 24px;
    width: 40px;
    height: 40px;
  }
  #visual {
    margin-top: 70px;
  }
  #visual .bg-box {
    height: 240px;
    background-position: center top;
  }
  #visual .visual-title {
    height: 76px;
    transform: translateY(-40px);
  }
  #visual .breadcrumb {
    top: 313px;
  }
  #visual .breadcrumb .depthbox p {
    font-size: 12px;
  }
  .tabs {
    margin: 24px auto;
  }
  .tabs ul {
    gap: 8px;
  }
  .tabs ul li a {
    height: 50px;
    font-size: 14px;
    border-radius: 25px;
  }
  .tabs ul li.active a {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  }
  /* LIST */
  #boardList .board-item {
    padding: 22px 0;
  }
  #boardList .board-item .title {
    font-size: 17px;
  }
  #boardList .board-item .date {
    font-size: 12px;
  }
  /* DETAIL */
  #boardDetail {
    margin: 24px auto;
  }
  #boardDetail .title-box {
    padding: 22px 0;
  }
  #boardDetail .title {
    font-size: 20px;
  }
  #boardDetail .cont-box {
    padding: 22px 0;
    font-size: 14px;
  }
  #boardDetail .attachment-box .attachment-header {
    flex-direction: row;
    justify-content: space-between;
  }
  #boardDetail .attachment-box .attachment-header .attachment-title {
    font-size: 15px;
  }
  #boardDetail .attachment-box .attachment-header .btn-down {
    font-size: 12px;
    padding: 6px 8px;
  }
  #boardDetail .attachment-box .attachment-list .file-item {
    grid-template-columns: 20px 1fr auto; /* 아이콘 20px */
  }
  #boardDetail .attachment-box .attachment-list .file-item .file-name {
    font-size: 13px;
  }
  #boardDetail .attachment-box .attachment-list .file-item .file-size {
    font-size: 12px;
  }
  #boardDetail .attachment-box .attachment-list .file-item .btn-down {
    padding: 4px 6px;
  }
  /* THUMB : 1열(세로) */
  .thumb-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .thumb-list .img-box {
    height: 220px;
  }
  .thumb-list .cont-box {
    margin-top: 12px;
  }
  .thumb-list .cont-box .title {
    font-size: 17px;
  }
  .thumb-list .date {
    font-size: 13px;
  }
}
/* media */
html {
  font-size: 16px;
}

body {
  -ms-overflow-style: none;
  font-size: 1rem;
}
body.fix {
  overflow: hidden;
}

/* common style */
#contents {
  overflow: hidden;
}

.section {
  overflow: hidden;
}
.section.visible {
  overflow: visible;
}

.relative {
  position: relative;
}

.inner {
  width: var(--container-max);
}

.blind {
  position: absolute;
  left: -99999px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  text-indent: -99999px;
  clip: rect(0, 0, 0, 0);
}

.spacer {
  display: block;
  width: 100%;
  height: 1px;
  margin: 50px 0;
}

.flex {
  display: flex;
}
.flex.align-center {
  align-items: center;
}
.flex.align-start {
  align-items: flex-start;
}
.flex.align-ent {
  align-items: flex-end;
}
.flex.justify-center {
  justify-content: center;
}
.flex.justify-start {
  justify-content: flex-start;
}
.flex.justify-end {
  justify-content: flex-end;
}
.flex.justify-space-between {
  justify-content: space-between;
}
.flex.wrap {
  flex-wrap: wrap;
}
.flex.gap10 {
  gap: 10px;
}
.flex.gap30 {
  gap: 30px;
}

/* text */
.text-bold {
  font-weight: bold;
}

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

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

.text-left {
  text-align: left;
}

/* color */
.color-primary {
  color: var(--color-primary) !important;
}

.color-secondary {
  color: var(--color-secondary) !important;
}

.color-point {
  color: var(--color-point) !important;
}

.color-error {
  color: var(--color-error) !important;
}

.color-darken {
  color: var(--color-darken) !important;
}

.color-white {
  color: var(--color-white) !important;
}

.color-red {
  color: var(--color-red) !important;
}

/* list type */
.list-type.dot li {
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}
.list-type.dot li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--bg-darken);
  position: absolute;
  top: 10px;
  left: 0;
}
.list-type.dot li.no-dot {
  padding-left: 0;
}
.list-type.dot li.no-dot::before {
  display: none;
}