@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Taviraj:300,400,700,300i,400i,700i");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,700,900");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.8/dist/web/static/pretendard.css");

	html {
		box-sizing: border-box;
		scroll-behavior: smooth;
	}

	img {
		height: auto;
		max-width: 100%;
		border-radius: 0.365em;
	}

	::selection {
		background-color: #FFD800; /* 선택된 텍스트의 배경 색을 노란색으로 설정 */
		color: #000; /* 선택된 텍스트의 글자 색을 검정색으로 설정 (선택적) */
	}

	.both {
		clear: both;
	}
	b, strong {
	  color: #3d4449;
	  font-family: 'Noto Serif KR', sans-serif !important;
	  font-weight: 600 !important;
	  background: linear-gradient(transparent 50%, #F7E0E4 50%);
	}

	.small {
		font-size: 0.8rem !important;
		font-weight: 400;
	}


	p {
		    color: #606060;
		    font-size: 1.10rem;
		    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;
		    font-weight: 400;
		    letter-spacing: 0.075em;
		    word-spacing: 0.1em;
		    line-height: 200%;
		    margin-bottom: 2rem !important;
	}
		@media (max-width: 768px) { /* 모바일 화면 크기에 맞춰 조정 */
		p {
			font-size: 1rem;
		}
	}
	hr {
		clear: both;
		margin: 3rem 0;
		color: inherit;
		background-color: #303030;
		opacity: .25;
	}
	hr .major {
		margin: 1rem 0;
		color: inherit;
		background-color: currentColor;
		opacity: .25;
	}

/* 메인 타이틀 간격 */
	.letter {
		letter-spacing: 0.1em !important;
	}
/* 메인 타이틀 하위 텍스트 */
	.fw-mediums {
		background: linear-gradient(to right, #fff, #9B9B9B);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
		color: transparent;
		font-weight: 500 !important;
	}

/* 숨김 텍스트 */
	.absolute {
		position: absolute; 
		top: -8000px; 
		left: -8000px;
	}

/* 기본 상태: 모바일에서 숨김 */
.desktop-only {
  display: none !important;
}
/* 데스크탑 이상 (화면 너비 768px 이상)일 때 표시 */
@media screen and (min-width: 768px) {
  .desktop-only {
    display: block !important;
  }
}

/* 기본 상태: 데스크탑에서 숨김 */
.mobile-on {
  display: block !important;
}
/* 데스크탑 이상 (화면 너비 768px 이상)일 때 표시 */
@media screen and (min-width: 768px) {
  .mobile-on {
    display: none !important;
  }
}

/* 감추기 */
.none {
  display: none !important;
}

/* 텍스트 위치 */
	.align-left {
		text-align: left;
	}
	.align-center {
		text-align: center;
	}
	.align-right {
		text-align: right;
	}

	.fl {
		float: left;
	}
	.fr {
		float: right;
	}

/* 폰트 한글 + 영문 */
	.hangle {
		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;
	}
	.hangles {
		font-family: 'Noto Serif KR', sans-serif !important;
	}
	.eng {
		font-family: "Taviraj", serif !important;
	}
	.pr {
		padding-right: 0.2em;
	}

/* Image */
/* 기본 스타일 */
.image {
    border-radius: 3px;
    border: 0;
    display: inline-block;
    position: relative;
}

/* 이미지 짤림 현상 방지 */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.image img {
    border-radius: 3px;
    display: block;
}

.image.left {
    float: left;
    margin: 0 2em 2em 0;
    top: 0.25em;
}

.image.right {
    float: right;
    margin: 0 0 2em 2em;
    top: 0.25em;
}

.image.left, .image.right {
    max-width: 40%;
}

.image.left img, .image.right img {
    width: 100%;
}

.image.fit {
    display: block;
    margin: 0 0 2em 0;
    width: 100%;
}

.image.fit img {
    width: 100%;
}

.image.minus {
    display: block;
    margin: 0 0 0 0;
    width: 100%;
    border-radius: 3px 3px 0 0 !important;
}

.image.minus img {
    width: 100%;
    border-radius: 3px 3px 0 0 !important;
}


		.image.centered {
			display: block;
			margin: 0 0 2em 0;
		}

			.image.centered img {
				margin: 0 auto;
				width: auto;
			}

		.image.featured {
			display: block;
			width: 100%;
			margin: 0 0 3em 0;
		}

/* 모바일 대응 스타일 */
@media (max-width: 768px) {
    .image.left, .image.right {
        /*float: none;*/
        margin: 0 0 2rem 0;
        max-width: 100%;
    }

    .image.left img, .image.right img {
        width: 100%;
    }
}


	blockquote {
		border-left: solid 0.5em var(--accent-color);
		padding: 2em 1em 3em 2em;
		font-style: italic;
		font-weight: 500;
		letter-spacing: 0.02em;
		word-spacing: 0.01em;
		text-align: left;
		background-color: #F6F8F9;
	}

	.events .details blockquote p {
		color:  color-mix(in srgb, var(--default-color), transparent 20%);
		font-size: 1.055rem;
		margin-bottom: 0px !important;
	}

/*
	#starter-section blockquote p {
		color:  color-mix(in srgb, var(--default-color), transparent 20%);
		font-size: 1.055rem;
		margin-bottom: 0px !important;
	}
*/
/*
	blockquote h4 {
		color:#3B5D50;
		font-size: 1.88rem;
		line-height: 180%;
		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;
		font-weight: 900;
		letter-spacing: 0.02em;
		word-spacing: 0.01em;
	}

	@media (max-width: 767px) {
	    blockquote h4 {
	        font-size: 1.5rem;
	    }
	}
*/

	table {
		border-collapse: collapse;
		border-spacing: 0;
	}

/* Table */
.table-wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto; }

table {
  margin: 0 0 5em 0;
  width: 100%; }
  table tbody tr {
    border: solid 1px rgba(210, 215, 217, 0.75);
    border-left: 0;
    border-right: 0; }
    table tbody tr:nth-child(2n + 1) {
      background-color: rgba(230, 235, 237, 0.25); }
  table td {
    color: #606060;
    font-size: 1rem;
    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;
    font-weight: 400;
    letter-spacing: 0.075em;
    word-spacing: 0.1em;
    line-height: 200%;
    padding: 1em 0.75em; 
}
  table th {
    color: #3d4449;
    font-size: 0.9em;
    font-weight: 600;
    padding: 0 0.75em 0.75em 0.75em;
    text-align: left; }
  table thead {
    border-bottom: solid 2px rgba(210, 215, 217, 0.75); }
  table tfoot {
    border-top: solid 2px rgba(210, 215, 217, 0.75); }
  table.alt {
    border-collapse: separate; }
    table.alt tbody tr td {
      border: solid 1px rgba(210, 215, 217, 0.75);
      border-left-width: 0;
      border-top-width: 0; }
      table.alt tbody tr td:first-child {
        border-left-width: 1px; }
    table.alt tbody tr:first-child td {
      border-top-width: 1px; }
    table.alt thead {
      border-bottom: 0; }
    table.alt tfoot {
      border-top: 0; }

/* Image */
.image {
  border-radius: 0.375em;
  border: 0;
  display: inline-block;
  position: relative; }
  .image img {
    border-radius: 0.375em;
    display: block; }
  .image.left, .image.right {
    max-width: 45%; 
}
    .image.left img, .image.right img {
      width: 100%; 
}
  .image.left {
    float: left;
    padding: 0 1.5em 1em 0;
    top: 0.25em; }
  .image.right {
    float: right;
    padding: 0 0 1em 1.5em;
    top: 0.25em; }
  .image.fit {
    display: block;
    margin: 0 0 2em 0;
    width: 100%; }
    .image.fit img {
      width: 100%; }
  .image.main {
    display: block;
    margin: 0 0 3em 0;
    width: 100%; }
    .image.main img {
      width: 100%; }

a.image {
  overflow: hidden;
 }
  a.image img {
    -moz-transition: -moz-transform 0.2s ease !important;
    -webkit-transition: -webkit-transform 0.2s ease !important;
    -ms-transition: -ms-transform 0.2s ease !important;
    transition: transform 0.2s ease !important;
 }
  a.image:hover img {
    -moz-transform: scale(1.075);
    -webkit-transform: scale(1.075);
    -ms-transform: scale(1.075);
    transform: scale(1.075); }

/* 모바일 대응 스타일 */
@media (max-width: 768px) {
    .image.left, .image.right {
        /*float: none;*/
        margin: 0 0 2rem 0;
        padding: 0;
        max-width: 100%;
    }

    .image.left img, .image.right img {
        width: 100%;
    }
}

/* 페이징 */
/* Pagination */

	.pagination {
		width: 100%;
		text-align: center;
		display: -moz-inline-flex;
		display: -webkit-inline-flex;
		display: -ms-inline-flex;
		display: inline-flex;
		-moz-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
		cursor: default;
		list-style: none;
		margin: 0 0 2rem 2px;
		padding: 0;
		justify-content: center;
	}

		.pagination a, .pagination span {
			-moz-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
			-webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
			-ms-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
			transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
			border: solid 2px;
			display: inline-block;
			font-family: "Source Sans Pro", Helvetica, sans-serif;
			font-size: 0.8rem;
			font-weight: 900;
			height: 3rem;
			letter-spacing: 0.075em;
			line-height: calc(3rem - 4px);
			margin-left: -2px;
			min-width: 3rem;
			position: relative;
			text-align: center;
			text-decoration: none;
			text-transform: uppercase;
		}

		.pagination .next, .pagination .previous {
			text-decoration: none;
			padding: 0 1.75rem;
		}

			.pagination .next:before, .pagination .previous:before {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				font-family: 'Font Awesome 5 Free';
				font-weight: 900;
			}

			.pagination .next:before, .pagination .previous:before {
				display: inline-block;
				color: inherit !important;
				line-height: inherit;
			}

		.pagination .previous:before {
			content: '\f104';
			margin-right: 0.9375em;
		}

		.pagination .next:before {
			content: '\f105';
			float: right;
			margin-left: 0.9375em;
		}

		@media screen and (max-width: 980px) {

			.pagination a, .pagination span {
				font-size: 0.9rem;
			}

		}

		@media screen and (max-width: 480px) {

			.pagination .page, .pagination .extra {
				display: none;
			}

		}

	.pagination a, .pagination span {
		border-color: #eee;
	}

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

		.pagination a:hover {
			color: var(--color-primary) !important;
			border-color: var(--color-primary);
			z-index: 1;
		}

			.pagination a:hover + a,
			.pagination a:hover + span {
				border-left-color: var(--color-primary);
			}

		.pagination a.active {
			background-color: #eee;
		}

	.pagination span {
		color: #eee;
	}

/* 목차 컨테이너 스타일 */
.toc-container {
    width: 100%;
    /*max-width: 800px;*/
    margin: 3em auto;
    text-align: left;
    background-color: #F9FBFC;
    border: solid 0.3em rgba(210, 215, 217, 0.75);
    padding: 1em;
}

/* 목차 제목 스타일 */
.toc-title {
    color: #3d4449;
    font-size: 3rem;
    font-family: "Taviraj", serif !important;
    font-weight: 800;
    text-transform: capitalize;
    padding-bottom: 0.3em;
    border-bottom: 4px solid #3d4449;
    display: inline-block;
    margin-left: 0.3em;
    margin-top: 0.5em;
    margin-bottom: 1.5em;
}

/* 목차 리스트 스타일 */
.toc-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-content: flex-start; /* 여러 줄일 때 위쪽 정렬 */
}

/* 목차 아이템 스타일 */
.toc-item {
    width: calc((100% - 30px) / 3); /* 3개씩 배치 */
    min-width: 250px; /* 최소 크기 설정 */
}
/* 번호 스타일 */
.toc-item strong {
    color: #ddd;
    font-size: 3rem;
    font-family: "Taviraj", serif !important;
    font-weight: 800;
    display: inline-block;
    background: linear-gradient(transparent 50%, transparent 50%);
    margin-right: 0.3em;
}

/* 목차 링크 스타일 */
.toc-item a {
    font-size: 1em;
    font-weight: 800;
    text-decoration: none;
    color: #2E2C2A;
    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;
}

/* 서브 리스트 스타일 */
.sub-list {
    list-style: inside;
    color: #2E2C2A;
    padding-left: 5em;
    margin-top: 1em;
}

.sub-list li {
    font-size: 1rem;
    line-height: 1.6;
}

.sub-list li a {
    color: #4F5253;
    font-size: 0.9em;
    font-weight: 500;
    line-height: 200%;
    text-decoration: none;
}

.sub-list li a:hover {
    color: #64C7BA;
    text-decoration: none;
}
@media (max-width: 768px) {
    .toc-list {
        flex-direction: column;
        align-items: center;
    }

    .toc-item {
        width: 100%; /* 모바일에서는 한 줄에 하나씩 */
    }

    .toc-item strong {
        font-size: 28px;
    }

    .toc-item a {
        font-size: 16px;
    }

    .sub-list li {
        font-size: 14px;
    }
}

/* 목록 Board CSS */
    .board-container {
      max-width: 100%;
      margin: 0 auto;
    }

    .board-list {
      border-radius: 0em;
      overflow: hidden;
      background-color: #EBF2F3;
      /*background-color: rgba(255, 255, 255, 0.2);*/
    }

    .board-item {
      display: flex;
      align-items: center;
      padding: 1.2rem 1rem;
      border-bottom: 1px solid rgba(229, 232, 237, 0.2);
      transition: background 0.2s ease;
      text-decoration: none;
      color: #707C7F;
    }
    .board-item a {
      color: #707C7F !important;
      text-decoration: none;
    }
    .board-item:hover {
      color:#fff !important;
      border-bottom: 0px solid #707C7F !important;
      text-decoration:none;
    }

    .board-item:last-child {
      border-bottom: none;
    }

    .board-item:hover {
      background-color: rgba(112, 124, 127, 0.5);
    }

    .board-item > div {
      /*padding: 0 0.5rem;*/
    }

    .title {
      width: 80%;
      font-weight: 500;
      font-size: 1rem;
      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;
      letter-spacing: 0.02em;
      word-spacing: 0.01em;

      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
    }

    .classification {
      width: 20%;
      text-align: right;
      font-size: 0.9rem;
      color: #fff;
    }
    .author {
      width: 20%;
      text-align: right;
      font-size: 0.9rem;
      color: #fff;
    }
    .author img {
      width: auto !important;
      border-radius: 0;
    }


    /* 모바일 반응형 */
    @media (max-width: 768px) {
      .classification {
        display: none;
      }
      .author {
        display: none;
      }
      .title {
        width: 100%;
        font-size: 1rem;
      }
    }

/* 서브페이지 타이틀 텍스트 */
.page-title .container p { 
    color: #8F8F8F;
    font-size: 1rem;
    font-family: 'Noto Serif KR', sans-serif;
    font-weight: 600;
    letter-spacing: 0.075em;
    word-spacing: 0.1em;
    line-height: 200%;
    margin-bottom: 0.5rem !important;
}

/* Button */
.more-btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--heading-font);
}

.more-btn:hover {
  color: var(--bs-body-bg-rgb);
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
/* 모바일 전용 */
@media (max-width: 768px) {
    .more-btn {
        margin-bottom: 3rem;
    }
}

/* Title Logo */
.media-body {
    -ms-flex: 1;
    flex: 1;
    padding-top: 0.3rem;
}
.tm-slogon {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-family: "Taviraj", serif !important;
    line-height: 100%;
    padding-left: 0.2rem;
    margin-bottom: 0rem !important;
}

.breadcrumbs a {
    color: var(--accent-color);
    font-family: 'Noto Serif KR', sans-serif;
    font-weight: 600;
    letter-spacing: 0.075em;
    word-spacing: 0.1em;
    text-decoration: none !important ;
    transition: 0.3s;
}
.breadcrumbs a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

/* foot a links */
.copyright a {
    color: var(--accent-color);
    letter-spacing: 0.075em;
    word-spacing: 0.1em;
    text-decoration: none !important;
    transition: 0.3s;
}
.copyright a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}