@charset "UTF-8";
/**
 * PretendardGOV 폰트 로컬 파일 @font-face 선언
 * public../fonts/ 폴더의 폰트 파일들을 사용
 * 모든 웨이트를 지원하는 개별 폰트 페이스 정의
 */
/* PretendardGOV Regular (400) */
@font-face {
  font-family: "PretendardGOV";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PretendardGOV-Regular.woff2") format("woff2");
}
/* PretendardGOV Medium (500) */
/* PretendardGOV Bold (700) */
@font-face {
  font-family: "PretendardGOV";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PretendardGOV-Bold.woff2") format("woff2");
}
@media (max-width: 900px) {
  html {
    font-size: 14px;
  }
}

/* ============================================
   공통 스크롤바 스타일
   ============================================ */
::-webkit-scrollbar {
  width: 0.375rem;
  height: 0.375rem;
}
@media (max-width: 900px) {
  ::-webkit-scrollbar {
    width: 0.25rem;
    height: 0.25rem;
  }
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 0.1875rem;
}

::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 0.1875rem;
  transition: background-color 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
::-webkit-scrollbar-thumb:active {
  background: #6b7280;
}

::-webkit-scrollbar-corner {
  background: transparent;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
}

/* ============================================
   글로벌 리셋 및 기본 스타일
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  word-break: keep-all;
}

body {
  font-family: "PretendardGOV", -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;
  line-height: 1;
  color: #111827;
}
@media (max-width: 900px) {
  body {
    line-height: 1.5;
  }
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }
}

body {
  overflow-y: auto !important;
}

body.modal-open,
body.layer-popup-active,
body.mobile-menu-open {
  overflow: hidden !important;
}

body {
  min-width: 1280px;
}
@media (max-width: 900px) {
  body {
    min-width: 320px;
  }
}

.container,
.inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 900px) {
  .container,
  .inner {
    width: 100%;
    padding: 0 0.9375rem;
  }
}

.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;
}

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

ul,
li {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

.com-tabs {
  display: flex;
  gap: 1.25rem;
}

.com-tabs__btn {
  color: #7d8181;
  font-size: 2rem;
  font-weight: 700;
  line-height: 150%;
  padding-bottom: 0.3125rem;
  border-bottom: 4px solid transparent;
}
.com-tabs__btn:hover {
  border-bottom: 4px solid #244874;
  color: #244874;
}
.com-tabs__btn.active {
  border-bottom: 4px solid #244874;
  color: #244874;
}

.com-more-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media (max-width: 900px) {
  .com-more-btn {
    gap: 8px;
  }
}
.com-more-btn span {
  color: #191a1a;
  font-family: "Pretendard GOV";
  font-size: 1.0625rem;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .com-more-btn span {
    font-size: 15px;
  }
}
.com-more-btn__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #191a1a;
}
@media (max-width: 900px) {
  .com-more-btn__icon {
    width: 20px;
    height: 20px;
  }
}
.com-more-btn:hover span {
  color: #244874;
}
.com-more-btn:hover__icon {
  color: #244874;
}

.flex-cnt {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .flex-cnt {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.w10 {
  flex: 0 0 10%;
}

.w15 {
  flex: 0 0 15%;
}

.w20 {
  flex: 0 0 20%;
}

.w25 {
  flex: 0 0 25%;
}

.w30 {
  flex: 0 0 30%;
}

.w40 {
  flex: 0 0 40%;
}

.w50 {
  flex: 0 0 50%;
}

.w60 {
  flex: 0 0 60%;
}

.w70 {
  flex: 0 0 70%;
}

.w75 {
  flex: 0 0 75%;
}

.w80 {
  flex: 0 0 80%;
}

.w85 {
  flex: 0 0 85%;
}

.w90 {
  flex: 0 0 90%;
}

.w100 {
  flex: 0 0 100%;
}

@media (max-width: 768px) {
  .w20,
  .w25,
  .w30,
  .w40,
  .w50,
  .w60,
  .w70,
  .w75,
  .w80 {
    flex: 1 1 100%;
  }
}
.com-title {
  font-size: 2rem;
  font-weight: 700;
  color: #191a1a;
}
.com-title span {
  color: #244874;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card-container__item {
  display: flex;
  width: 100%;
}
.card-container--col-1 .card-container__item {
  flex: 1 1 100%;
  width: 100%;
}
.card-container--col-2 .card-container__item {
  flex: 1 1 calc(50% - 12px);
  max-width: calc(50% - 12px);
}
.card-container--col-3 .card-container__item {
  flex: 1 1 calc(33.333% - 16px);
  width: calc(33.333% - 16px);
}
.card-container--col-4 .card-container__item {
  flex: 1 1 calc(25% - 18px);
  width: calc(25% - 18px);
}
.card-container--col-5 .card-container__item {
  flex: 1 1 calc(20% - 19.2px);
  width: calc(20% - 19.2px);
}
.card-container--col-6 .card-container__item {
  flex: 1 1 calc(16.666% - 20px);
  width: calc(16.666% - 20px);
}
.card-container--center {
  justify-content: center;
}
.card-container--start {
  justify-content: flex-start;
}
.card-container--end {
  justify-content: flex-end;
}
.card-container--space-between {
  justify-content: space-between;
}
.card-container--space-around {
  justify-content: space-around;
}
.card-container--space-evenly {
  justify-content: space-evenly;
}
.card-container--gap-small {
  gap: 12px;
}
.card-container--gap-medium {
  gap: 24px;
}
.card-container--gap-large {
  gap: 32px;
}
.card-container--gap-xlarge {
  gap: 48px;
}
@media (min-width: 576px) and (max-width: 991px) {
  .card-container--col-3 .card-container__item, .card-container--col-4 .card-container__item, .card-container--col-5 .card-container__item, .card-container--col-6 .card-container__item {
    flex: 1 1 calc(50% - 12px);
  }
}
@media (max-width: 575px) {
  .card-container {
    gap: 16px;
  }
  .card-container--col-2 .card-container__item, .card-container--col-3 .card-container__item, .card-container--col-4 .card-container__item, .card-container--col-5 .card-container__item, .card-container--col-6 .card-container__item {
    flex: 1 1 100%;
  }
  .card-container--gap-small {
    gap: 8px;
  }
  .card-container--gap-medium {
    gap: 16px;
  }
  .card-container--gap-large {
    gap: 24px;
  }
  .card-container--gap-xlarge {
    gap: 32px;
  }
}

.flex-50 {
  flex: 1 1 calc(50% - 12px);
}

.flex-33 {
  flex: 1 1 calc(33.333% - 16px);
}

.flex-25 {
  flex: 1 1 calc(25% - 18px);
}

.flex-20 {
  flex: 1 1 calc(20% - 19.2px);
}

@media (min-width: 576px) and (max-width: 991px) {
  .flex-33,
  .flex-25,
  .flex-20 {
    flex: 1 1 calc(50% - 12px);
  }
}
@media (max-width: 575px) {
  .flex-50,
  .flex-33,
  .flex-25,
  .flex-20 {
    flex: 1 1 100%;
  }
}
html {
  font-size: 16px;
}
@media (max-width: 900px) {
  html {
    font-size: 15px;
  }
}

.com-sub-tit {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
}
.com-sub-tit h3 {
  position: relative;
  padding-left: 2.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
  text-align: left;
  margin-bottom: 0.625rem;
}
.com-sub-tit h3::before {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(-50%);
  width: 1.375rem;
  height: 1.375rem;
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='23' viewBox='0 0 30 23' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.4471 22.2451C8.5696 19.3212 4.15434 21.0508 2.64026 22.1864C2.31704 22.4288 1.8846 22.4678 1.52323 22.2871C1.16186 22.1064 0.933594 21.7371 0.933594 21.333V5.33304C0.933594 4.9973 1.09167 4.68115 1.36026 4.47971C3.33128 3.00144 8.39782 1.08275 13.9552 4.08017C16.3216 2.64629 21.2567 1.24299 26.5491 4.41838C26.8703 4.61115 27.0669 4.95836 27.0669 5.33304V21.333C27.0669 21.7173 26.8602 22.0719 26.5258 22.2613C26.1914 22.4506 25.781 22.4454 25.4515 22.2477C20.5772 19.3232 16.1638 21.0469 14.6449 22.1829C14.626 22.1972 14.6066 22.211 14.5866 22.2241C14.5181 22.2692 14.4453 22.3058 14.3699 22.3336C14.2464 22.3793 14.1164 22.4013 13.9868 22.3996C13.8782 22.3983 13.7698 22.3803 13.6655 22.3459C13.6069 22.3265 13.5496 22.3019 13.4942 22.272C13.4782 22.2634 13.4625 22.2544 13.4471 22.2451ZM3.06693 19.5042V5.89974C4.80767 4.84198 8.65682 3.6544 12.9336 5.95324V19.5806C8.98292 17.8442 5.36996 18.4852 3.06693 19.5042ZM15.0669 19.5042C17.37 18.4852 20.9829 17.8442 24.9336 19.5806V5.95324C20.6568 3.6544 16.8077 4.84198 15.0669 5.89974V19.5042Z' fill='%2333363D'/%3E%3Cellipse cx='24.668' cy='5.3335' rx='4' ry='4' fill='%233c79c2'/%3E%3Cellipse cx='24.6683' cy='5.33333' rx='5.33333' ry='5.33333' fill='%233c79c2'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.content-image {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.form-list, .com-list {
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
@media (max-width: 900px) {
  .form-list, .com-list {
    gap: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
.form-list .form-item, .form-list .com-item, .com-list .form-item, .com-list .com-item {
  display: flex;
  gap: 1rem;
}
@media (max-width: 900px) {
  .form-list .form-item, .form-list .com-item, .com-list .form-item, .com-list .com-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
}
.form-list .form-item .form-label, .form-list .form-item .label, .form-list .com-item .form-label, .form-list .com-item .label, .com-list .form-item .form-label, .com-list .form-item .label, .com-list .com-item .form-label, .com-list .com-item .label {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  line-height: 1;
  display: flex;
  align-items: center;
  min-width: 6.25rem;
  margin-right: 0.625rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .form-list .form-item .form-label, .form-list .form-item .label, .form-list .com-item .form-label, .form-list .com-item .label, .com-list .form-item .form-label, .com-list .form-item .label, .com-list .com-item .form-label, .com-list .com-item .label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000;
    line-height: 1;
    min-width: auto;
    margin-right: 0;
    margin-bottom: 0.25rem;
  }
}
.form-list .form-item .form-content, .form-list .form-item .cnt, .form-list .com-item .form-content, .form-list .com-item .cnt, .com-list .form-item .form-content, .com-list .form-item .cnt, .com-list .com-item .form-content, .com-list .com-item .cnt {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
  flex: 1 1 100%;
}
@media (max-width: 900px) {
  .form-list .form-item .form-content, .form-list .form-item .cnt, .form-list .com-item .form-content, .form-list .com-item .cnt, .com-list .form-item .form-content, .com-list .form-item .cnt, .com-list .com-item .form-content, .com-list .com-item .cnt {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .form-list .form-item .form-content.checkbox-group, .form-list .form-item .checkbox-group.cnt, .form-list .com-item .form-content.checkbox-group, .form-list .com-item .checkbox-group.cnt, .com-list .form-item .form-content.checkbox-group, .com-list .form-item .checkbox-group.cnt, .com-list .com-item .form-content.checkbox-group, .com-list .com-item .checkbox-group.cnt {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
@media (max-width: 900px) {
  .form-list .form-item .form-content.input-with-button, .form-list .form-item .input-with-button.cnt, .form-list .com-item .form-content.input-with-button, .form-list .com-item .input-with-button.cnt, .com-list .form-item .form-content.input-with-button, .com-list .form-item .input-with-button.cnt, .com-list .com-item .form-content.input-with-button, .com-list .com-item .input-with-button.cnt {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }
  .form-list .form-item .form-content.input-with-button .ui-input-container, .form-list .form-item .input-with-button.cnt .ui-input-container, .form-list .com-item .form-content.input-with-button .ui-input-container, .form-list .com-item .input-with-button.cnt .ui-input-container, .com-list .form-item .form-content.input-with-button .ui-input-container, .com-list .form-item .input-with-button.cnt .ui-input-container, .com-list .com-item .form-content.input-with-button .ui-input-container, .com-list .com-item .input-with-button.cnt .ui-input-container {
    width: 100%;
  }
  .form-list .form-item .form-content.input-with-button .ui-button, .form-list .form-item .input-with-button.cnt .ui-button, .form-list .com-item .form-content.input-with-button .ui-button, .form-list .com-item .input-with-button.cnt .ui-button, .com-list .form-item .form-content.input-with-button .ui-button, .com-list .form-item .input-with-button.cnt .ui-button, .com-list .com-item .form-content.input-with-button .ui-button, .com-list .com-item .input-with-button.cnt .ui-button {
    width: 100%;
  }
}

.w-full {
  width: 100% !important;
}

/* ============================================
   Search Container Component
   ============================================ */
.search-container-type1 {
  background: #eef2f7;
  padding: 2rem;
  border-radius: 0.75rem;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .search-container-type1 {
    padding: 20px;
    border-radius: 8px;
  }
}
.search-container-type1 {
  display: flex;
  gap: 0.5rem;
  align-items: flex-end;
}
@media (max-width: 900px) {
  .search-container-type1 {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
}
.search-container-type1 .search-input {
  margin-top: 0;
  flex: 1;
  height: 3rem;
  padding: 0 1rem;
  border: 1px solid #58616a;
  border-radius: 0.375rem;
  background: #ffffff;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  color: #191a1a;
  box-sizing: border-box;
}
.search-container-type1 .search-input::placeholder {
  color: #8a949e;
}
.search-container-type1 .search-input:focus {
  outline: none;
  border-color: #244874;
  box-shadow: 0 0 0 2px rgba(36, 72, 116, 0.1);
}
@media (max-width: 900px) {
  .search-container-type1 .search-input {
    height: 44px;
    flex: none;
    font-size: 16px;
    padding: 0 14px;
  }
}
.search-container-type1 .search-btn {
  height: 3rem;
  min-width: 4.875rem;
  padding: 0 1rem;
  background: #244874;
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}
.search-container-type1 .search-btn:hover {
  background: #1e3a5f;
}
.search-container-type1 .search-btn:active {
  background: #152b44;
}
.search-container-type1 .search-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 72, 116, 0.3);
}
@media (max-width: 900px) {
  .search-container-type1 .search-btn {
    height: 44px;
    font-size: 16px;
    min-width: auto;
    width: 100%;
  }
}

/* ============================================
   Filter Row Component
   ============================================ */
.filter-row-type2 {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 900px) {
  .filter-row-type2 {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.filter-row-type2 .filter-select {
  height: 3rem;
  padding: 0 1rem;
  border: 1px solid #58616a;
  border-radius: 0.375rem;
  background: #ffffff;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1e2124;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5.83398 8.33325L10.0007 12.4999L14.1673 8.33325' stroke='%2333363d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.25rem;
  box-sizing: border-box;
}
.filter-row-type2 .filter-select:focus {
  outline: none;
  border-color: #244874;
  box-shadow: 0 0 0 2px rgba(36, 72, 116, 0.1);
}
.filter-row-type2 .filter-select::placeholder {
  color: #8a949e;
}
.filter-row-type2 .filter-select--library {
  width: 9.375rem;
}
.filter-row-type2 .filter-select--year {
  width: 7.5rem;
}
.filter-row-type2 .filter-select--month {
  width: 7.5rem;
}
@media (max-width: 900px) {
  .filter-row-type2 .filter-select {
    height: 44px;
    font-size: 16px;
    padding: 0 14px;
    background-position: right 10px center;
    background-size: 18px;
  }
}
.filter-row-type2 .filter-btn {
  height: 3rem;
  min-width: 4.875rem;
  padding: 0 1rem;
  background: #244874;
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.2s ease;
  box-sizing: border-box;
}
.filter-row-type2 .filter-btn:hover {
  background: #1e3a5f;
}
.filter-row-type2 .filter-btn:active {
  background: #152b44;
}
.filter-row-type2 .filter-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 72, 116, 0.3);
}
@media (max-width: 900px) {
  .filter-row-type2 .filter-btn {
    height: 44px;
    font-size: 16px;
    min-width: auto;
    flex: 1;
  }
}

.related-site-dropdown {
  position: relative;
  height: 100%;
}
.related-site-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid #cdd1d5;
  border-radius: 0 0 8px 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.related-site-dropdown:hover .related-site-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.related-site-dropdown__item {
  border-bottom: 1px solid #f0f0f0;
}
.related-site-dropdown__item:last-child {
  border-bottom: none;
}
.related-site-dropdown__link {
  display: block;
  padding: 12px 24px;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #1e2124;
  text-decoration: none;
  transition: all 0.2s ease;
}
.related-site-dropdown__link:hover {
  background-color: #f8f9fa;
  color: #3c79c2;
  font-weight: 500;
}
.related-site-dropdown__link:focus {
  outline: 2px solid #3c79c2;
  outline-offset: -2px;
  background-color: #f8f9fa;
}

.related-site-button {
  height: 100%;
  min-width: 272px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  padding: 0 24px;
  background: transparent;
  border: 1px solid #cdd1d5;
  border-top: none;
  border-bottom: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.related-site-button:hover {
  background-color: rgba(60, 121, 194, 0.05);
}
.related-site-button:focus {
  outline: 2px solid #3c79c2;
  outline-offset: 2px;
}
.related-site-button__text {
  font-family: "Pretendard GOV", sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: #1e2124;
  flex-grow: 1;
  text-align: left;
}
@media (max-width: 900px) {
  .related-site-button .related-site-button__text {
    font-size: 15px;
  }
}
.related-site-button__icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
@media (max-width: 900px) {
  .related-site-button__icon {
    width: auto;
    height: auto;
  }
}
.related-site-button__icon img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}
.related-site-dropdown:hover .related-site-button .related-site-button__icon {
  transform: rotate(90deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 22.5rem;
  height: 100vh;
  background: #ffffff;
  z-index: 1999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #cdd1d5;
}
.mobile-menu-utility {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 7rem;
}
.mobile-menu-utility .utility-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}
.mobile-menu-utility .utility-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.25rem;
  padding: 0 0.125rem;
  height: 2rem;
  background: transparent;
  border: none;
  border-radius: 0.25rem;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #1e2124;
  cursor: pointer;
}
.mobile-menu-utility .utility-btn .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.mobile-menu-utility .utility-btn:hover {
  background: #f9fafb;
}
.mobile-menu-utility .divider {
  width: 0;
  height: 1rem;
  border-left: 1px solid #cdd1d5;
}
.mobile-menu-close {
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #33363d;
}
.mobile-menu-close .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.mobile-menu-login {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  color: #1e2124;
  font-size: 1.375rem;
  font-weight: 700;
}
.mobile-menu-login .icon {
  width: 1.5rem;
  height: 1.5rem;
}
.mobile-menu-header-group {
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0.5rem 1rem 1rem;
}
.mobile-menu-header-group .header-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.125rem;
  padding: 0 0.5rem;
  flex: 1;
  height: 4.5rem;
  background: transparent;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
}
.mobile-menu-header-group .header-menu-btn .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.mobile-menu-header-group .header-menu-btn span {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1e2124;
  text-align: center;
}
.mobile-menu-header-group .header-menu-btn:hover {
  background: #f9fafb;
}
.mobile-menu-search {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0.625rem;
  padding: 0 1rem 1.5rem;
}
.mobile-menu-search .search-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0 1rem;
  height: 3rem;
  border: 1px solid #58616a;
  border-radius: 0.375rem;
  background: #ffffff;
}
.mobile-menu-search .search-box .search-input {
  flex: 1;
  border: none;
  background: none;
  font-size: 1.0625rem;
  color: #1e2124;
  margin-top: 0;
}
.mobile-menu-search .search-box .search-input::placeholder {
  color: #8a949e;
}
.mobile-menu-search .search-box .search-input:focus {
  outline: none;
}
.mobile-menu-search .search-box .icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #33363d;
}
.mobile-menu-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  flex: 1;
  overflow: hidden;
}
.mobile-menu-depth-bar {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  width: 8.75rem;
  background: #eef2f7;
  overflow-y: auto;
}
.mobile-menu-depth-bar .depth-bar-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 1rem 1rem;
  width: 100%;
  background: transparent;
  border: none;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1e2124;
  text-align: left;
  cursor: pointer;
}
.mobile-menu-depth-bar .depth-bar-item:hover {
  background: #e1e7ed;
}
.mobile-menu-depth-bar .depth-bar-item.selected {
  color: #244874;
}
.mobile-menu-detail {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  flex: 1;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.mobile-menu-detail .menu-detail-content {
  display: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  padding: 1rem 1rem 0;
}
.mobile-menu-detail .menu-detail-content.active {
  display: flex;
}
.mobile-menu-detail .menu-detail-content .menu-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
}
.mobile-menu-detail .menu-detail-content .menu-section-title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem 0.75rem;
  border-bottom: 1px solid #8a949e;
}
.mobile-menu-detail .menu-detail-content .menu-section-title h3 {
  margin: 0;
  font-size: 1.1875rem;
  font-weight: 700;
  color: #1e2124;
}
.mobile-menu-detail .menu-detail-content .menu-section-items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  padding: 0.5rem 0;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-item-toggle {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.25rem;
  padding: 0.75rem 0.5rem;
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #1e2124;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-item-toggle:hover {
  background: #f9fafb;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-item-toggle.expanded, .mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-item-toggle.selected {
  background: #ecf2f9;
  font-weight: 700;
  color: #244874;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-item-toggle.expanded .icon,
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-item-toggle.expanded .icon-arrow-down, .mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-item-toggle.selected .icon,
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-item-toggle.selected .icon-arrow-down {
  transform: rotate(180deg);
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-item-toggle .icon,
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-item-toggle .icon-arrow-down {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.25s ease-in-out;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-item-link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.25rem;
  padding: 0.75rem 0.5rem;
  width: 100%;
  background: transparent;
  border-radius: 0.5rem;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #1e2124;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-item-link:hover {
  background: #f9fafb;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.25s ease-in-out, opacity 0.2s ease-in-out;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-submenu.active {
  max-height: 1000px;
  opacity: 1;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-submenu .menu-submenu-link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  text-decoration: none;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #1e2124;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-submenu .menu-submenu-link:hover {
  background: #ecf2f9;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-submenu .menu-submenu-link:active {
  background: #d8e4f3;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-submenu .menu-submenu-link.selected, .mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-submenu .menu-submenu-link.active {
  background: #ecf2f9;
  color: #244874;
  font-weight: 700;
}
.mobile-menu-detail .menu-detail-content .menu-section-items .menu-item-group .menu-submenu .menu-submenu-link .bullet {
  width: 0.25rem;
  height: 0.25rem;
  background: #33363d;
  border-radius: 0.25rem;
  flex-shrink: 0;
}
.mobile-menu-utility-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 1rem;
}
.mobile-menu-utility-group .utility-menu-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.125rem;
  padding: 0 0.125rem;
  height: 1.5rem;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #1e2124;
  border-radius: 0.25rem;
}
.mobile-menu-utility-group .utility-menu-link:hover {
  background: #f9fafb;
}
.mobile-menu-utility-group .utility-menu-link .icon {
  width: 1rem;
  height: 1rem;
}

.mobile-menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  gap: 0.25rem;
}
.mobile-menu-trigger-bar {
  width: 1.25rem;
  height: 0.125rem;
  background: #374151;
  transition: all 0.2s ease;
}
.mobile-menu-trigger.active .mobile-menu-trigger-bar:nth-child(1) {
  transform: rotate(45deg) translate(0.25rem, 0.25rem);
}
.mobile-menu-trigger.active .mobile-menu-trigger-bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-trigger.active .mobile-menu-trigger-bar:nth-child(3) {
  transform: rotate(-45deg) translate(0.25rem, -0.25rem);
}

@media (max-width: 900px) {
  .mobile-menu-trigger {
    display: flex;
  }
}
.ui-book-card__collection-wrapper {
  margin-top: 16px;
}
.ui-book-card__collection-wrapper .ui-collection-accordion {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ui-keyboard-container {
  position: relative;
}
@media (max-width: 900px) {
  .ui-keyboard-container {
    width: 100%;
  }
}

.ui-search-keyboard {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.highlight {
  color: #3c79c2;
  font-weight: 700;
  background: #d8e4f3;
  padding: 4px 0.25rem;
}

.text-blue-600 {
  color: #3c79c2;
}

.radio-container__item {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: flex-start !important;
}
@media (max-width: 900px) {
  .radio-container__item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .radio-container__item .ui-radio.ui-radio--medium {
    max-width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 900px) {
  .radio-container__item .ui-radio--medium .ui-radio__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 900px) {
  .filter-actions {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: flex-end !important;
  }
}

@media (max-width: 900px) {
  .mb-flex-col {
    flex-direction: column !important;
    gap: 0.5rem;
  }
}

.alert-modal .ui-modal__header {
  display: none;
}
.alert-modal .ui-modal__body {
  padding-top: 70px;
  padding-bottom: 40px;
  text-align: center;
  justify-content: center;
}
.alert-modal .alert-modal__title {
  margin-top: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #191a1a;
  line-height: 1;
}
.alert-modal .alert-modal__icon {
  display: inline-block;
  text-align: center;
}
.alert-modal .alert-modal__message {
  margin-top: 16px;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #191a1a;
  line-height: 1;
}
.alert-modal .alert-modal__actions {
  margin-top: 24px;
}

.com-img-wrp {
  display: flex;
  justify-content: center;
  padding: 15px 0;
  border-radius: 8px;
  border: 1px solid var(--color-gray-gy-10, #e5e5e5);
  background: var(--color-gray-wt, #fff);
}

.com-img-wrp2 {
  margin-top: 24px;
}

.com-infobox {
  margin-top: 24px;
  background-color: #ecf2f9;
  border: 1px solid #ecf2f9;
  border-radius: 0.75rem;
  padding: 1rem;
  width: 100%;
}
.com-infobox.bg-white {
  background: #fff;
  padding: 0;
  border: none;
}
.com-infobox.bg-white .com-infobox__content {
  padding-left: 0;
}
.com-infobox__content {
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.com-infobox__list-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.com-infobox__list-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}
.com-infobox__list-item-bullet {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.625rem;
  flex-shrink: 0;
}
.com-infobox__list-item-bullet::before {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  background-color: #4b4d4d;
  border-radius: 0.25rem;
  display: block;
}
.com-infobox__list-item-bullet--reference::before {
  content: "※";
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  color: #4b4d4d;
  line-height: 1.5;
}
.com-infobox__list-item-text {
  flex: 1;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #4b4d4d;
  margin: 0;
}
@media (max-width: 900px) {
  .com-infobox {
    padding: 16px;
    border-radius: 12px;
  }
  .com-infobox__content {
    padding-left: 28px;
    gap: 12px;
  }
  .com-infobox__list-group {
    gap: 8px;
  }
  .com-infobox__list-item {
    gap: 4px;
  }
  .com-infobox__list-item-bullet {
    width: 20px;
    height: 26px;
  }
  .com-infobox__list-item-bullet::before {
    width: 6px;
    height: 6px;
    border-radius: 4px;
  }
  .com-infobox__list-item-bullet--reference::before {
    font-size: 17px;
  }
  .com-infobox__list-item-text {
    font-size: 15px;
  }
}

/* ============================================
   Registration Process Components
   ============================================ */
.registration-step {
  margin-top: 1.5rem;
}
.registration-step__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.registration-step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: #244874;
  color: #ffffff;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 1rem;
  flex-shrink: 0;
}
.registration-step__title {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #244874;
  margin: 0;
}
.registration-step__button {
  margin-top: 1rem;
}
.registration-step__button .ui-button {
  height: 3rem;
  padding: 0 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
}
@media (max-width: 900px) {
  .registration-step__button .ui-button {
    width: 100%;
    height: 44px;
    font-size: 15px;
    padding: 0 20px;
  }
}
@media (max-width: 900px) {
  .registration-step {
    margin-top: 20px;
  }
  .registration-step__header {
    gap: 10px;
    margin-bottom: 14px;
  }
  .registration-step__number {
    width: 28px;
    height: 28px;
    font-size: 14px;
    border-radius: 14px;
  }
  .registration-step__title {
    font-size: 18px;
  }
  .registration-step__button {
    margin-top: 14px;
  }
}

.registration-methods {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
}
.registration-methods .com-infobox {
  min-height: 80px;
}
@media (max-width: 900px) {
  .registration-methods {
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }
}

.registration-method {
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  padding: 1.25rem;
  background-color: #ffffff;
}
.registration-method__header {
  margin-bottom: 1rem;
}
.registration-method__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  background-color: #3c79c2;
  color: #ffffff;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
}
.registration-method__title {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1e2124;
  line-height: 1.4;
  margin: 0;
}
.registration-method__button {
  margin-top: 1rem;
}
.registration-method__button .ui-button {
  width: 100%;
  height: 2.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0.375rem;
}
@media (max-width: 900px) {
  .registration-method {
    padding: 16px;
    border-radius: 10px;
  }
  .registration-method__header {
    margin-bottom: 14px;
  }
  .registration-method__label {
    padding: 3px 10px;
    font-size: 13px;
    border-radius: 3px;
    margin-bottom: 6px;
  }
  .registration-method__title {
    font-size: 15px;
  }
  .registration-method__button {
    margin-top: 14px;
  }
  .registration-method__button .ui-button {
    height: 40px;
    font-size: 14px;
  }
}

.com-infobox--notice {
  background-color: #f8f9fa;
  border-color: #e9ecef;
}

.com-infobox__list-item--no-bullet {
  padding-left: 8px;
}

.com-infobox__list-item-number {
  width: 24px;
  padding-left: 8px;
  color: #4b4d4d;
  font-size: 13px;
}

.com-infobox__list-item--indent {
  padding-left: 16px;
}

.com-infobox__list-item-bullet--outline {
  width: 4px;
  height: 4px;
  background: #fff;
  border: 1px solid #646767;
  border-radius: 4px;
}
.com-infobox__list-item-bullet--outline::before {
  display: none;
}

.blue {
  color: #3c79c2;
}

.text-red {
  color: #e53935;
}

.text-primary {
  color: #3c79c2;
}

.scroll-x {
  overflow-x: auto;
}

.planetarium-intro {
  background: url("../../assets/images/bg-shstar.png");
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 32px;
  color: white;
  text-align: center;
}
.planetarium-intro__text {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.planetarium-intro__image {
  margin-top: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.planetarium-intro__image img {
  display: inline-block;
  max-width: 100%;
  text-align: center;
  border-radius: 16px;
}

.newsletter-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid #d8e4f3;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
.newsletter-item:hover {
  border-color: #3c79c2;
  box-shadow: 0 2px 8px rgba(60, 121, 194, 0.1);
}
.newsletter-item__content {
  flex: 1;
}
.newsletter-item__title {
  font-size: 1.0625rem;
  line-height: 1.5;
  color: #1e2124;
  font-weight: 400;
}
.newsletter-item__download {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background: transparent;
  color: #191a1a;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.newsletter-item__download svg {
  width: 1.25rem;
  height: 1.25rem;
}
.newsletter-item__download:hover {
  background: #ecf2f9;
}

@media (max-width: 768px) {
  .newsletter-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .newsletter-item__download {
    align-self: flex-end;
  }
}
.text-link {
  color: #3c79c2;
  text-decoration: underline;
}
.text-link:hover {
  color: #30619b;
}

/* ============================================
   Integrated Library Service Info Box Styles
   ============================================ */
.integrated-service-info {
  background-color: #f3f4f6;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .integrated-service-info {
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
  }
}
.integrated-service-info__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 900px) {
  .integrated-service-info__header {
    gap: 10px;
    margin-bottom: 16px;
  }
}
.integrated-service-info__icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: #3c79c2;
}
@media (max-width: 900px) {
  .integrated-service-info__icon {
    width: 20px;
    height: 20px;
  }
}
.integrated-service-info__title {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #191a1a;
  margin: 0;
}
@media (max-width: 900px) {
  .integrated-service-info__title {
    font-size: 18px;
  }
}
.integrated-service-info__content {
  padding-left: 2.25rem;
}
@media (max-width: 900px) {
  .integrated-service-info__content {
    padding-left: 30px;
  }
}
.integrated-service-info__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 900px) {
  .integrated-service-info__list {
    gap: 14px;
  }
}
.integrated-service-info__list-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 900px) {
  .integrated-service-info__list-item {
    gap: 6px;
  }
}
.integrated-service-info__item-header {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
@media (max-width: 900px) {
  .integrated-service-info__item-header {
    gap: 6px;
  }
}
.integrated-service-info__item-number {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
  color: #191a1a;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .integrated-service-info__item-number {
    font-size: 16px;
  }
}
.integrated-service-info__item-title {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
  color: #191a1a;
  margin: 0;
}
@media (max-width: 900px) {
  .integrated-service-info__item-title {
    font-size: 16px;
  }
}
.integrated-service-info__sublist {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1.5rem;
}
@media (max-width: 900px) {
  .integrated-service-info__sublist {
    gap: 3px;
    padding-left: 20px;
  }
}
.integrated-service-info__sublist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
@media (max-width: 900px) {
  .integrated-service-info__sublist-item {
    gap: 6px;
  }
}
.integrated-service-info__sublist-item::before {
  content: "-";
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  color: #4b4d4d;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .integrated-service-info__sublist-item::before {
    font-size: 16px;
  }
}
.integrated-service-info__sublist-text {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  color: #4b4d4d;
  margin: 0;
  flex: 1;
}
@media (max-width: 900px) {
  .integrated-service-info__sublist-text {
    font-size: 16px;
  }
}
.integrated-service-info__note {
  margin-top: 1.25rem;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: #646767;
  padding-left: 2.25rem;
}
@media (max-width: 900px) {
  .integrated-service-info__note {
    margin-top: 16px;
    font-size: 14px;
    padding-left: 30px;
  }
}

.tac {
  text-align: center;
}

/* ============================================
   Info Box Type 2 Component
   ============================================ */
.com-inbo-type2 {
  margin-top: 24px;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 1rem;
  background: #ecf2f9;
  border: 1px solid #ecf2f9;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
}
@media (max-width: 900px) {
  .com-inbo-type2 {
    margin-top: 16px;
    padding: 16px;
    gap: 8px;
    border-radius: 8px;
  }
}
.com-inbo-type2__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.625rem;
  flex-shrink: 0;
}
.com-inbo-type2__icon svg,
.com-inbo-type2__icon img {
  width: 1.0416875rem;
  height: 1.0416875rem;
  display: block;
}
@media (max-width: 900px) {
  .com-inbo-type2__icon {
    width: 20px;
    height: 26px;
  }
  .com-inbo-type2__icon svg,
  .com-inbo-type2__icon img {
    width: 16.667px;
    height: 16.667px;
  }
}
.com-inbo-type2__text {
  flex: 1;
  min-width: 0;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  color: #18304d;
  margin: 0;
}
@media (max-width: 900px) {
  .com-inbo-type2__text {
    font-size: 14px;
  }
}

.info-box-type2 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #f1f2f2;
  border-radius: 0.75rem;
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 900px) {
  .info-box-type2 {
    margin-top: 16px;
    padding: 16px;
    gap: 8px;
    border-radius: 8px;
  }
}
.info-box-type2__item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  color: #191a1a;
}
@media (max-width: 900px) {
  .info-box-type2__item {
    font-size: 14px;
    gap: 6px;
  }
}
.info-box-type2__item img.icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1875rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .info-box-type2__item img.icon {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }
}

.numbered-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #3c79c2;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  border-radius: var(--radius-small1, 4px);
  background: var(--color-primary-pr07, #244874);
}

/* ============================================
   마라톤 모집 카드 스타일
   ============================================ */
.marathon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .marathon-list {
    gap: 16px;
    margin-top: 16px;
  }
}

.marathon-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: calc(50% - 0.75rem);
  background: white;
  border: 1px solid #b1b3b3;
  border-radius: 0.75rem;
  padding: 2rem;
}
@media (max-width: 900px) {
  .marathon-card {
    width: 100%;
    padding: 20px;
    gap: 16px;
    border-radius: 8px;
  }
}
.marathon-card__header {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .marathon-card__header {
    gap: 12px;
  }
}
.marathon-card__index {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  color: #191a1a;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .marathon-card__index {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}
.marathon-card__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-width: 0;
}
@media (max-width: 900px) {
  .marathon-card__content {
    gap: 12px;
  }
}
.marathon-card__title {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #191a1a;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 4.5rem;
}
@media (max-width: 900px) {
  .marathon-card__title {
    font-size: 18px;
    height: auto;
    min-height: 54px;
  }
}
.marathon-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 900px) {
  .marathon-card__info {
    gap: 6px;
  }
}
.marathon-card__info-row {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.5;
  color: #191a1a;
}
@media (max-width: 900px) {
  .marathon-card__info-row {
    font-size: 14px;
    gap: 6px;
  }
}
.marathon-card__label {
  font-weight: 700;
  width: 4rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .marathon-card__label {
    width: 56px;
  }
}
.marathon-card__value {
  font-weight: 400;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.marathon-card__button {
  width: 100%;
}

.history-timeline {
  position: relative;
  padding: 2.5rem 0;
}
.history-timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #cbcccc;
  transform: translateX(-50%);
}
.history-timeline__item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 6rem;
  gap: 3.75rem;
}
.history-timeline__item--left {
  flex-direction: row-reverse;
  padding-right: calc(50% - 8.125rem);
}
.history-timeline__item--right {
  flex-direction: row;
  padding-left: calc(50% - 8.125rem);
}
.history-timeline__item:last-child {
  margin-bottom: 0;
}
.history-timeline__year-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  height: 3.25rem;
  min-width: 6.875rem;
  background-color: #8aafdb;
  border-radius: 1.625rem;
  font-family: "Pretendard GOV", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  flex-shrink: 0;
}
.history-timeline__marker {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  background-image: url("../../assets/images/icon/icon-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  z-index: 1;
}
.history-timeline__content {
  position: relative;
  flex: 1;
  background: #ffffff;
  border: 1px solid #8aafdb;
  border-radius: 0.75rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 28.75rem;
}
.history-timeline__event {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.history-timeline__event-date {
  font-family: "Pretendard GOV", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #3c79c2;
  white-space: nowrap;
  flex-shrink: 0;
}
.history-timeline__event-library {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  height: 2rem;
  min-width: 4.6875rem;
  border-radius: 1.40625rem;
  font-family: "Pretendard GOV", sans-serif;
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.history-timeline__event-desc {
  font-family: "Pretendard GOV", sans-serif;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #3c79c2;
  white-space: nowrap;
  flex-shrink: 0;
}
.history-timeline__arrow {
  position: absolute;
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  top: 50%;
  transform: translateY(-50%);
}
.history-timeline__arrow::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.history-timeline__item--left .history-timeline__arrow {
  right: -0.4375rem;
}
.history-timeline__item--right .history-timeline__arrow {
  left: -0.4375rem;
}
.history-timeline__item--left .history-timeline__arrow::before {
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 0.4375rem 0 0.4375rem 0.75rem;
  border-color: transparent transparent transparent #8aafdb;
}
.history-timeline__item--right .history-timeline__arrow::before {
  left: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 0.4375rem 0.75rem 0.4375rem 0;
  border-color: transparent #8aafdb transparent transparent;
}

@media (max-width: 900px) {
  .history-timeline {
    padding: 20px 0;
  }
  .history-timeline__line {
    left: 20px;
  }
  .history-timeline__item {
    flex-direction: row !important;
    padding-left: 100px !important;
    padding-right: 0 !important;
    margin-bottom: 40px;
    gap: 12px;
  }
  .history-timeline__item--left, .history-timeline__item--right {
    padding-left: 100px !important;
    padding-right: 0 !important;
  }
  .history-timeline__year-badge {
    position: absolute;
    left: 0;
    height: 40px;
    min-width: 80px;
    padding: 0 8px;
    font-size: 20px;
    border-radius: 20px;
  }
  .history-timeline__marker {
    display: none;
  }
  .history-timeline__content {
    min-width: auto;
    width: 100%;
    padding: 20px;
    gap: 12px;
  }
  .history-timeline__event {
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
  }
  .history-timeline__event-date {
    font-size: 13px;
    flex-shrink: 0;
  }
  .history-timeline__event-library {
    font-size: 13px;
    height: 28px;
    min-width: 60px;
    padding: 2px 10px;
    flex-shrink: 0;
  }
  .history-timeline__event-desc {
    font-size: 13px;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    flex: 1;
    min-width: 0;
  }
  .history-timeline__arrow {
    display: none;
  }
}
.symbol-container {
  padding: 2.5rem 0;
}

.symbol-intro {
  margin-bottom: 2rem;
}
.symbol-intro__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}

.symbol-diagram {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.symbol-diagram__image {
  max-width: 100%;
  height: auto;
}

.symbol-description {
  margin-bottom: 1.5rem;
}
.symbol-description__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.symbol-description__item {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0.75rem;
}
.symbol-description__item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3c79c2;
  font-weight: 700;
}

.symbol-colors {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: #fafafa;
  border-radius: 0.75rem;
}
.symbol-colors__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.symbol-colors__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: 2.5rem;
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid;
  background: transparent;
  cursor: default;
}
.symbol-colors__badge--yellow {
  color: #f5a623;
  border-color: #f5a623;
}
.symbol-colors__badge--green {
  color: #7ed321;
  border-color: #7ed321;
}
.symbol-colors__badge--blue {
  color: #4a90e2;
  border-color: #4a90e2;
}
.symbol-colors__plus {
  display: flex;
  align-items: center;
  color: #33363d;
  flex-shrink: 0;
}
.symbol-colors__plus svg {
  width: 1.5rem;
  height: 1.5rem;
}
.symbol-colors__text {
  font-family: "Pretendard GOV", sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.5;
  color: #191a1a;
  margin-left: 0.5rem;
}

@media (max-width: 900px) {
  .symbol-container {
    padding: 20px 0;
  }
  .symbol-intro {
    margin-bottom: 40px;
  }
  .symbol-intro__title {
    font-size: 18px;
  }
  .symbol-diagram {
    margin-bottom: 40px;
  }
  .symbol-description {
    margin-bottom: 40px;
  }
  .symbol-description__item {
    font-size: 14px;
    padding-left: 16px;
  }
  .symbol-colors {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 8px;
  }
  .symbol-colors__row {
    justify-content: center;
    gap: 8px;
  }
  .symbol-colors__badge {
    font-size: 14px;
    padding: 6px 16px;
  }
  .symbol-colors__plus svg {
    width: 20px;
    height: 20px;
  }
  .symbol-colors__text {
    font-size: 14px;
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
}
.text-point-red {
  color: #D7424E;
}

/* ============================================
   모바일 회원증 버튼
   ============================================ */
.mobileCard {
  display: none;
}
@media (max-width: 900px) {
  .mobileCard {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }
  .mobileCard a {
    display: block;
    width: 100%;
    padding: 16px 20px;
    text-align: center;
    background-color: #0066cc;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .mobileCard a:hover {
    background-color: #0052a3;
  }
  .mobileCard a:active {
    background-color: #003d7a;
  }
}

/*# sourceMappingURL=base.css.map */
