@charset "utf-8";

:root {
	--transition: 0.5s;
	--scrollbar-width: 6px;
	--base-color: #fff;
	--article-img: 40px;
	--article-mar: 15px;
	--s-border-radius: 20px;
	--content-padding: 25px;
	--search-mar: 5px;
	--search-width: 15px;
	--cover-highlight24-width: 500px;
	--cover-highlight24-ratio: 5/7;
	scroll-behavior: smooth;
}

/*
────────────────────────────────────────────────────
apricot skin #3
Edited by salgu
────────────────────────────────────────────────────

01 RESET
02 툴팁 | .tooltip
03 레이아웃 (공통, 1단) | .wrap, .container, .content
04 네비게이션바 | .nav-bar
05 사이드바 | .sidebar
06 카테고리 | .category
07 커버 (공통, 하이라이트, 디데이, 링크, 공지, 태그 클라우드, 리스트, 피드1, 피드2, 갤러리, 카드, 리뷰) | .cover
08 카테고리 화면 (공통, 웹진, 갤러리1, 갤러리2, 심플, 메세지, 피드1, 피드2, 카드) | .search-list
09 본문 (공통, 스타일1, 스타일2, 에디터, 본문 페이징, 연관글) | .article~
10 비밀글 | .protected
11 공지 | .notice~
12 포스트 버튼 | .article-post-btn, .notice-post-btn
13 태그 클라우드 | .tag~
14 댓글 & 방명록
15 페이징 | .paging
16 탑버튼 | .top-btn
17 로그인 핸들러 | .log~
18 스크롤바 
19 드래그
20 페이드 효과
21 반응형 (태블릿, 모바일)

────────────────────────────────────────────────────
*/



/* ───────────────────────────────────────────────────────── */
/* reset inline style */
/* ───────────────────────────────────────────────────────── */

* {
	box-sizing: border-box;
	
	margin: 0;
	padding: 0;
}

[hidden] {
	display: none;
}

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,u,ul,var,video {
	border: 0;
	font-size: inherit;
	vertical-align: baseline;
}

table,tbody,td,tfoot,th,thead,time,tr,tt {
	font-size: inherit;
	vertical-align: baseline;	
}

a {
	color: inherit;
	transition: all var(--transition);
}

a:where(:link, :visited, :hover, :active) {
	text-decoration: none;
}

b {
	font-weight: bold;
}

i {
	font-style: italic;
}

u {
	text-decoration: none;
	background: linear-gradient(to top, var(--base-color5) 30%, transparent 30%);
}

strong, h1 {
	font-weight: normal;
}

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

button {	
	appearance: none;
	padding: 0;
	border: 0;
	outline: none;
	background: none;

	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	color: inherit;

	cursor: pointer;
}

:focus {
	outline: 0;
}

:focus-visible {
	outline: 2px solid var(--base-color4);
}

input:focus-visible {
	outline: 0;
}

textarea:focus-visible {
	outline: 0;
}

input, textarea {
	border: 0;
	outline: none;
	background: none;

	font-size:inherit;
	font-family: inherit;

	resize: none;
}

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


/* ───────────────────────────────────────────────────────── */
/* Start */
/* ───────────────────────────────────────────────────────── */

body {
	overflow-x: hidden;
	overflow-y: scroll;
	font-size: var(--font-size);
	font-family: "Open sans", "Pretendard";
	line-height: 1.7;
	word-wrap: break-word;
	color: var(--font-color);
	background: var(--background-color);
	background-size: cover;
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 툴팁 */
/* ───────────────────────────────────────────────────────── */

.tooltip {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	opacity: 0;

	position: fixed;
	z-index: 999;
	
	border: 1.5px solid var(--base-color3);
	padding: 3px 8px;
	border-radius: 5px;
	background: var(--content-background-color);
	
	font-size: 10px;
	font-family: "Poppins", "Pretendard";
	text-transform: uppercase;
	color: var(--base-color7);

	transition: opacity 0.5s;
}

.tooltip:empty {
	padding: 0;
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 레이아웃 */
/* ───────────────────────────────────────────────────────── */

.wrap {
	display: grid;
	opacity: 0;

	grid-template-areas: "header header""aside main";
	align-items: flex-start;
	justify-content: center;

	gap: var(--s-item-gutter) var(--s-sidebar-gutter);
	width: calc(var(--s-sidebar-width) + var(--s-sidebar-gutter) + var(--s-content-width));
	position: relative;
	margin: 120px auto;
	
	transition: opacity 0.8s ease;
}

.container {
	grid-area: main;

	width: var(--s-content-width);
}

.content {
	position: relative;

	scroll-behavior: smooth;
}

/* ───────────────────────────────────────────────────────── */

/* 1단 레이아웃 */

.layout1 .wrap {
	display: block;

	width: var(--s-content-width);
}

.layout1 .sidebar {
	width: 100%;
	margin-top: var(--s-item-gutter);
	margin-bottom: var(--s-item-gutter);
}

.layout1 .container {
	width: 100%;
}

.layout1 .top-wrap {
	margin-top: -40px;
	margin-left: calc(100% + 40px);
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 네비게이션 바 */
/* ───────────────────────────────────────────────────────── */

.nav-bar {
	display: flex;
	align-items: center;

	grid-area: header;
	position: relative;

	width: 100%;
	border-radius: calc(var(--s-border-radius) - 5px);
	padding: 9px 20px;
	background: var(--content-background-color);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
}

.nav-title {
	display: inline-block;
	margin-left: 10px;

	font-weight: 500;
	text-transform: uppercase;
}

.nav-btn {
	display: inline-flex;

	gap: 20px;
	margin-left: auto;

	font-size:14px;
}

.nav-btn-item, .cate-open { 
	display: inline-flex;
	justify-content: center;
	align-items: center;

	width: var(--font-size);
	height: var(--font-size);
}

.notice-page .nav-notice::after, #tt-body-tag .nav-tag::after, #tt-body-guestbook .nav-guestbook::after	{
	content: "";

	position: absolute;

	bottom: 0;

	width: calc(var(--font-size) + 6px);
	height: 4px;
	border-radius: 10px;
	background-color: var(--point-color-b2);
}

.nav-icon.cate-open {
	color: var(--font-color);
}

.nav-icon {
	width: 100%;
	height: 100%;
	color: var(--font-color);
	stroke-width: 1.8px;
}

.cate-open {
	line-height: 0;

	cursor: pointer;
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 사이드바 */
/* ───────────────────────────────────────────────────────── */

.sidebar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;

	position: relative;
	grid-area: aside;
	transform: translateZ(0);
	
	width: var(--s-sidebar-width);
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	padding: 50px 25px;
	background-color: var(--content-background-color);

	text-align: center;

	transition: transform 0.5s, box-shadow 0.5s, padding 0.5s;
}

.sidebar:hover {
	transform: translateY(-5px) translateZ(0);

	box-shadow: 1px 3px 6px 0px var(--shadow-color);
}

.title-img {
	position: relative;
	z-index: 4;

	width: 130px;
	height: 130px;
	object-fit: cover;
	margin: 8px auto;
	border-radius: 120px 130px 120px 100px;
	box-shadow: 9px 7px 0px var(--base-color4);

	animation: radius 4s infinite linear alternate paused;
}

.sidebar:not(.open):hover .title-img {
	animation: radius 4s infinite linear alternate;
}

@keyframes radius {
	0% {
		border-radius: 120px 130px 120px 100px;
	}
	15% {
		border-radius: 120px 100px 90px 80px; 
	}
	30% {
		border-radius: 140px 120px 110px 110px;
	}
	50% {
		border-radius: 120px 100px 140px 120px;
	}
	65% {
		border-radius: 110px 130px 130px 140px;
	}
	80% {
		border-radius: 140px 110px 120px 120px;
	}
	100% {
		border-radius: 120px 130px 120px 100px;
	}
}

.blog-info {
	width: 100%;
	padding-top: 25px;
}

.blogger {
	display: flex;
	justify-content: center;
	align-items: center;
	
	gap: 4px;

	font-size: calc(var(--font-size) + 2px);
	font-family: "Noto Serif", "Pretendard";
	font-weight: bold;
}

.blogger-icon {
	width: calc(var(--font-size) + 4px);
	height: calc(var(--font-size) + 4px);

	color: var(--font-color);
}

.blogger-link {
	margin-left: 8px;
	
	transition: none;
}	

.blog-desc {
	display: block;

	margin: 10px 0px 30px 0px;
	
	font-family: "Poppins", "Pretendard";
}

.blog-desc2 {
	display: none;
}

.aside-btn { 
	display: flex; 
	justify-content: center;
	gap: 10px; 
}

.follow-check-btn {		
	display: inline-flex;
	align-items: center;

	gap: 6px;
	height: 100%;
	border: 1px solid #eceae587;
	border-radius: var(--s-border-radius);
	padding: 5px 18px;
	background-image: linear-gradient(to bottom right, var(--gradient1), var(--gradient2));

	font-weight: 500;
	color: #fff;
}

.follow-check-btn .check-icon {
	display: block;

	width: var(--font-size);
	height: var(--font-size);
	color: #fff;
}

.follow-check-btn:not(.following) .check-icon {
	display: none;
}

.manage-btn {		
	display: inline-flex;
	justify-content: center;
	align-items: center;

	height: 100%;
	aspect-ratio: 1/1;
	border: 1px solid #eceae587;
	border-radius: calc(var(--s-border-radius) * 1000);
	box-shadow: inset 4px 4px 6px var(--base-color), 2px 2px 4px var(--base-color3);
	background-color: var(--content-background-color);

	font-weight: 500;
	color: var(--base-color7);
}

.manage-icon {
	width: calc(var(--font-size) + 3px);
	height: calc(var(--font-size) + 3px);
	fill: var(--point-color);
	color: var(--point-color);

	transition: transform var(--transition);
}

.manage-btn:hover .manage-icon {
	transform: rotate(180deg);
}

.follow-wrap {
	opacity: 0;

	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	background-color: transparent;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);

	transition: opacity var(--transition);
}

.follow-wrap:not(.active) {
	display: none;
}

.follow-box {
	display: flex;

	flex-wrap: wrap;
	justify-content: center;
	align-items: center;

	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 450px;
	border: 1px solid var(--base-color4);
	border-radius: var(--s-border-radius);
	background-color: var(--content-background-color);

	text-align: center;
}

.follow-alert {
	width: 100%;
	padding: 20px;

	font-weight: 600;
}

.follow-img {
	width: 50px;
	height: 50px;
	border-radius: 100%;
}

.follow-desc {
	width: 100%;
	border-bottom: 1px solid var(--base-color4);
	padding: 20px;
}

.follow-cancel { 
	width: 50%;
	border-left: 1px solid var(--base-color4);
	padding: 10px;

	color: var(--base-color5);
}

.follow-btn {
	width: 50%;
	padding: 10px;

	color: var(--point-color);
}


/* ───────────────────────────────────────────────────────── */
/* 문구변경 */
/* ───────────────────────────────────────────────────────── */

.follow-check-btn::before { 
	content:"FOLLOW";

	font-size: calc(var(--font-size) - 1px);
	font-weight: 600;
}

.follow-cancel::before {
	content: "안 할래요";
}

.follow-btn-message::before {
	content: "할래요!";
}

.follow-alert::after {
	content: "이 블로그를 ⭐구독 하시겠어요?";

	font-weight: normal;
}

.following .follow-alert::after {
	content: "구독을 취소하시겠어요?";
}

.follow-desc::after {
	content: "구독하시면 새 글 알림을 받아 보실 수 있어요!"
}

/* ───────────────────────────────────────────────────────── */


.sidebar.open { 
	align-items: center;

	padding: 30px 25px 25px 25px;
}

.sidebar.open .title-img { 
	flex-shrink: 0;

	width: 50px; 
	height: 50px; 
	margin: 0; 
	box-shadow: 5px 3px 0px var(--base-color4)
}

.sidebar.open .title-img {
	align-self: flex-start;
}

.sidebar.open .blog-info {
	flex: 1;

	padding-top: 0;
	padding-left: 20px;

	text-align: left;
}

.sidebar.open .blogger { 
	justify-content: flex-start;
}

.sidebar.open .blogger-link { 
	margin-left: 0; 
}

.sidebar.open .blog-desc {
	display: none;
}

.sidebar.open .blog-desc2 {
	display: block;
}

.sidebar.open .aside-btn { 
	display: none; 
}

.sidebar.open.scroll {
	max-height: var(--sidebar-height);
	overflow-y: scroll;
}

.sidebar.scroll::-webkit-scrollbar {
	width: 8px;
}

.sidebar.scroll::-webkit-scrollbar-thumb {
	border: 2px solid var(--content-background-color);
	border-radius: 20px;
	background-color: var(--base-color4);
}

.sidebar.scroll::-webkit-scrollbar-button:vertical:start:decrement,
.sidebar.scroll::-webkit-scrollbar-button:vertical:start:increment {
	display: block;
	height: 10px;
}

.sidebar.scroll::-webkit-scrollbar-button:vertical:end:decrement,
.sidebar.scroll::-webkit-scrollbar-button:vertical:end:increment {
	display: block;
	height: 10px;
}

.aside-sitemap { 
	visibility: hidden;
	opacity: 0;

	width:100%;
}

.aside-sitemap:not(.active) {
	display: none;
}

/* ───────────────────────────────────────────────────────── */





/* ───────────────────────────────────────────────────────── */
/* 카테고리 */
/* ───────────────────────────────────────────────────────── */

.category {
	width: 100%;
	margin-top: 20px;
	border-top: 1px solid var(--base-color4);

	font-weight: 500;
	text-align: left;
}

.category::before {
	content: "category";
	display: block;

	padding: 20px 0px 0 0px;

	font-weight: bold;
	text-transform: uppercase;
}

.category a::before {
	margin-right: 5px;
}

.category .link_tit {
	display: flex;
	align-items: center;
	
	padding: 15px 0px 10px 0px;
}

.category_list li a {
	display: flex;
	align-items: center;

	padding: 10px 0px;
}

.category_list li .link_sub_item {
	padding: 10px 0px 10px 20px;
}

.category_list > li.selected a:not(.link_sub_item) {
	color: var(--point-color2);
}

.sub_category_list > li.selected a {
	color: var(--point-color2);
}

.all-hide .link_tit {
	display: none;
}

.sub-hide .has-sub {
	display: flex;
	gap: 5px;
}

.sub-hide .has-sub .link_item {
	width: 100%;
}

.sub-hide .sub-open-btn {
	display: flex;
	align-items: center;
	
	flex-shrink: 0;
}

.on .sub-open-btn {
	transform: rotate(-180deg);
}

.sub-hide .open-icon {
	width: calc(var(--font-size) + 2px);
	height: calc(var(--font-size) + 2px);
	color: var(--point-color);
}

.sub-hide .sub_category_list {
	display: none;
}

.sub-hide .sub_category_list.on {
	display: block;
	padding-left: 20px;
}

.c_cnt {
	order: 1;
	
	margin-left: auto;
	border-radius: calc(var(--s-border-radius) - 10px);
	box-shadow: inset 2px 2px 5px var(--base-color3), inset -3px -3px 7px var(--base-color);
	padding: 0 7px;

	font-weight: bold;
	color: var(--point-color2);
}

.category .new-icon {
	display: inline-block;

	margin-left: 10px;

	font-size: calc(var(--font-size) - 2px);
	font-weight: normal;
	color: var(--point-color);
}


/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.link_tit::before {
	content: "📁";
}

.link_item::before {
	content: "🖤";
}

.link_sub_item::before {
	content: "💛";
}

/* 링크별로 이모지 다르게 하고 싶으면 주석 해제 후 순서대로 입력
방법 1)
*영문 대소문자 정확하게* 한글은 유니코드 입력
.link_item[href="/category/카테고리명"]::before {
	content: "";
}

.link_sub_item[href="/category/상위카테고리명/하위카테고리명"]::before {
	content: "";
}

방법2)카테고리 순서로 입력
두번째 카테고리에 이모지 지정
.category_list > li:nth-child(2) a::before {
	content: "";
}

두번째 카테고리의 첫번째 하위 카테고리에 이모지 지정
.category_list > li:nth-child(2) .sub_category_list li:nth-child(1) a::before {
	content: "";
}
*/
/* ───────────────────────────────────────────────────────── */

/* ───────────────────────────────────────────────────────── */
/* 문구변경 */

.category .new-icon::before {
	content: "N";
}

/* ───────────────────────────────────────────────────────── */





/* ───────────────────────────────────────────────────────── */
/* 커버 */
/* ───────────────────────────────────────────────────────── */


/* 공통 */

.cover {
	position: relative;
}

.cover-wrap {
	opacity: 0;

	position: relative;
	transform: translateX(60px) translateZ(0);

	margin-top: var(--s-item-gutter);

	transition: transform 0.5s 0.2s cubic-bezier(0.4, 0, 1, 1), opacity 0.3s cubic-bezier(0.4, 0, 1, 1);
}

.cover-wrap.transition {
	transform: translateX(0) translateZ(0);
}

.cover-wrap:first-child {
	margin-top: 0;
}

.cover-headline {
	display: flex;
	justify-content: space-between;

	width: 100%;
	margin-bottom: 20px;
}

.cover-headline strong {
	border-radius: calc(var(--s-border-radius) - 5px);
	padding: 4px 12px;
	background-image: linear-gradient(to bottom right, var(--gradient1), var(--gradient2));

	font-family: "Open sans", "Pretendard";
	font-weight: 500;
	text-transform: capitalize;
	color: #fff;
}

.cover-cate {
	text-transform: capitalize;
}

.cover-view {
	display: flex;
	justify-content: space-between;
	align-items: center;
	
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	padding: 5px;

	transition: all var(--transition);
}

.cover-wrap:hover .cover-view {
	opacity: 1;
}

.view-left, .view-right {
	display: inline-flex;
	justify-content: center;
	align-items: center;

	position: relative;
	z-index: 99;

	width: 25px;
	height: 25px;
	border: 1px solid var(--base-color4);
	border-radius: calc(var(--s-border-radius) * 1000);
	background-color: #fffc;

	line-height: 0;

	cursor: pointer;
}

.view-left.transparent,
.view-right.transparent {
	opacity: 0;

	pointer-events: none;
} 

.view-icon {
	width: 19px;
	height: 19px;
	color: var(--point-color);
}

.cover-img {
	transform: translateZ(0);
}

.cover-sum {
	width: 100%;
	overflow: hidden;

	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.cover-wrap .cover-noimg::before {
	content: "🫥";

	display: block;
}

/* ───────────────────────────────────────────────────────── */


/* 커버 - 하이라이트 */

.cover-highlight {
	position: relative;

	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	padding: var(--content-padding) 0;
	background: var(--content-background-color);
}

.cover-highlight .cover-container {
	display: flex;

	position: relative;
	z-index: 2;

	gap: var(--cover-highlight-gutter);
	overflow-x: scroll;

	scrollbar-width: none;
}

.cover-highlight .cover-container::-webkit-scrollbar {
	display: none;
}

.cover-highlight .cover-item {
	position: relative;
	flex-shrink: 0;

	width: var(--cover-highlight-img);

	cursor: pointer;
}

.cover-highlight .cover-container > div:first-child {
	margin-left: var(--content-padding);
}

.cover-highlight .cover-item:last-child {
	margin-right: var(--content-padding);
}

.cover-highlight .cover-item:is(.first, .second) .cover-img-wrap {
	border: 3px solid transparent;
	background-image: linear-gradient(to bottom left, var(--gradient1), var(--gradient2));
	background-origin: border-box;
}

.cover-highlight .cover-img-wrap {
	display: flex;

	position: relative;

	border-radius: calc(var(--s-border-radius) * 1000);
	border: 2px solid var(--base-color4);
}

.cover-highlight .cover-img, .cover-highlight .cover-item .cover-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
	border: 3px solid #fff;
	border-radius: calc(var(--s-border-radius) * 1000);
	background-color: var(--base-color4);
}

.cover-highlight .cover-img {
	position: relative;
	z-index: 2;
}

.cover-highlight .cover-item-btn {
	position: relative;
	flex-shrink: 0;

	width: var(--cover-highlight-img);
}

.cover-highlight .cover-item-btn.write-btn::after {
	content: "+";
	position: absolute;
	z-index: 5;
	top: calc(100% - 54px);
	left: calc(100% - 27px);

	border-radius: calc(var(--s-border-radius) * 1000);
	padding: 0px 7px;
	background: var(--point-color2);

	font-weight: bold;
	color: #fff;
}

.cover-highlight .cover-img + .cover-noimg {
	position: absolute;
	z-index: 1;
}

.cover-highlight .cover-title {
	display: block;
	
	width: 100%;
	margin-top: 7px;
	padding-left: 3px;
	overflow: hidden;

	font-size: calc(var(--font-size) - 1px);
	color: var(--font-color);
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/* 커버 - 하이라이트 내부 공통 */

.highlight-background {
	opacity: 0;

	position: fixed;
	z-index: 11;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;	

	width: 100%;
	
	transition: opacity var(--transition);
}

.highlight-background::after {
	content: "";
	
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;

	background: #ffffff50;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.highlight-background:not(.active) {
	display: none;
}

.highlight-group {
	display: flex;
	justify-content: center;
	align-items: center;

	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.highlight24-container {
	position: relative;
}

.highlight24-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	opacity: 0;

	position: absolute;
	z-index: 999;

	top: 30px;
	right: 30px;

	border: 1px solid var(--base-color6);
	border-radius: calc(var(--s-border-radius) * 1000);
	padding: 3px;
	background-color: #fff5;
}

.highlight24-btn .remove-icon {
	width: 14px;
	height: 14px;
	margin: 0;
	color: var(--base-color6);
}

.highlight-prev,
.highlight-next {
	display: inline-flex;
	justify-content: center;
	align-items: center;

	position: relative;
	z-index: 99;

	width: 25px;
	height: 25px;
	margin: 10px;
	border: 1px solid var(--base-color4);
	border-radius: calc(var(--s-border-radius) * 1000);
	background-color: var(--content-background-color);

	line-height: 0;

	cursor: pointer;
}

.highlight-prev.transparent,
.highlight-next.transparent {
	opacity: 0;

	pointer-events: none;
} 

.highlight-icon {
	width: 19px;
	height: 19px;
	color: var(--point-color);
}

.highlight24 {
	opacity: 0;

	position: relative;

	width: var(--cover-highlight24-width);
	aspect-ratio: var(--cover-highlight24-ratio);
	border-radius: var(--s-border-radius);
	overflow: hidden;
	
	transition: opacity var(--transition);
}


/* 커버 - 하이라이트1 내부 */

.highlight24.first {
	overflow: hidden;
}

.highlight24.first .highlight24-svg {
	position: absolute;

	transform: scale(1.3);

	width: 100%;
	height: 100%;
}

.ytb-play-btn {
	display: none;
}

.highlight24.first.has-ytb .ytb-play-btn {
	display: flex;
	justify-content: center;
	align-items: center;

	position: absolute;
	z-index: 9;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.01);

	width: 100%;
	aspect-ratio: 16/9;

	transition: all 0.5s 0.2s;

	background-size: cover;
}

.ytb-play-btn.play {
	opacity: 0;
	visibility: hidden;

	transition: opacity var(--transition);
}

.play-wrap {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 80px;
	height: 55px;
	border-radius: 20px;
	background-image: linear-gradient(to bottom right, var(--gradient1), var(--gradient2));
}

.ytb-play-btn .play-icon {
	width: 20px;
	height: 20px;
	color: #fff;
}

.highlight24.first #highlight24-backimage {
	width: 100%;
	height: 100%;
}

.highlight24.first .highlight24-user-info {
	display: flex;

	position: absolute;
	left: 0;

	align-items: center;

	gap: 10px;
	width: 100%;
	padding: 20px;
	background-color: #fff5;
}

.highlight24.first .highlight24-user-info::before {
	content: "";

	position: absolute;
	top: 20px;
	left: 20px;

	width: 40px;
	height: 40px;
	border-radius: 100%;

	animation: shadow 0.9s linear infinite reverse both;
}

.highlight24.first .highlight24-user-img {
	width: 40px;
	height: 40px;
	border: 3px solid #fff5;
	border-radius: 100%;
}

.highlight24.first .highlight24-user-name {
	position: absolute;
	left: 80px;

	color: #fff;
}

.highlight24.first .highlight24-content {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);

	width: 100%;
}

.highlight24.first .highlight24-responsive {
	overflow: hidden;
}

.highlight24.first iframe {
	display: block;
	opacity: 0.99;

	transform: scale(1.01);

	width: 100%;
	height: 100%;
	border-radius: 0;
}

.highlight24.first .highlight24-content img {
	width: 100%;
	aspect-ratio: 16/9;
	object-fit: cover;
}

.highlight24.first .highlight24-desc {
	position: absolute;
	z-index: 10;
	top: var(--highlight-y1);
	left: var(--highlight-x1);
	transform: var(--highlight-d-rotate1);
	
	margin-right: 20px;
}

.highlight24.first .highlight24-desc-text {
	display: block;

	word-break: keep-all;
	white-space: pre-wrap;
}

/* 텍스트에 배경 */
.highlight24.first.type-textback .highlight24-desc-text {
	display: inline;

	border-radius: 5px;
	padding: 5px 7px 7px 7px;
	background: var(--highlight-d-background1);

	color: var(--highlight-d-color1);
	line-height: 1;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

/* 배경 */
.highlight24.first.type-background .highlight24-desc-text {
	background: var(--highlight-d-background1);

	font-size: calc(var(--font-size) + 1px);
	color: var(--highlight-d-color1);
	line-height: 1;
}

/* 텍스트에 밑줄 */
.highlight24.first.type-underline .highlight24-desc-text {
	font-size: calc(var(--font-size) + 1px);
	color: var(--highlight-d-color1);
	text-decoration: underline;
}

/* 텍스트에 그림자 */
.highlight24.first.type-shadow .highlight24-desc-text {
	font-size: calc(var(--font-size) + 1px);
	color: var(--highlight-d-color1);
	text-shadow: 1px 1px 1px var(--highlight-d-background1), 1px 1px 1px var(--highlight-d-background1), 1px 1px 1px var(--highlight-d-background1);
}

/* 텍스트만 */
.highlight24.first.type-text .highlight24-desc-text {
	font-size: calc(var(--font-size) + 3px);
	font-family: "Kanit", "Pretendard";
	color: var(--highlight-d-color1);
	line-height: 1.3;
	letter-spacing: -1px;
}


/************************************************************************/

/* 커버 - 하이라이트2 내부 */

.highlight24.second {
	padding: 20px;
}

.highlight24.second .highlight24-backimage {
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
}

.highlight24.second .highlight24-user-info {
	display: flex;
	align-items: center;

	position: relative;
	z-index: 2;

	gap: 10px;
}

.highlight24.second .highlight24-user-info::before {
	content: "";

	position: absolute;
	top: 0px;
	left: 0px;

	width: 40px;
	height: 40px;
	border-radius: 100%;

	animation: shadow 0.9s linear infinite reverse both;
}

@keyframes shadow {
	0% {
		box-shadow: 0px 0px 0px 0px #fff7;
	}
	100% {
		box-shadow: 0px 0px 0px 7px #fff1;
	}
}

.highlight24.second .highlight24-user-img {
	width: 40px;
	height: 40px;
	border: 3px solid #fff5;
	border-radius: 100%;
}

.highlight24.second .highlight24-user-name {
	position: absolute;
	left: 60px;

	color: #fff;
}

.highlight24.second .highlight24-bottom {
	position: absolute;
	top: 25px;
	left: 50%;
	transform: translateX(-50%);

	width: -moz-fit-content;
	width: fit-content;
	margin-left: 20px;
}

.highlight24.second .highlight24-bottom::after {
	display: inline-block;
	border-radius: calc(var(--s-border-radius) - 5px);
	padding: 4px 10px;
	font-size: calc(var(--font-size) + 2px);
	background: #fff9;
	letter-spacing: 3px;
}

.highlight24.second .highlight24-url {
	position: absolute;
	top: var(--highlight-t-y2);
	left: var(--highlight-t-x2);
	
	margin-top: 30px;

	font-size: calc(var(--font-size) + 1px);
	color: var(--highlight-t-color2);
	text-decoration: underline;
}

.highlight24.second .highlight24-desc {
	position: absolute;
	left: var(--highlight-x2);
	top: var(--highlight-y2);
	transform: var(--highlight-d-rotate2);

	margin-right: 20px;
}

.highlight24.second .highlight24-desc-text {
	display: block;

	word-break: keep-all;
}

/* 텍스트에 배경 */
.highlight24.second.type-textback .highlight24-desc-text {
	display: inline;

	border-radius: 5px;
	padding: 5px 7px 7px 7px;
	background: var(--highlight-d-background2);

	color: var(--highlight-d-color2);

	line-height: 1;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

/* 배경 */
.highlight24.second.type-background .highlight24-desc-text {
	padding: 10px;
	background: var(--highlight-d-background2);

	font-size: calc(var(--font-size) + 1px);
	color: var(--highlight-d-color2);
}

/* 텍스트에 밑줄 */
.highlight24.second.type-underline .highlight24-desc-text {
	font-size: calc(var(--font-size) + 1px);
	color: var(--highlight-d-color2);
	text-decoration: underline;
}

/* 텍스트에 그림자 */
.highlight24.second.type-shadow .highlight24-desc-text {
	font-size: calc(var(--font-size) + 1px);
	color: var(--highlight-d-color2);
	text-shadow: 1px 1px 1px var(--highlight-d-background2), 1px 1px 1px var(--highlight-d-background2), 1px 1px 1px var(--highlight-d-background2);
}

/* 텍스트만 */
.highlight24.second.type-text .highlight24-desc-text {
	font-size: calc(var(--font-size) + 3px);
	font-family: "Kanit", "Pretendard";
	color: var(--highlight-d-color2);
	line-height: 1.3;
	letter-spacing: -1px;
}

/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.highlight24.second .highlight24-bottom::after {
	content: "🐱😸😻🤭🎈❤️";
}

/* ───────────────────────────────────────────────────────── */


/* ───────────────────────────────────────────────────────── */
/* 문구변경 */
/* ───────────────────────────────────────────────────────── */

.highlight24.second .highlight24-desc-text::after {
	content: "";

	white-space: pre-wrap;
}

/* ───────────────────────────────────────────────────────── */


/* 커버 - 하이라이트 - 글 미리보기 */

.highlight24-item {
	border: 1px solid var(--base-color4);
	padding: 20px 30px;
	background-color: var(--content-background-color);
}

.highlight24-item .highlight24-user-img {
	width: 40px;
	height: 40px;
	border-radius: calc(var(--s-border-radius) * 1000);
	padding: 5px;
	box-shadow: inset 2px -2px 6px var(--base-color5), 0px 0px 6px var(--base-color);
}

.highlight24-item .highlight24-user-info {
	display: flex;
	align-items: center;

	gap: 10px;
	margin-bottom: 10px;
}

.highlight24-img {
	width: 100%;

	aspect-ratio: 1/1;
	object-fit: cover;
	margin: 10px 0 30px 0;
	border-radius: var(--s-border-radius);
	box-shadow: 0px 3px 8px var(--base-color5);
}

.highlight24 .highlight24-img+.cover-noimg {
	display: none;
}

.highlight24 .cover-noimg {
	display: inline-flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	aspect-ratio: 1/1;
	margin: 10px 0 37px 0;
	border: 1px solid var(--base-color4);
	border-radius: var(--s-border-radius);
	background-color: var(--base-color2);

	font-size: 80px;
}

.highlight24-cate {
	font-weight: 500;
	color: var(--point-color);
	text-transform: capitalize;
}

.highlight24-title {
	display: block;

	overflow: hidden;

	font-size: calc(var(--font-size) + 1px);
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.highlight24-sum {
	display: -webkit-box;
	
	margin-top: 10px;
	overflow: hidden;

	color: var(--base-color7);
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}


/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.highlight24 .cover-noimg::after {
	content: "🫥";

	display: block;
}

/* ───────────────────────────────────────────────────────── */


/* 커버 - 디데이 */

.cover-dday {
	display: flex;

	gap: 20px;
}

.cover-dday .cover-point {
	opacity: 0;

	position: absolute;
	right: 30px;

	margin-top: 7px;

	font-size: calc(var(--font-size) - 3px);
	color: var(--point-color);
	text-align: right;
	line-height: 1.2;

	transition: opacity var(--transition);
}

.cover-dday:hover .cover-point {
	opacity: 1;
}

.cover-dday .cover-day-container {
	display: flex;

	flex-wrap: wrap;
	justify-content: center;
	align-content: center;

	position: relative;

	min-width: 140px;
	border-radius: var(--s-border-radius);
	padding: 25px 20px;
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);
	background-size: cover;
	overflow: hidden;
}

.cover-dday .cover-img {
	display: none;
}

.cover-dday .cover-date {
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-image: linear-gradient(to bottom right, var(--gradient1), var(--gradient2));

	font-size: 0;
	font-family: "Shrikhand", "Pretendard";
	text-align: center;
}

.cover-dday :where(.date-year, .date-month, .date-day) {
	display: inline-block;

	font-size: 20px;
	line-height: 1.2;
}

.cover-dday .date-year {
	display: block;

	font-weight: 400;
}

.cover-dday .date-month, .cover-dday .date-day {
	font-weight: 300;
}

.cover-dday .cover-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	flex-grow: 1;

	border-radius: var(--s-border-radius);
	padding: 25px 20px;
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--dday-background-color);

	font-family: "Poppins", "Pretendard";
}

.cover-dday .cover-sum {
	display: flex;
	flex-wrap: wrap;
	align-items: center;

	gap: 5px;
	width: 100%;
	margin-bottom: 10px;

	font-size: calc(var(--font-size) + 2px);
} 

.cover-dday .d-day {
	display: inline-block;
}

.cover-dday .dday-icon {
	width: calc(var(--font-size) + 3px);
	height: calc(var(--font-size) + 3px);
	color: var(--point-color);
	stroke-width: 1.5px;
}


/* ───────────────────────────────────────────────────────── */
/* 문구변경 */
/* ───────────────────────────────────────────────────────── */

.cover-dday.type-anniversary .cover-point::after {
	content: "Count by starting\A from the next day";

	white-space: pre;
}

.cover-dday.type-anniversary.type-current .cover-point::after {
	content: "Count by including\A the current day";
}

/* ───────────────────────────────────────────────────────── */


/* 커버 - 링크 */

.cover-link {
	opacity: 0;
}

.cover-link .cover-container {
	display: grid;
	grid-template-columns: repeat(var(--cover-link-thumb), minmax(0, 1fr));

	gap: 20px;
}

.cover-link .cover-item {
	position: relative;

	width: 100%;
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	padding: 40px var(--content-padding);
	background: var(--content-background-color);

	text-align: center;
}

.cover-link .cover-item.no-href {
	pointer-events: none;
	cursor: default;
}

.cover-link .cover-item:hover {
	transform: translateY(-5px);
}

.cover-link .cover-item::after {
	content: "";
	opacity: 0;
	
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	border-radius: inherit;
	box-shadow: 0px 4px 4px 0px var(--shadow-color);

	transition: all var(--transition);
}

.cover-link .cover-item:hover::after {
	opacity: 1;
}

.cover-link .link-emoji {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 100px;
	max-width: 60%;
	aspect-ratio: 1/1;
	margin: 0 auto 10px auto;
	border: 1px solid var(--base-color4);
	border-radius: calc(var(--s-border-radius) * 1000);
	box-shadow: inset -2px -2px 4px var(--base-color), inset 2px 2px 4px var(--base-color3);
	padding: 30px;
	background: var(--background-color);

	font-size: 30px;
	line-height: 0;
}

.cover-link .cover-title {
	display: block;

	font-weight: 600;
}

.cover-link.type-horizontal .cover-item {
	display: flex;
	align-items: center;

	gap: 20px;
	padding: var(--content-padding);
}

.cover-link.type-horizontal .link-emoji {
	flex-shrink: 0;

	width: 60px;
	max-width: 40%;
	margin: 0;

	font-size: 20px;
}

.cover-link.type-horizontal .cover-sum {
	text-align: left;
}


/* 커버 - 공지 */

.cover-notice {
	opacity: 0;
}

.cover-notice .cover-container {
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);
	overflow: hidden;
}

.cover-notice .cover-container + .cover-container {
	margin-top: var(--s-item-gutter);
}

.cover-notice .cover-headline {
	position: absolute;
	z-index: 2;

	width: 100%;
	border: 0;
	padding: 20px;
}

.cover-notice .cover-item {
	display: flex;
	
	padding: 0;
	overflow: hidden;
}

.cover-notice .cover-img {
	max-width: 100%;
	height: auto;
	border-radius: var(--s-border-radius) var(--s-border-radius) 0 0;
	box-shadow: 0px 3px 3px 0px var(--base-color6);

	transition: all var(--transition);
}

.cover-notice.empty-sum .cover-img {
	width: 100%;
	box-shadow: none;
}

.cover-notice .cover-container:has(.cover-item .empty-sum) {
	box-shadow: none;
}

.cover-notice .cover-img:hover {
	filter: contrast(0.8)
}

.cover-notice .cover-sum {
	padding: 60px 25px 25px 25px;
}

.cover-notice .cover-sum > a {
	display: inline-block;

	position: relative;

	margin: 5px 10px 5px 0;
	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	padding: 4px 14px;

	font-weight: 600;
	text-transform: capitalize;

	transition: transform var(--transition), box-shadow var(--transition);
}

.cover-notice .cover-sum > a:hover {
	transform: translateY(3px) translateZ(0);

	box-shadow: inset 0px -2px 2px var(--base-color), inset 0px 2px 4px var(--base-color3);
}

.cover-notice .cover-sum > a::after {
	content: "";

	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	box-shadow: 0px -2px 2px var(--base-color), 0px 2px 2px var(--base-color3);

	transition: opacity var(--transition);
}

.cover-notice .cover-sum > a:hover::after {
	opacity: 0;
}

.cover-notice .cover-img+.cover-sum {
	padding: 20px 25px 25px 25px;
}


/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.cover-notice .cover-sum > a::before {
	content: "⭐";

	margin-right: 4px;
}

/* 링크별로 이모지 다르게 하고 싶으면 주석 해제 후 순서대로 입력

.cover-notice .cover-sum > a:nth-of-type(2)::before {
	content: "";
}

.cover-notice .cover-sum > a:nth-of-type(3)::before {
	content: "";
}
*/

/* ───────────────────────────────────────────────────────── */


/*커버 - 태그 */

.cover-tag .cover-container {
	display: flex;
	flex-wrap: wrap;

	gap: 15px;
	border-radius: var(--s-border-radius);
	padding: 25px 20px;
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);
}

.cover-tag .cover-item {
	display: inline-flex;
	align-items: center;

	border: 1px solid #eceae587;
	border-radius: var(--s-border-radius);
	box-shadow: inset 4px 4px 6px var(--base-color), 2px 2px 4px var(--base-color3);
	padding: 5px 12px;
	background-color: var(--base-color2);

	font-size: calc(var(--font-size) - 1px);
	font-weight: 500;
	color: var(--base-color7);
	
	cursor: pointer;
}

.cover-tag .cover-item::before {
	content: "#";
	margin: 0 2px
}

.cover-tag .cover-item.tag-more::before {
	content: none;
}

.cover-tag .cover-img:hover {
	filter: contrast(0.8)
}

.cover-tag .cover-sum {
	padding: 60px 25px 25px 25px;
}

.cover-tag .cover-img+.cover-sum {
	padding: 20px 25px 25px 25px;
}

/* 커버 - 리스트 */

.cover-list {
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);
	overflow: hidden;
}

.cover-list .cover-headline {
	margin: 0;
	border: 0;
	padding: 20px;
}

.cover-list .cover-item {
	display: flex;
	justify-content: flex-start;
	align-items: center;

	gap: 15px;
	border-bottom: 1px solid var(--base-color4);
	padding: 15px 25px;
}

.cover-list .cover-item:last-child {
	border-bottom: 0;
}

.cover-list .cover-item:hover {
	background-color: var(--base-color2);
}

.cover-list .cover-img {
	flex-shrink: 0;

	width: 50px;
	height: 50px;
	aspect-ratio: 1/1;
	border-radius: 60% 30% 30% 60%/50% 40% 40% 50%;
}

.cover-list .cover-info {
	overflow: hidden;
}

.cover-list .cover-title {
	display: block;

	overflow: hidden;

	font-weight: 700;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.cover-list .cover-sum {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/* 커버 - 피드 */

.cover-feed .cover-item {
	display: flex;

	position: relative;
	
	gap: var(--content-padding);
	border-radius: var(--s-border-radius);
	padding: var(--content-padding);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);
}

.cover-feed .cover-item + .cover-item {
	margin-top: var(--cover-feed-gutter);
}

.cover-feed .cover-item:hover {
	transform: translateY(-5px) translateZ(0);
}

.cover-feed .cover-item::after {
	content: "";
	opacity: 0;
	
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	border-radius: inherit;
	box-shadow: 0px 4px 4px 0px var(--shadow-color);

	transition: opacity 0.5s;
}

.cover-feed .cover-item:hover::after {
	opacity: 1;
}

.cover-feed .cover-thumb {
	display: flex;
	justify-content: center;
	align-items: center;

	flex-shrink: 0;

	width: 30%;
	aspect-ratio: var(--cover-feed-ratio);
	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	background-color: var(--base-color2);
	overflow: hidden;
}

.cover-feed .cover-img {
	position: relative;
	z-index: 2;

	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cover-feed .cover-noimg {
	font-size: 40px;
}

.cover-feed .cover-img + .cover-noimg {
	position: absolute;
	z-index: 1;
}

.cover-feed .cover-info {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;

	width: calc(70% - var(--content-padding));
}

.cover-feed .cover-user-info {
	display: flex;
	align-items: center;

	position: absolute;
	bottom: var(--content-padding);

	gap: 10px;
	margin-bottom: 5px;
}

.cover-feed .cover-user-img {
	width: 25px;
	height: 25px;
	border-radius: 100%;
}

.cover-feed .cover-date {
	font-size: calc(var(--font-size) - 1px);
}

.cover-feed .cover-date::before {
	content: "─";

	padding-right: 10px;
}

.cover-feed .cover-title {
	display: block;

	width: 100%;
	margin-bottom: 10px;

	font-size: calc(var(--font-size) + 2px);
	font-weight: 600;
}

.cover-feed .cover-cate-wrap {
	position: absolute;
	z-index: 3;
	top: 40px;
	left: 40px;

	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	padding: 2px 12px;
	background-color: #fff;

	font-size: calc(var(--font-size) - 2px);
}

.cover-feed .cover-cate {
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-image: linear-gradient(to bottom right, var(--gradient1-deep), var(--gradient2-deep));
}

.cover-feed .cover-sum {
	display: -webkit-box;
	
	width: 100%;
	overflow: hidden;

	line-height: 1.5;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}


/* 커버 - 피드2 */

.cover-feed2 .cover-item {
	display: flex;
	flex-wrap: wrap;

	position: relative;
	
	gap: var(--content-padding);
	border-radius: var(--s-border-radius);
	padding: var(--content-padding);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);
}

.cover-feed2 .cover-item + .cover-item {
	margin-top: var(--cover-feed-gutter);
}

.cover-feed2 .cover-item:hover {
	transform: translateY(-5px) translateZ(0);
}

.cover-feed2 .cover-item::after {
	content: "";
	opacity: 0;
	
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	border-radius: inherit;
	box-shadow: 0px 4px 4px 0px var(--shadow-color);

	transition: opacity 0.5s;
}

.cover-feed2 .cover-item:hover::after {
	opacity: 1;
}

.cover-feed2 .cover-thumb {
	display: flex;
	justify-content: center;
	align-items: center;

	flex-shrink: 0;

	width: 100%;
	aspect-ratio: var(--cover-feed-ratio2);
	margin-top: var(--content-padding);
	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	background-color: var(--base-color2);
	overflow: hidden;
}

.cover-feed2 .cover-img {
	position: relative;
	z-index: 2;

	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cover-feed2 .cover-noimg {
	font-size: 40px;
}

.cover-feed2 .cover-img + .cover-noimg {
	position: absolute;
	z-index: 1;
}

.cover-feed2 .cover-info {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;

	width: 100%;
}

.cover-feed2 .cover-user-info {
	display: flex;
	align-items: center;

	gap: 15px;
	width: 100%;
	margin-bottom: 5px;
}

.cover-feed2 .cover-user-img {
	width: 40px;
	height: 40px;
	border-radius: 100%;
}

.cover-feed2 .cover-user-info-wrap {
	line-height: 1.4;
}

.cover-feed2 .cover-user-name {
	font-weight: 600;
}

.cover-feed2 .cover-date {
	font-size: calc(var(--font-size) - 1px);
}

.cover-feed2 .cover-title {
	display: block;

	width: 100%;
	margin-bottom: 10px;

	font-size: calc(var(--font-size) + 2px);
	font-weight: 600;
}

.cover-feed2 .cover-sum {
	width: 100%;
	overflow: hidden;

	text-overflow: ellipsis;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.cover-feed2 .cover-cate-wrap {
	position: absolute;
	z-index: 3;
	right: var(--content-padding);

	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	padding: 2px 12px;
	background-color: #fff;

	font-size: calc(var(--font-size) - 2px);
}

.cover-feed2 .cover-cate {
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-image: linear-gradient(to bottom right, var(--gradient1-deep), var(--gradient2-deep));
}

.cover-feed2 .cover-sum {
	display: -webkit-box;
	
	width: 100%;
	overflow: hidden;

	line-height: 1.5;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

/************************************************************************/

/* 커버 - 갤러리 */

.cover-gallery {
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	padding: var(--content-padding);
	background: var(--content-background-color);
}

.cover-gallery .cover-container {
	display: grid;
	grid-template-columns: repeat(var(--cover-gallery-thumb), minmax(0, 1fr));

	position: relative;

	gap: var(--cover-gallery-gutter);
}

.cover-gallery .cover-item {
	display: block;

	position: relative;
}

.cover-gallery .cover-img {
	position: relative;
	z-index: 2;

	width: 100%;
	height: 100%;
	aspect-ratio: var(--cover-gallery-ratio);
	object-fit: cover;
	border-radius: calc(var(--s-border-radius) - 10px);

	transition: filter var(--transition);
}

.cover-gallery .cover-noimg {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	height: 100%;
	aspect-ratio: var(--cover-gallery-ratio);
	border: 1px solid var(--base-color4);
	border-radius: calc(var(--s-border-radius) - 10px);

	font-size: 40px;

	transition: background-color var(--transition);
}

.cover-gallery .cover-item:hover .cover-noimg {
	background-color: #0003;
}

.cover-gallery .cover-img + .cover-noimg {
	position: absolute;
	z-index: 1;
	top: 0;
}

.cover-gallery .cover-item:hover .cover-img {
	filter: brightness(0.7);
}

.cover-gallery .cover-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	opacity: 0;

	position: absolute;
	z-index: 3;
	top: 0;
	
	gap: 20px;
	width: 100%;
	height: 100%;
	padding: 20px;

	text-align: center;
	transition: opacity var(--transition);
}

.cover-gallery .cover-item:hover .cover-info {
	opacity: 1;
}

.cover-gallery .cover-title {
	display: block;

	width: 100%;

	font-size: calc(var(--s-content-width) / 60 + 8px);
	font-weight: 500;

	line-height: 1.2;
	color: #fff;
}

.cover-gallery .cover-sum {
	overflow: hidden;
	display: -webkit-box;

	width: 100%;

	line-height: 1.5;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	color: #fff;
}


/************************************************************************/

/* 커버 - 카드 */

.cover-card {
	position: relative;

	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	padding: var(--content-padding) 0;
	background: var(--content-background-color);
}

.cover-card .cover-headline {
	padding-left: var(--content-padding);
}

.cover-card .cover-container {
	display: flex;

	position: relative;
	z-index: 2;

	gap: var(--cover-card-gutter);
	overflow-x: scroll;

	scrollbar-width: none;
}

.cover-card .cover-container::-webkit-scrollbar {
	display: none;
}

.cover-card .cover-item {
	display: flex;
	flex-wrap: wrap;
	flex-shrink: 0;

	width: var(--cover-card-width);
	border: 1px solid var(--base-color4);
	border-radius: var(--s-border-radius);
	padding: 20px;
	background-color: var(--base-color2);
}

.cover-card .cover-item:first-child {
	margin-left: var(--content-padding);
}

.cover-card .cover-item:last-child {
	margin-right: var(--content-padding);
}

.cover-card .cover-info {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;

	overflow: hidden;
}

.cover-card .cover-cate {
	align-self: flex-start;
	width: 100%;

	color: var(--point-color);
}

.cover-card .cover-img-wrap {
	display: flex;
	align-items: flex-start;

	flex-shrink: 0;
	align-self: flex-end;	

	gap: 15px;
	overflow: hidden;
}

.cover-card .cover-img {
	width: 50px;
	aspect-ratio: 1/1;
	object-fit: cover;
	border: 1px solid var(--base-color5);
	border-radius: 50% 60% 60% 40%/50% 50% 50% 50%;
}

.cover-card .cover-title {
	display: -webkit-box;

	width: 100%;
	margin-top: 10px;
	margin-bottom: 20px;
	overflow: hidden;

	font-size: calc(var(--font-size) + 2px);
	font-weight: bold;

	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.cover-card .cover-date {
	align-self: flex-end;

	width: 100%;
	margin-top: 20px;
	font-size: calc(var(--font-size) - 2px);

	text-align: right;
}

.cover-card .cover-sum {
	display: -webkit-box;

	overflow: hidden;

	font-size: calc(var(--font-size) - 1px);
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}


/************************************************************************/

/* 커버 - 리뷰 */

.cover-review {
	opacity: 0;
	
	position: relative;

	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	padding: var(--content-padding) 0;
	background: var(--content-background-color);
}

.cover-review .cover-headline {
	padding-left: var(--content-padding);
}

.cover-review .cover-container {
	display: flex;

	position: relative;
	z-index: 2;

	gap: var(--cover-review-gutter);
	overflow-x: scroll;

	scrollbar-width: none;
}

.cover-review .cover-container::-webkit-scrollbar {
	display: none;
}

.cover-review .cover-item {
	display: flex;
	
	flex-shrink: 0;
	position: relative;

	width: var(--cover-review-width);
	aspect-ratio: var(--cover-review-ratio);
	border: 1px solid var(--base-color4);
	border-radius: var(--s-border-radius);
}

.cover-review .cover-item:first-child {
	margin-left: var(--content-padding);
}

.cover-review .cover-item:last-child {
	margin-right: var(--content-padding);
}

.cover-review .cover-img {
	position: relative;
	z-index: 2;

	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--s-border-radius);
}

.cover-review .cover-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	
	width: 100%;
	height: 100%;
	border-radius: var(--s-border-radius);
	background-color: var(--base-color2);

	font-size: 30px;
}

.cover-review .cover-img + .cover-noimg {
	position: absolute;
	z-index: 1;
}

.cover-review .cover-info {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-end;

	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	border-radius: var(--s-border-radius);
	padding: 20px;
	background-color: #0003;

	color: #fff;

	transition: opacity var(--transition), background-color var(--transition);
}

.cover-review .cover-item:hover .cover-info {
	opacity: 0;

	background-color: transparent;
}

.cover-review .cover-cate-wrap {
	position: absolute;
	top: 20px;

	width: -moz-fit-content;
	width: fit-content;

	margin-left: -2px;
	margin-bottom: 10px;
	border-radius: var(--s-border-radius);
	padding: 3px 10px;
	background-color: #fff;

	font-size: calc(var(--font-size) - 2px);
}

.cover-review .cover-cate {
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-image: linear-gradient(to bottom right, var(--gradient1-deep), var(--gradient2-deep));
}

.cover-review .cover-title {
	display: block;
	
	width: 100%;
	margin-bottom: 5px;
	overflow: hidden;

	font-size: calc(var(--font-size) + 2px);
	font-weight: bold;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cover-review {
	width: 100%;
}

.cover-review .cover-date {
	font-size: calc(var(--font-size) - 3px);
}

/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.cover-review .cover-date::before {
	content: "⏰";
	margin-right: 3px;
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 카테고리 화면 */
/* ───────────────────────────────────────────────────────── */


/* 공통 */

.search-list {
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);

	transition: all var(--transition);
}

.search-list + .article {
	margin-top: var(--s-item-gutter);
}

.search-list .list-img,
.search-list .list-cate,
.search-list .list-sum,
.search-list .list-user-info {
	display: none;
}

.search-list .list-category {
	display: inline-flex;
	align-items: center;

	width: 100%;
	padding: 30px 30px 0 30px;

	font-family: "Poppins", "Pretendard";
	text-transform: capitalize;
}

.search-list .list-category::before {
	content: "";
	display: inline-block;

	width: 30px;
	height: 2px;
	margin-right: 10px;
	background-color: var(--font-color);

	vertical-align: middle;
}

.search-list .list-item {
	display: block;
}

.search-list .list-cnt {
	margin-left: 8px;

	font-size: calc(var(--font-size) - 1px);
	font-weight: bold;
	color: var(--point-color);
}

.search-list .list-img {
	object-fit: cover;
}

.search-list .list-noimg {
	display: none;
}

.search-list .list-title {
	display: flex;
	align-items: center;
	gap: 6px;

	font-weight: 600;
	font-family: "Poppins", "Pretendard";
}

.search-list .title-content {
	overflow: hidden;

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

.search-list .list-date {
	color: var(--base-color7);
}

.search-list .list-item-cnt {
	display: inline-block;

	font-size: calc(var(--font-size) - 2px);
	font-family: "Pretendard";
	color: var(--base-color7);
}

.search-list .list-item-cnt:not(:empty)::before {
	content: "+";

	margin-right: 2px;
}

.search-list .new-icon {
	display: inline-block;

	margin-left: 6px;

	font-size: calc(var(--font-size) - 2px);
	font-family: "Pretendard";
	font-weight: normal;
	color: var(--point-color);
}

.list-empty-content, .content.empty-content, .tag-container.empty {
	position: relative;

	padding: 90px 30px;
	font-size: calc(var(--font-size) - 1px);
	text-align: center;
}

.content.empty-content {
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);
}

.tag-container.empty {
	justify-content: center;
	align-items: center;
}

.list-empty-content .emoji, .content.empty-content::before, #tt-body-tag .tag-container.empty::before {
	display: block;

	width: 100%;

	font-size: 60px;
	text-shadow: 2px 2px 3px var(--base-color6);
}

.list-empty-desc, .content.empty-content::after, #tt-body-tag .tag-container.empty::after {
	display: inline-block;

	border: 1px solid var(--base-color2);
	border-radius: var(--s-border-radius);
	box-shadow: inset 2px 2px 4px var(--base-color4), inset -2px -2px 4px var(--base-color);
	padding: 8px 16px;

	font-weight: bold;
}

/* ───────────────────────────────────────────────────────── */
/* 문구변경 */
/* ───────────────────────────────────────────────────────── */

#tt-body-tag .list-headline::before {
	content: "#";
}

#tt-body-search .list-headline::after {
	content: "의 검색 결과";
	margin-left: 2px;
}

.content.empty-content::before {
	content: "😴";
}

.content.empty-content::after {
	content: "아직 콘텐츠가 없어요!";
}

#tt-body-index .list-empty-content .emoji::before {
	content: "🎨";
}

#tt-body-index .list-empty-desc::before {
	content: "아직 작성된 글이 없는 듯 하네요!";
}

#tt-body-category .list-empty-content .emoji::before {
	content: "🎨";
}

#tt-body-category .list-empty-desc::before {
	content: "아직 작성된 글이 없는 듯 하네요!";
}

#tt-body-search .list-empty-content .emoji::before {
	content: "🤔";
}

#tt-body-search .list-empty-desc::before {
	content: "검색하신 글은 없는 것 같네요!";
}

#tt-body-tag .list-empty-content .emoji::before {
	content: "🥲";
}

#tt-body-tag .list-empty-desc::before {
	content: "검색하신 태그는 존재하지 않아요!";
}

#tt-body-tag .tag-container.empty::before {
	content: "🥲";
}

#tt-body-tag .tag-container.empty::after {
	content: "아직 아무런 태그가 없어요!";
}

.search-list .new-icon::before {
	content: "N";
}

/* ───────────────────────────────────────────────────────── */


/* 카테고리 - 웹진 */

.list-webzine .list-item {
	display: flex;

	padding: 30px;
}

.list-webzine .list-item:not(:last-child) {
	border-bottom: 1px solid var(--base-color4);
}

.list-webzine .list-item:hover {
	transform: translateY(-3px) translateZ(0);
}

.list-webzine .list-thumb {
	position: relative;
	flex-shrink: 0;
	order: 1;

	margin-left: auto;
}

.list-webzine .list-img {
	display: block;

	position: relative;
	z-index: 2;

	width: 130px;
	height: 130px;
	border-radius: calc(var(--s-border-radius) - 15px);
	object-fit: cover;
	box-shadow: -4px 4px 6px var(--base-color5);
}

.list-webzine .list-img + .list-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	position: absolute;
	z-index: 1;
	top: 0;

	width: 130px;
	height: 130px;
	border: 1px solid var(--base-color3);
	border-radius: calc(var(--s-border-radius) - 15px);
	background-color: var(--base-color2);
}

.list-webzine .list-noimg .list-icon {
	display: block;
	width: 15%;
	height: 15%;
	fill: var(--point-color);
	color: var(--point-color);
}

.list-webzine .list-info {
	flex-grow: 1;

	min-width: 0;
	margin-right: 40px;
}

.list-webzine .list-title {
	display: flex;
	align-items: center;

	gap: 6px;
	margin-bottom: 10px;
	overflow: hidden;

	font-size: calc(var(--font-size) + 2px);
	text-overflow: ellipsis;
	white-space: nowrap;

	transition: color var(--transition);
}

.list-webzine .list-item:hover .list-title {
	color: var(--point-color);
}

.list-webzine .title-content {
	overflow: hidden;

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

.list-webzine .secret-icon {
	flex-shrink: 0;

	width: var(--font-size);
	height: var(--font-size);

	transition: color var(--transition);
}

.list-webzine .list-item:hover .secret-icon {
	color: var(--point-color);
}

.list-webzine .list-item-cnt {
	transition: color var(--transition);
}

.list-webzine .list-item:hover .list-item-cnt {
	color: var(--point-color);
}

.list-webzine .list-date {
	display: inline-block;

	font-size: calc(var(--font-size) - 1px);
}

.list-webzine .list-cate {
	display: inline-block;

	margin-left: 8px;

	font-size: calc(var(--font-size) - 1px);
	color: var(--base-color7);
}

.list-webzine .list-sum {
	display: -webkit-box;

	margin-bottom: 10px;
	overflow: hidden;

	text-overflow: ellipsis;
	color: var(--base-color7);
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.list-webzine .list-date::before {
	content: "📅";
	margin-right: 4px;
}

.list-webzine .list-cate::before {
	content: "📁";
	
	margin-right: 4px;
}

/* ───────────────────────────────────────────────────────── */


/* 카테고리 - 갤러리 */

.list-gallery .list-container {
	display: grid;
	grid-template-columns: repeat(var(--list-gallery-thumb), minmax(0, 1fr));

	gap: var(--list-gallery-gutter);
	padding: 30px;
}

.list-gallery .list-item {
	width: 100%;

	border-radius: calc(var(--s-border-radius) - 5px);
	box-shadow: 1px 1px 4px 0px var(--base-color4);
	overflow: hidden;
}

.list-gallery .list-item:hover .list-img {
	transform: translateZ(0) scale(1.2);
}

.list-gallery .list-thumb {
	position: relative;

	width: 100%;
	aspect-ratio: var(--list-gallery-ratio);
}

.list-gallery .list-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;
}

.list-gallery .list-noimg .list-icon {
	display: block;
	width: 15%;
	height: 15%;
	fill: var(--point-color);
	color: var(--point-color);
}

.list-gallery .list-img + .list-noimg {
	position: absolute;
	z-index: 1;
	top: 0;
}

.list-gallery .list-img {
	display: block;

	position: relative;
	z-index: 2;
	transform: translateZ(0) scale(1.0);

	width: 100%;
	height: 100%;
	
	transition: transform var(--transition);
}

.list-gallery .list-info {
	position: relative;
	z-index: 3;

	margin-top: -12px;
	border-radius: calc(var(--s-border-radius) - 5px);
	padding: 10px;
	background: var(--base-color2);
}

.list-gallery .list-info::after {
	display: block;

	text-align: right;
}

.list-gallery .list-title {
	display: flex;

	gap: 3px;
}

.list-gallery .title-content {
	overflow: hidden;

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

.list-gallery :where(.list-date, .list-sum, .list-comment-count) {
	display: none;
}


/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.list-gallery .list-title::before {
	content: "📌";
}

/* ───────────────────────────────────────────────────────── */

/* ───────────────────────────────────────────────────────── */
/* 문구변경 */
/* ───────────────────────────────────────────────────────── */

.list-gallery .list-info::after {
	content: "more →";
}

/* ───────────────────────────────────────────────────────── */


/* 카테고리 - 갤러리2 */

.list-gallery2 .list-container {
	display: grid;
	grid-template-columns: repeat(var(--list-gallery-thumb2), minmax(0, 1fr));

	gap: var(--list-gallery-gutter2);
	padding: 30px;
}

.list-gallery2 .list-item {
	position: relative;

	width: 100%;

	border-radius: calc(var(--s-border-radius) - 5px);
	box-shadow: 1px 1px 4px 0px var(--base-color4);
	background-color: var(--base-color2);
	overflow: hidden
}

.list-gallery2 .list-item:hover .list-img {
	transform: translateZ(0) scale(1.2);
}

.list-gallery2 .list-thumb {
	width: 100%;
	height: 100%;
	aspect-ratio: var(--list-gallery-ratio2);
}

.list-gallery2 .list-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;
}

.list-gallery2 .list-noimg .list-icon {
	display: block;
	width: 15%;
	height: 15%;
	fill: var(--point-color);
	color: var(--point-color);
}

.list-gallery2 .list-img + .list-noimg {
	position: absolute;
	z-index: 1;
	top: 0;
}

.list-gallery2 .list-img {
	display: block;

	position: relative;
	z-index: 2;
	transform: translateZ(0) scale(1.0);

	width: 100%;
	height: 100%;
	
	transition: transform var(--transition);
}

.list-gallery2 .list-info {
	display: flex;
	opacity: 0;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;

	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;

	gap: 10px;
	width: 100%;
	height: 100%;
	border-radius: calc(var(--s-border-radius) - 5px);
	padding: 30px;
	background: #0005;

	color: #fff;

	transition: opacity var(--transition);
}

.list-gallery2 .list-item:hover .list-info {
	opacity: 1;
}

.list-gallery2 .list-title {
	display: block;

	width: 100%;

	font-size: calc(var(--font-size) + 1px);
	font-weight: 500;
	text-align: center;
	line-height: 1.4;
}

.list-gallery2 .title-content {
	text-align: center;
	white-space: normal;
}

.list-gallery2 .list-item-cnt {
	color: #fff;
}

.list-gallery2 .list-item-cnt:empty {
	display: none;
}

.list-gallery2 .list-sum {
	display: -webkit-box;

	width: 100%;
	overflow: hidden;

	font-size: calc(var(--font-size) - 1px);
	text-align: center;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.list-gallery2 :where(.list-date, .list-comment-count) {
	display: none;
}


/************************************************************************/

/* 카테고리 - 심플 */

.list-simple .list-category {
	margin-bottom: 15px;
}

.list-simple .list-item {
	border-bottom: 1px solid var(--base-color4);
	padding: 20px 30px;
}

.list-simple .list-item:last-child {
	border: 0;
}

.list-simple .list-info {
	display: flex;
	justify-content: space-between;
	align-items: center;

	transition: transform var(--transition);
}

.list-simple .list-item:hover .list-info {
	transform: translateY(-5px) translateZ(0);
}

.list-simple .list-title {
	display: flex;
	align-items: center;

	flex-grow: 1;

	gap: 6px;
	min-width: 0;
	
	transition: color var(--transition);
}

.list-simple .list-item:hover .list-title {
	color: var(--point-color);
}

.list-simple .title-content {
	overflow: hidden;

	font-weight: normal;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.list-simple .secret-icon {
	flex-shrink: 0;

	width: var(--font-size);
	height: var(--font-size);

	transition: color var(--transition);
}

.list-simple .list-item:hover .secret-icon {
	color: var(--point-color);
}

.list-simple .list-item-cnt {
	transition: color var(--transition);
}

.list-simple .list-item:hover .list-item-cnt {
	color: var(--point-color);
}

.list-simple .list-date {
	flex-shrink: 0;

	margin-left: 10px;

	font-size: calc(var(--font-size) - 2px);
	font-weight: 600;
}


/************************************************************************/

/* 카테고리 - 메세지 */

.list-message .list-container {
	padding: 30px;
}

.list-message .list-item {
	width: 80%;
	margin-bottom: 15px;
}

.list-message .list-item:last-child {
	padding-bottom: 0;
}

.list-message .list-item:nth-child(even) .list-item {
	margin-left: auto;

	text-align: right;
}

.list-message .list-item:nth-child(even) .list-title {
	background-color: var(--point-color2)
}

.list-message .list-item:nth-child(odd) .list-sum {
	text-align: left;
}

.list-message .list-item:nth-child(even) .list-sum:empty {
	display: none;
}

.list-message .list-item:nth-child(odd) .list-thumb {
	margin-right: auto;
}

.list-message .list-item:nth-child(even) {
	margin-left: auto;

	text-align: right;
}

.list-message .list-thumb {
	display: inline-block;

	position: relative;

	width: var(--list-message-width);
	margin-bottom: 15px;
}

.list-message .list-img {
	display: block;

	position: relative;
	z-index: 2;

	width: 100%;
	height: 100%;
	border-radius: 15px;
}

.list-message .list-img + .list-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	border: 1px solid var(--base-color3);
	border-radius: 15px;
	background-color: var(--base-color2);
}

.list-message .list-noimg .list-icon {
	display: block;
	width: 22px;
	height: 22px;
	fill: var(--point-color);
	color: var(--point-color);
}

.list-message .list-date {
	display: none;
	margin-top: 4px;
}

.list-message .secret-icon {
	width: var(--font-size);
	height: var(--font-size);
	color: #fff;
}

.list-message .list-title {
	display: inline-flex;
	align-items: center;

	position: relative;

	max-width: 90%;
	margin-bottom: 10px;
	border-radius: 20px 20px 20px 0;
	box-shadow: 1px 1px 7px #fff inset, -2px -2px 1px var(--point-color-deep) inset, 2px 2px 3px var(--point-color-bright);
	padding: 8px 20px;
	background: var(--point-color);

	font-weight: 500;
	font-family: "Poppins", "Pretendard";
	color: #fff;
}

.list-message .list-item:nth-child(even) .list-title {
	border-radius: 20px 20px 0 20px;
	box-shadow: 1px 1px 7px #fff inset, -2px -2px 1px var(--point-color2-deep) inset, 2px 2px 3px var(--point-color2-bright);
	background-color: var(--point-color2);
}

.list-message .title-content {
	display: inline-block;

	overflow: unset;

	white-space: normal;
}

.list-message .list-item-cnt {
	display: inline-block;

	color: #fff;
}

.list-message .list-item-cnt:empty {
	display: none;
}

.list-message .list-sum {
	display: block;

	position: relative;

	max-width: 100%;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: 5px;
	margin-right: auto;
	border: 1px solid var(--base-color4);
	border-radius: 25px 25px 25px 0;
	padding: 15px 25px;
	background: var(--base-color2);
}

.list-message .list-item:nth-child(even) .list-sum {
	margin-left: auto;
	margin-right: unset;
	border-radius: 25px 25px 0 25px;
}

.list-message .list-sum:empty {
	border: 0;
	padding: 0;
	background: none;
}

.list-message :where(.list-title:empty::before, .list-sum:empty::before, .list-sum:empty::after) {
	content: none;
}

.list-message .new-icon {
	color: #fff;
}

/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.list-message .list-date::before {
	content: "📅";
	margin-right: 4px;
}

/* ───────────────────────────────────────────────────────── */


/* 카테고리 - 피드 */

.search-list.list-feed {
	box-shadow: none;
	background-color: transparent;
}

.list-feed .list-empty-content, .list-feed .content.empty-content {
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background-color: var(--content-background-color);
}

.list-feed .list-category {
	margin-bottom: var(--s-item-gutter);
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	padding: 10px var(--content-padding);
	background-color: var(--content-background-color);
}

.list-feed .list-container {
	display: grid;
	grid-template-columns: repeat(var(--list-feed-thumb), minmax(0, 1fr));

	gap: var(--list-feed-gutter);
	padding: 0;
}

.list-feed .list-item {
	position: relative;

	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--base-color3);
	background-color: var(--content-background-color);

	transition: transform var(--transition);
}

.list-feed .list-item:hover {
	transform: translateY(-5px) translateZ(0);
}

.list-feed .list-item::after {
	content: "";
	opacity: 0;

	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	border-radius: var(--s-border-radius);

	box-shadow: 0px 3px 4px 0px var(--base-color3);

	transition: opacity var(--transition);
}

.list-feed .list-item:hover::after {
	opacity: 1;
}

.list-feed .list-thumb {
	position: relative;
	
	width: 100%;
	aspect-ratio: var(--list-feed-ratio);
}

.list-feed .list-img {
	display: block;

	position: relative;
	z-index: 2;

	width: 100%;
	height: 100%;
	border: 1px solid var(--base-color3);
	border-top: 0;
	border-radius: var(--s-border-radius);
}

.list-feed .list-noimg {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 100%;
	border: 1px solid var(--base-color3);
	border-top: 0;
	border-radius: var(--s-border-radius);
	background-color: var(--base-color2);
}

.list-feed .list-noimg .list-icon {
	display: block;
	width: 15%;
	height: 15%;
	fill: var(--point-color);
	color: var(--point-color);
}

.list-feed .list-img + .list-noimg {
	position: absolute;
	z-index: 1;
	top: 0;
}

.list-feed .list-info {
	padding: 25px 20px;
}

.list-feed .list-user-info {
	display: flex;
	align-items: center;

	gap: 10px;
	margin-bottom: 10px;
}

.list-feed .list-user-img {
	display: block;

	width: 25px;
	height: 25px;
	aspect-ratio: 1/1;
	border-radius: 100%;
}

.list-feed .list-title {
	margin-bottom: 5px;
}

.list-feed .list-date {
	font-size: calc(var(--font-size) - 2px);
}

.list-feed .list-cate {
	display: block;

	position: absolute;
	z-index: 3;
	top: 15px;
	left: 15px;

	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	padding: 4px 10px;
	background-color: var(--base-color);

	font-size: calc(var(--font-size) - 2px);
	color: var(--point-color-deep);
}

.list-feed .list-sum {
	display: -webkit-box;

	margin: 5px 0;
	overflow: hidden;

	color: var(--base-color7);
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}


/* 카테고리 - 피드2 */

.search-list.list-feed2 {
	box-shadow: none;
	background-color: transparent;
}

.list-feed2 .list-empty-content, .list-feed2 .content.empty-content {
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background-color: var(--content-background-color);
}


.list-feed2 .list-category {
	margin-bottom: var(--s-item-gutter);
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	padding: 10px var(--content-padding);
	background-color: var(--content-background-color);
}

.list-feed2 .list-container {
	display: grid;

	gap: var(--list-feed-gutter);
	padding: 0;
}

.list-feed2 .list-item {
	display: flex;
	flex-wrap: wrap;

	position: relative;

	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--base-color3);
	padding: var(--content-padding);
	background-color: var(--content-background-color);

	transition: transform var(--transition);
}

.list-feed2 .list-item:hover {
	transform: translateY(-5px) translateZ(0);
}

.list-feed2 .list-item::after {
	content: "";
	opacity: 0;

	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	border-radius: var(--s-border-radius);
	box-shadow: 0px 3px 4px 0px var(--base-color3);

	transition: opacity var(--transition);
}

.list-feed2 .list-item:hover::after {
	opacity: 1;
}

.list-feed2 .list-thumb {
	order: 1;
	position: relative;
}

.list-feed2 .list-img {
	display: block;

	position: relative;
	z-index: 2;

	width: 100%;
	margin-top: var(--content-padding);
	border: 1px solid var(--base-color3);
	border-top: 0;
	border-radius: var(--s-border-radius);
}

.list-feed2 .list-noimg {
	display: none;
}

.list-feed2 .list-info {
	display: flex;
	flex-wrap: wrap;

	position: relative;

	width: 100%;
}

.list-feed2 .list-user-info {
	display: flex;
	align-items: center;

	width: 100%;
	gap: 15px;
	margin-bottom: 10px;
}

.list-feed2 .list-user-img {
	display: block;

	width: 40px;
	height: 40px;
	aspect-ratio: 1/1;
	border-radius: 100%;
}

.list-feed2 .list-user-name {
	margin-top: -13px;

	font-weight: 600;
}

.list-feed2 .secret-icon {
	flex-shrink: 0;

	width: var(--font-size);
	height: var(--font-size);
}

.list-feed2 .list-title {
	width: 100%;
	margin-top: 15px;
	margin-bottom: 5px;
}

.list-feed2 .list-date {
	order: -1;

	position: absolute;
	left: 55px;

	margin-top: 20px;

	font-size: calc(var(--font-size) - 2px);
}

.list-feed2 .list-cate {
	display: block;

	position: absolute;
	z-index: 3;
	right: 0;

	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	padding: 4px 10px;
	background-color: var(--base-color);

	font-size: calc(var(--font-size) - 2px);
	color: var(--point-color-deep);
}

.list-feed2 .list-sum {
	display: block;

	width: 100%;
	margin: 5px 0;
	overflow: hidden;

	color: var(--base-color7);
}

/* ───────────────────────────────────────────────────────── */
/* 문구변경 */
/* ───────────────────────────────────────────────────────── */

.list-feed2 .list-item:not(.type-secret) .list-sum::after {
	content: " 더보기";
}

/* ───────────────────────────────────────────────────────── */


/* 카테고리 - 카드 */

.list-card .list-category {
	margin-left: 7px;
}

.list-card .list-container {
	display: grid;
	grid-template-columns: repeat(var(--list-card-thumb), minmax(0, 1fr));

	gap: var(--list-card-gutter);
	padding: calc(var(--content-padding) + 10px);
}

.list-card .list-item {
	position: relative;
	perspective: 1000px;
	transform-style: preserve-3d;

	width: 100%;
	height: 100%;
	border: 1px solid var(--base-color4);
	border-radius: calc(var(--s-border-radius) - 10px);
	box-shadow: 5px 5px var(--base-color3);

	text-align: center;
	aspect-ratio: var(--list-card-ratio);
	
	transition: transform 0.8s;
}

.list-card .list-item:hover {
	transform: rotateY(180deg);
}

.list-card .list-thumb {
	backface-visibility: hidden;
	position: absolute;
	left: 0;

	width: 100%;
	height: 100%;
	border-radius: calc(var(--s-border-radius) - 10px);
}

.list-card .list-img {
	display: block;

	position: relative;
	z-index: 2;

	width: 100%;
	height: 100%;
	border-radius: calc(var(--s-border-radius) - 10px);
}

.list-card .list-img + .list-noimg {
	position: absolute;
	z-index: 1;
	top: 0;
}

.list-card .list-noimg {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	height: 100%;
	border-radius: calc(var(--s-border-radius) - 10px);
}

.list-card .list-noimg .list-icon {
	display: block;
	
	width: 20%;
	height: 20%;
	margin-top: 10px;
	fill: var(--point-color);
	color: var(--point-color);
}

.list-card .list-info {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;

	transform: rotateY(180deg);
	backface-visibility: hidden;

	width: 100%;
	height: 100%;
	border-radius: calc(var(--s-border-radius) - 10px);
	padding: calc(var(--s-content-width) / 10 / var(--list-card-thumb));
	background-color: var(--base-color2);
}

.list-card :where(.list-title, .list-date) {
	display: block;

	width: 100%;
}

.list-card .list-title {
	justify-content: center;
}

.list-card .list-date {
	font-size: calc(var(--font-size) - 2px);
}

.list-card .list-sum {
	display: -webkit-box;

	width: 100%;
	overflow: hidden;

	font-size: calc(var(--font-size) - 1px);
	text-overflow: ellipsis;
	-webkit-line-clamp: calc(var(--c-content-width) / 100 / var(--list-card-thumb));
	-webkit-box-orient: vertical;
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 본문 */
/* ───────────────────────────────────────────────────────── */

/* 본문 - 공통 */

.cate-link {
	text-transform: capitalize;
}

.admin-item {
	margin-right: 10px;
}

.tag-icon {
	width: var(--font-size);
	height: var(--font-size);
	color: var(--font-color);
}


/* 본문 - 스타일1 */

.article:not(:first-child) {
	margin-top: var(--s-item-gutter);
}

.article-style1 .article-entry {
	position: relative;

	transition: all var(--transition);
}

.article-style1 .article-info {
	position: relative;

	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	overflow: hidden;

	transition: transform 0.5s, box-shadow 0.5s;
}

.article-style1 .article-info div[class*="article-"]:last-child {
	padding-bottom: 0;
}

.article-style1 .article-info:hover {
	transform: translateY(-5px) translateZ(0);

	box-shadow: 1px 3px 6px 0px var(--shadow-color);
}

.back-icon {
	position: absolute;
	top: 20px;
	left: 20px;
	z-index: 2;

	width: 20px;
	height: 20px;
	color: #fff;

	cursor: pointer;
}

.article-style1 .article-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	margin-bottom: -20px;
	border-radius: var(--s-border-radius) var(--s-border-radius) 0 0;

	filter: brightness(0.7) grayscale(0.5);

	transition: all var(--transition);
}

.article-style1 .info-container {
	position: relative;
	z-index: 1;

	border-radius: var(--s-border-radius);
	padding: var(--content-padding);
	background: var(--content-background-color);
}

.article-style1 .article-title {
	position: relative;
	border-bottom: 1px solid var(--base-color4);
	padding-bottom: 15px;
	padding-left: 20px;

	font-size: calc(var(--font-size) + 2px);
	font-family: "Poppins", "Pretendard";
}

.article-style1 .article-title::before {
	content: "“";

	position: absolute;
	top: -10px;
	left: 0px;

	padding-right: 3px;

	font-size: 25px;
	font-family: "Noto Serif";
}

.article-style1 .article-info:hover .article-title .slider {
	width: 100%;
}

.slider {
	display: block;

	position: absolute;
	top: 100%;
	left: 0;

	width: 0%;
	height: 1px;
	margin: 0 auto;
	background-color: var(--base-color5);

	transition: all var(--transition);
}

.article-style1 .article-user-box {
	display: flex;
	align-items: center;

	padding: 10px 0 5px 0
}

.article-style1 .article-user-img {
	width: var(--article-img);
	height: var(--article-img);
	object-fit: cover;
	margin-right: var(--article-mar);
	border-radius: 100%;
	padding: 5px;
	box-shadow: inset 2px -2px 6px var(--base-color5), 0px 0px 6px var(--base-color);
}

.article-style1 .article-user-name {
	display: block;
	margin-bottom: 4px;
	font-size: calc(var(--font-size) + 1px);
	font-weight: 600;
	line-height: 1.0;
}

.article-style1 .article-date {
	display: block;

	font-size: calc(var(--font-size) - 1px);
	font-family: "Poppins", "Pretendard";
	line-height: 1.0;
	text-transform: uppercase;
}

.article-style1 .article-cate {
	display: flex;
	align-items: center;

	padding: 10px 0;
}

.article-style1 .article-type {
	width: calc(var(--article-img));
	margin-right: var(--article-mar);

	font-weight: bold;
	text-align: center;
}

.article-style1 .article-admin {
	display: flex;
	align-items: center;

	padding: 10px 0;
}

.article-style1 .article-tag {
	display: flex;
	align-items: center;

	padding: 10px 0;
}

.article-style1 .article-tag-container {
	flex: 1;
}

.article-style1 .article-tag {
	text-transform: capitalize;
}

.article-style1 .article-tag a:not(:first-child) {
	margin-left: 4px;
}

.article-style1 .article-content-wrap {
	margin-top: var(--s-item-gutter);
	border-radius: var(--s-border-radius);
	padding: var(--content-padding);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);
}


/* 본문 - 스타일2 */

.article-style2 .article-info-content {
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);
}

.article-style2 .info-container {
	position: relative;
	z-index: 2;

	border-radius: var(--s-border-radius) var(--s-border-radius) 0 0;
	padding-top: var(--content-padding);
	background: var(--content-background-color);
}

.article-style2 .article-img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	filter: brightness(0.7);
	margin-bottom: -35px;
	border-radius: var(--s-border-radius) var(--s-border-radius) 0 0;

	transition: margin var(--transition);
}

.article-style2 .article-img:hover {
	margin-bottom: -25px;
}

.article-style2 .article-user-box {
	display: flex;
	align-items: center;

	margin-top: var(--content-padding);
	border-top: 1px solid var(--base-color3);
	padding: calc(var(--content-padding) - 10px) var(--content-padding) 10px	var(--content-padding);
}

.article-style2 .article-user-img {
	width: var(--article-img);
	height: var(--article-img);
	object-fit: cover;
	margin-right: var(--article-mar);
	border-radius: 100%;
	padding: 5px;
	box-shadow: inset 2px -2px 6px var(--base-color5), 0px 0px 6px var(--base-color);
}

.article-style2 .article-user-name {
	display: block;
	margin-bottom: 4px;
	font-size: calc(var(--font-size) + 1px);
	font-weight: 600;
	line-height: 1.0;
}

.article-style2 .article-title {
	padding-left: 140px;

	font-size: calc(var(--font-size) + 2px);
}

.article-style2 .article-title::before {
	content: "“";
	position: absolute;
	top: 18px;
	left: 120px;

	padding-right: 3px;

	font-size: 25px;
	font-family: "Noto Serif";
}

.article-style2 .article-date {
	display: block;

	font-size: calc(var(--font-size) - 1px);
	font-family: "Poppins", "Pretendard";
	line-height: 1.0;
	text-transform: uppercase;
}

.article-style2 .article-cate {
	display: flex;
	justify-content: center;

	position: absolute;
	top: 21px;

	width: 80px;
	margin-left: calc(var(--content-padding) - 2px);
	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	box-shadow: inset 2px 2px 4px var(--base-color4), inset -2px -2px 4px var(--base-color);
	padding: 6px 10px;

	font-size: calc(var(--font-size) - 1px);
}

.article-style2 .cate-item {
	overflow: hidden;

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

.article-style2 .article-type {
	display: none;
}

.article-style2 .article-admin {
	display: flex;
	opacity: 0;
	align-items: center;

	position: absolute;
	right: 0;

	margin-top: -55px;
	padding: 10px var(--content-padding);

	transition: opacity var(--transition);
}

.article-style2 .article-info:hover .article-admin {
	opacity: 1;
}

.article-style2 .article-tag-container {
	flex: 1;
}

.article-style2 .article-tag {
	padding: 10px var(--content-padding) 0 var(--content-padding);

	color: var(--base-color6);
	text-transform: capitalize;
}

.article-style2 .article-tag a:not(:first-child) {
	margin-left: 8px;
}

.article-style2 .article-tag a {
	color: var(--base-color6);
}

.article-style2 .article-tag-container a::before {
	content: "#";

	margin-right: 2px;
}

.article-style2 .article-content-wrap {
	padding: var(--content-padding);
}

.article-style2 .article-content-wrap {
	position: relative;
}

.article-style2 .article-content {
	transform: translateZ(0);
}


/* 본문 - 에디터  */


/* 본문 - 반응형 동영상 */

iframe:not(.instagram-media, [data-ke-type='map']) {
	width: 100%;
	height: 100%;
	border-radius: var(--img-border-radius);
}

p iframe[data-src*="youtube"], p iframe[data-src*="soundcloud"] {
	opacity: 0;

	transition: opacity 0.5s;
}

p iframe[data-src*="youtube"].lazyloaded, p iframe[data-src*="soundcloud"].lazyloaded {
	opacity: 1 !important;
}


/* 본문 이미지 설정 */
.imageblock span {
	display: flex;
}

.imageblock span {
	border-radius: var(--img-border-radius);
	background-color: var(--base-color2);

	transition: background-color var(--transition);
}

.article-content figure.imageblock span, .article-content figure.imagegridblock span {
	display: flex;
}

.article-content figure.imageblock span img, .article-content figure.imagegridblock span img {
	opacity: 0;
}

.article-content figure.imageblock span img.lazyloaded, .article-content figure.imagegridblock span img.lazyloaded {
	opacity: 1;
	transition: all 0.3s ease;
}

.article-content img, .notice-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--img-border-radius);
}

#tt-body-page figure.imagegridblock + figure.imagegridblock {
	margin-top: -20px;
}

figure.imagegridblock .image-container > span {
	margin-top: 10px !important;
}

/* 이미지 주석 */

:is(figure.imageslideblock div.image-container) {
	min-width: 100%;
}

article :is(figure figcaption, figure.imageslideblock figcaption) {
	padding-top: 0px;

	font-size: 12px;
	font-family: "Noto Serif", "Pretendard";
	color: var(--base-color7);
}

:is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) blockquote {
	margin: 20px auto 0;
}

body :is(blockquote, blockquote p) {
	font-size: inherit;
	font-family: inherit;
}

/* 인용 스타일1 */

:is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) blockquote[data-ke-style='style1'] {
	margin-bottom: 5px;
	padding-top: 18px;
	background: none;

	font-size: calc(var(--font-size) + 1px);
	letter-spacing: -0.5px;
	line-height: inherit;
}

blockquote[data-ke-style='style1']::before {
	content: "“";
	
	display: block;

	height: 27px;

	font-size: 35px;
	font-family: "Noto Serif";
	line-height: 1;
}

:is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) .article-style2 blockquote[data-ke-style='style1'], :is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) .notice-content blockquote[data-ke-style='style1'] {
	position: relative;

	padding-top: 0;
	padding-left: 30px;

	text-align: left;
}

.article-style2 blockquote[data-ke-style='style1']::before, .notice-content blockquote[data-ke-style='style1']::before {
	content: "“";
	
	position: absolute;
	left: 0;
}

.article-style2 blockquote[data-ke-style='style1'] span, .notice-content blockquote[data-ke-style='style1'] span {
	display: block;

	font-family: inherit !important;
	text-align: left;
}


/* 인용 스타일2 */

:is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) .article-style1 blockquote[data-ke-style='style2'] {
	position: relative;

	margin-bottom: 5px;
	border-left: 2px solid var(--point-color);
	padding: 0 25px;

	color: var(--point-color);
}

:is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) .article-style2 blockquote[data-ke-style='style2'] {
	position: relative;

	margin-bottom: 5px;
	border-left: 2px solid var(--point-color2);
	padding: 0 25px;

	color: var(--point-color2);
}

:is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) .notice-content blockquote[data-ke-style='style2'] {
	position: relative;

	margin-bottom: 5px;
	border-left: 2px solid var(--point-color2);
	padding: 0 25px;

	color: var(--point-color2);
}


/* 인용 스타일3 */

.article-style1 blockquote[data-ke-style='box'], :is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) .article-style1 blockquote[data-ke-style='box'], .article-style1 blockquote[data-ke-style='style3'], :is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) .article-style1 blockquote[data-ke-style='style3'] {
	margin-bottom: 20px;
	border: 1px solid var(--point-color2);
	border-radius: var(--s-border-radius);
	box-shadow: 6px 6px var(--point-color2);
	background-color: var(--base-color2);

	color: var(--point-color2);
}

.article-style2 blockquote[data-ke-style='box'], :is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) .article-style2 blockquote[data-ke-style='box'], .article-style2 blockquote[data-ke-style='style3'], :is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) .article-style2 blockquote[data-ke-style='style3'] {
	margin-bottom: 20px;
	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	background-color: var(--base-color2);

	color: var(--base-color7);

	transition: border var(--transition), color var(--transition);
}

:is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) .notice-content :is(blockquote[data-ke-style='style3'], blockquote[data-ke-style='box']) {
	margin-bottom: 20px;
	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	background-color: var(--base-color2);

	color: var(--base-color7);

	transition: border var(--transition), color var(--transition);
}

.article-style2 blockquote[data-ke-style='box']:hover, :is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) .article-style2 blockquote[data-ke-style='box']:hover, .article-style2 blockquote[data-ke-style='style3']:hover, :is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) .article-style2 blockquote[data-ke-style='style3']:hover, :is(#tt-body-page, #tt-body-category, #tt-body-tag, #tt-body-index, #tt-body-search) .notice-content :is(blockquote[data-ke-style='style3'], blockquote[data-ke-style='box']):hover {
	border-color: var(--point-color-b2);

	color: var(--point-color);
}

/* 더보기 */

:is(div[data-ke-type='moreLess'], #tt-body-page div[data-ke-type='moreLess']) {
	display: flex;
	flex-direction: column;
}

:is(div[data-ke-type='moreLess'], #tt-body-page div[data-ke-type='moreLess']) .btn-toggle-moreless {
	display: inline-block;

	position: relative;

	width: -moz-fit-content;
	width: fit-content;
	border: 1px solid var(--base-color4);
	border-radius: calc(var(--s-border-radius) - 10px);
	padding: 4px 10px;
	background-color: var(--base-color2);

	font-size: inherit;
	font-family: inherit;
	font-weight: bold;
	color: inherit;
	line-height: inherit;
}

:is(div[data-ke-type='moreLess'], #tt-body-page div[data-ke-type='moreLess']).open .btn-toggle-moreless {
	border-bottom-color: var(--base-color2);
	border-radius: calc(var(--s-border-radius) - 10px) calc(var(--s-border-radius) - 10px) 0 0;
}

/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

:is(div[data-ke-type='moreLess'], #tt-body-page div[data-ke-type='moreLess']) .btn-toggle-moreless::before {
	content: "📒";
	margin-right: 4px;
}

/* ───────────────────────────────────────────────────────── */


:is(div[data-ke-type='moreLess'], #tt-body-page div[data-ke-type='moreLess']).open .moreless-content {
	margin-top: -1px;
	margin-bottom: 5px;
	border: 1px solid var(--base-color4);
	border-radius: 0 var(--img-border-radius) var(--img-border-radius) var(--img-border-radius);
	padding: 20px;
	background-color: var(--base-color2);
}

/* 본문 서식 */

h2, h2[data-ke-size], h3, h3[data-ke-size] {
	font-weight: normal;
}

.article-content p>a {
	display: inline-block;

	position: relative;
	z-index: 2;

	padding-left: 17px;

	font-weight: bold;
	font-style: italic;
}

.article-content p>a::after {
	content: "";
	display: block;

	position: absolute;
	top: 4px;
	left: 0px;

	width: var(--font-size);
	height: var(--font-size);
	margin-right: 4px;
	background-size: 100px;
	--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.6572 14.8282L16.2429 13.414L17.6572 11.9998C19.2193 10.4377 19.2193 7.90506 17.6572 6.34296C16.0951 4.78086 13.5624 4.78086 12.0003 6.34296L10.5861 7.75717L9.17188 6.34296L10.5861 4.92875C12.9292 2.5856 16.7282 2.5856 19.0714 4.92875C21.4145 7.27189 21.4145 11.0709 19.0714 13.414L17.6572 14.8282ZM14.8287 17.6567L13.4145 19.0709C11.0714 21.414 7.27238 21.414 4.92923 19.0709C2.58609 16.7277 2.58609 12.9287 4.92923 10.5856L6.34345 9.17139L7.75766 10.5856L6.34345 11.9998C4.78135 13.5619 4.78135 16.0946 6.34345 17.6567C7.90555 19.2188 10.4382 19.2188 12.0003 17.6567L13.4145 16.2425L14.8287 17.6567ZM14.8287 7.75717L16.2429 9.17139L9.17188 16.2425L7.75766 14.8282L14.8287 7.75717Z'%3E%3C/path%3E%3C/svg%3E");
	background-image: var(--svg);
	mask-image: var(--svg);
	-webkit-mask-image: var(--svg);
	background-color: var(--font-color);
}

:is(ol, ul)[data-ke-list-type] {
	padding-left: 15px;
}


/* 링크 열기 */

.article-style1 .anchor-figure {
	margin-left: 10px;
	padding-right: 6px;

	font-family: "Poppins", "Pretendard";
	font-style: normal;
	text-transform: capitalize;
	color: var(--point-color2);

	transition: none;
}

.article-style1 .article-content .hasfigure>a.anchor-figure::after {
	background-color: var(--point-color2);
}

figure[data-ke-type='opengraph'], #tt-body-page figure[data-ke-type='opengraph'] {
	position: relative;
	
	max-width: 700px;
	margin-top: -28px;
	border-radius: var(--s-border-radius);
	box-shadow: inset 4px 4px 6px var(--base-color), 3px 3px 3px var(--base-color3);
}

.article-style1 figure[data-ke-type='opengraph']::before {
	content: "";
	display: block;

	height: 32px;
	border: 1px solid var(--base-color4);
	border-bottom: 0;
	border-radius:	var(--s-border-radius) var(--s-border-radius) 0 0;
	background-color: var(--base-color2);
}

figure[data-ke-type='opengraph'] a, #tt-body-page figure[data-ke-type='opengraph'] a {
	display: flex;
	justify-content: space-between;
	align-items: center;

	height: auto;
	border: 1px solid var(--base-color4);
	border-radius: 0 0	var(--s-border-radius) var(--s-border-radius);
	padding: 10px;
	overflow: hidden;
}

figure[data-ke-type='opengraph'] div.og-image, #tt-body-page figure[data-ke-type='opengraph'] div.og-image {
	position: relative;

	width: 100px;
	height: 100px;
	aspect-ratio: 1/1;
	border: 4px solid var(--base-color4);
	border-radius: calc(var(--s-border-radius) - 5px);
}

figure[data-ke-type='opengraph'] div.og-text, #tt-body-page figure[data-ke-type='opengraph'] div.og-text {
	display: flex;
	flex-wrap: wrap;
	align-content: center;

	position: static;
	flex: 1;
	
	width: -moz-fit-content;
	width: fit-content;
	height: auto;
	margin-left: 20px;
	margin-right: 20px;
	padding: 0px;
	overflow: hidden;

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

figure[data-ke-type='opengraph'] div.og-text p.og-title, #tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-title {
	width: 100%;
	margin: 0 !important;

	font-size: calc(var(--font-size) + 2px);
	font-family: "Poppins", "Pretendard";
	font-weight: 600;
}

figure[data-ke-type='opengraph'] div.og-text p.og-desc, #tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-desc {
	width: 100%;

	font-size: inherit;
	font-family: "Poppins", "Pretendard";
	color: var(--base-color7);
}

figure[data-ke-type='opengraph'] div.og-text p.og-host, #tt-body-page figure[data-ke-type='opengraph'] div.og-text p.og-host {
	display: flex;
	align-items: center;

	position: static;

	width: 100%;

	font-size: calc(var(--font-size) - 2px);
	font-family: "Poppins";
	color: var(--base-color7);
}

p.og-host::before {
	content: "";

	flex-shrink: 0;

	width: 14px;
	height: 14px;
	margin-right: 4px;
	background-size: 100px;
	--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.6572 14.8282L16.2429 13.414L17.6572 11.9998C19.2193 10.4377 19.2193 7.90506 17.6572 6.34296C16.0951 4.78086 13.5624 4.78086 12.0003 6.34296L10.5861 7.75717L9.17188 6.34296L10.5861 4.92875C12.9292 2.5856 16.7282 2.5856 19.0714 4.92875C21.4145 7.27189 21.4145 11.0709 19.0714 13.414L17.6572 14.8282ZM14.8287 17.6567L13.4145 19.0709C11.0714 21.414 7.27238 21.414 4.92923 19.0709C2.58609 16.7277 2.58609 12.9287 4.92923 10.5856L6.34345 9.17139L7.75766 10.5856L6.34345 11.9998C4.78135 13.5619 4.78135 16.0946 6.34345 17.6567C7.90555 19.2188 10.4382 19.2188 12.0003 17.6567L13.4145 16.2425L14.8287 17.6567ZM14.8287 7.75717L16.2429 9.17139L9.17188 16.2425L7.75766 14.8282L14.8287 7.75717Z'%3E%3C/path%3E%3C/svg%3E");
	background-image: var(--svg);
	mask-image: var(--svg);
	-webkit-mask-image: var(--svg);
	background-color: var(--base-color7);
}

.article-style2 figure[data-ke-type='opengraph'], #tt-body-page .article-style2 figure[data-ke-type='opengraph'] {
	max-width: 400px;
	margin-top: 10px;
	box-shadow: none;
}

.article-style2 figure[data-ke-type='opengraph'] a, #tt-body-page .article-style2 figure[data-ke-type='opengraph'] a {
	border-radius: var(--s-border-radius);
	padding: 0;
}

.article-style2 figure[data-ke-type='opengraph'] div.og-image, #tt-body-page .article-style2 figure[data-ke-type='opengraph'] div.og-image {
	border: 0;
	border-right: 1px solid var(--base-color4);
	border-radius: var(--s-border-radius) 0 0 var(--s-border-radius);
}

.notice-content figure[data-ke-type='opengraph'], #tt-body-page .notice-content figure[data-ke-type='opengraph'] {
	max-width: 400px;
	margin-top: 10px;
	box-shadow: none;
}

.notice-content .contents_style figure[data-ke-type='opengraph'] a, #tt-body-page .notice-content .contents_style figure[data-ke-type='opengraph'] a {
	border: 1px solid var(--base-color4);
	border-radius: var(--s-border-radius);
	padding: 0;
}

.notice-content figure[data-ke-type='opengraph'] div.og-image, #tt-body-page .notice-content figure[data-ke-type='opengraph'] div.og-image {
	border: 0;
	border-right: 1px solid var(--base-color4);
	border-radius: var(--s-border-radius) 0 0 var(--s-border-radius);
}


/* 파일 다운로드 */

figure.fileblock, #tt-body-page figure.fileblock {
	display: inline-block;

	width: auto;
	height: auto;
	border: 1px solid var(--base-color4);
	border-radius: var(--s-border-radius);
	background: var(--base-color2);
}

figure.fileblock a, #tt-body-page figure.fileblock a, .notice-content .contents_style figure.fileblock a, #tt-body-page .notice-content .contents_style figure.fileblock a {
	display: flex;
	align-items: center;

	gap: 15px;
	height: auto;
	padding: 10px 20px;
}

.fileblock-icon {
	flex-shrink: 0;

	width: 23px;
	height: 23px;
	color: var(--point-color2);
}

figure.fileblock .image, #tt-body-page figure.fileblock .image {
	display: none;
}

figure.fileblock .desc, #tt-body-page figure.fileblock .desc {
	position: static;

	overflow: hidden;
}

figure.fileblock .filename, #tt-body-page figure.fileblock .filename {
	height: auto;
	margin: 0;

	color: var(--point-color2);
	font-weight: 500;
}

figure.fileblock .size, #tt-body-page figure.fileblock .size {
	height: auto;
	margin: 0;

	font-family: inherit;
	color: inherit;
}

figure.fileblock a::after, #tt-body-page figure.fileblock a::after {
	content: none
}


/* 글감 */

figure[data-ke-type="contentSearch"] {

	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px var(--shadow-color);
	overflow: hidden;
}

figure[data-ke-type='contentSearch'] div.cs-info-wrap {
	background-color: var(--content-background-color);
}

/* 코드블럭 */

.content pre[data-ke-type="codeblock"] {
	position: relative;

	border-radius: 10px;
	padding: 0;

	font-family: "Poppins", "Pretendard";
	white-space: pre-wrap;
}

.content pre[data-ke-type="codeblock"] code {
	margin: 10px;
	border-radius: 10px;

	font-family: "Poppins", "Pretendard";
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar {
	width: 4px;
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar-track {
	background-color: transparent;
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar-thumb {
	border-radius: 20px;
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar-button:vertical:start:decrement,
pre[data-ke-type="codeblock"] code::-webkit-scrollbar-button:vertical:start:increment {
	display: block;
	height: 5px;
}

pre[data-ke-type="codeblock"] code::-webkit-scrollbar-button:vertical:end:decrement,
pre[data-ke-type="codeblock"] code::-webkit-scrollbar-button:vertical:end:increment {
	display: block;
	height: 5px;
}


/* 본문 - 페이징 */

.article-paging {
	opacity: 0;

	margin-top: var(--s-item-gutter);
	border-radius: var(--s-border-radius);
	padding: var(--content-padding);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);

	transition: opacity var(--transition);
}

.paging-headline {
	margin-bottom: 15px;
	
	font-size: calc(var(--font-size) + 1px);
	font-weight: 500;
	text-transform: capitalize;
}

.paging-list {
	display: flex;

	margin-bottom: 8px;
	font-size: 0;
	color: var(--font-color);

	opacity: 0.6;
}

.paging-container > .paging-list {
	opacity: 1;
}

.paging-title {
	display: inline-block;

	flex-shrink: 0;

	margin-right: 20px;

	font-size: var(--font-size);
}

.paging-data {
	display: inline-block;

	font-size: var(--font-size);
}

/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.paging-cate::before {
	content: "🗂️";
	margin-right: 5px;
}

/* ───────────────────────────────────────────────────────── */

/* ───────────────────────────────────────────────────────── */
/* 문구변경 */
/* ───────────────────────────────────────────────────────── */

.paging-headline::before {
	content: "'";
}

.paging-headline::after {
	content: "'의 다른 글";
}

/* ───────────────────────────────────────────────────────── */


/* 본문 - 관련글 */

.article-related {
	display: flex;
	opacity: 0;	
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;

	margin-top: var(--s-item-gutter);
	border-radius: var(--s-border-radius);
	padding: var(--content-padding);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);

	transition: opacity var(--transition);
}

.related-headline {
	font-size: calc(var(--font-size) + 1px);
	font-weight: 500;
	text-transform: capitalize;
}

.related-more {
	font-size: calc(var(--font-size) - 1px);
	color: var(--base-color7);
	text-transform: uppercase;
}

.related-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));

	gap: 20px;
	width: 100%;
	margin-top: 15px;
}

.related-item {
	position: relative;

	border-radius: calc(var(--s-border-radius) - 10px);
	overflow: hidden;
}

.related-item:nth-child(2) {
	display: none;
}

.related-item:hover .related-info {
	opacity: 1;
}

.related-link {
	display: flex;
}

.related-link:focus-visible {
	border: 3px solid #000;
}

.related-img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.related-img + .related-noimg {
	display: none;
}

.related-info {
	display: flex;
	opacity: 0;
	flex-wrap: wrap;
	align-content: space-between;

	position: absolute;
	top: 0;

	width: 100%;
	aspect-ratio: 1/1;
	padding: 15px;
	background-color: #00000030;

	transition: opacity var(--transition);
}

.related-title {
	display: block;

	width: 100%;

	font-family: "Poppins", "Pretendard";
	font-weight: 600;
	color: #fff;
}

.related-date {
	display: block;

	width: 100%;

	font-size: calc(var(--font-size) - 1px);
	color: var(--base-color6);
}

.related-item:where(.text_type, .type_secret) {
	border: 1px solid var(--base-color4);
}

.related-item:where(.text_type, .type_secret) .related-noimg {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;

	background-color: var(--base-color2);
}

.related-item:where(.text_type, .type_secret) .related-noimg .related-icon {
	width: 20%;
	height: 20%;
	margin-top: 10px;
	fill: var(--point-color);
	color: var(--point-color);
}

.related-item:where(.text_type, .type_secret) .related-info {
	opacity: 1;
	
	background-color: transparent;
}

.related-item:where(.text_type, .type_secret):hover .related-info {
	background-color: transparent
}

.related-item:where(.text_type, .type_secret) .related-title {
	color: var(--font-color);
}

.related-item:where(.text_type, .type_secret) .related-date {
	color: var(--base-color5);
}


/* 본문 - 댓글 */

.article-comment {
	position: fixed;
	z-index: 10;
	left: 0;
	top: 0;
	transform: translateY(0px) translateZ(0);

	width: 100%;
	height: 100%;
	background-color: var(--background-color);
	overflow: scroll;

	transition: opacity var(--transition), transform var(--transition);
}

.article-comment:not(.opacity-1) {
	display: none;
	opacity: 0;

	transform: translateY(-100px) translateZ(0);
}

.comment-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;

	position: absolute;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
}

.comment-btn .remove-icon {
	width: calc(var(--font-size) + 10px);
	height: calc(var(--font-size) + 10px);
	color: var(--base-color7);
}

.article-comment > div {
	width: var(--s-content-width);
	margin: 100px auto;
}

.comment-on {	
	margin-right: var(--scrollbar-width);
	scrollbar-width: none;
}

body:not(.comment-on) .article-comment {
	scrollbar-width: none;
}

.comment-on::-webkit-scrollbar, body:not(.comment-on) .article-comment::-webkit-scrollbar  {
	display: none;
}

.article-comment .tt-area-reply:empty + .rp-form {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: var(--s-content-width);
}

/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.related-post::before {
	content: "🗒️";

	margin-right: 5px;
}

/* ───────────────────────────────────────────────────────── */

/* ───────────────────────────────────────────────────────── */
/* 문구변경 */
/* ───────────────────────────────────────────────────────── */

.related-headline::before {
	content: "'";
}

.related-headline::after {
	content: "'의 연관된 게시물";
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 비밀글 */
/* ───────────────────────────────────────────────────────── */

.protected {
	overflow: hidden;

	border-radius: var(--s-border-radius);
	padding: 60px;
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);

	font-size: calc(var(--font-size) + 1px);
	font-weight: 500;
	text-align: center;
}

.protected + .protected {
	margin-top: var(--s-item-gutter);
}

.protected div {
	margin-top: 10px;
}

.protected-title {
	margin: 20px 0 40px 0;

	font-size: calc(var(--font-size) + 3px);
	font-family: "Poppins", "Pretendard";
	font-weight: 600;
}

.protected-title::before {
	content: "“";

	margin-right: 2px;
	
	font-family: "Noto Serif";
}

.protected-title::after {
	content: "”";

	margin-left: 2px;

	font-family: "Noto Serif";
}

.protected-content {
	display: block;

	margin-bottom: 50px;

	font-size: calc(var(--font-size) - 1px);
}

.protected-input {
	display: block;

	width: 170px;
	height: 35px;
	margin: 0 auto;
	border-radius: var(--s-border-radius);
	box-shadow: inset 2px 2px 5px 0px var(--base-color4), 2px 2px 6px var(--base-color);

	font-size: calc(var(--font-size) - 2px);
	text-align: center;

	-webkit-appearance: none;
}

.protected-submit {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 170px;
	height: 35px;
	margin: 10px auto;
	border-radius: var(--s-border-radius);
	box-shadow: inset 2px 2px 4px var(--point-color-bright), 2px 2px 4px 0px var(--point-color-dark);
	background-color: var(--point-color);

	font-size: var(--font-size);
	color: #fff;
}

.protected-icon {
	width: calc(var(--font-size) + 5px);
	height: calc(var(--font-size) + 5px);
	color: #fff;
	stroke-width: 1.5px;
}

/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.protected-emoji::before {
	content: "🔒";

	display: block;

	font-size: 55px;
	text-shadow: 2px 2px 3px var(--base-color6);
}

/* ───────────────────────────────────────────────────────── */

/* ───────────────────────────────────────────────────────── */
/* 문구변경 */
/* ───────────────────────────────────────────────────────── */

.protected-content::before {
	content: "비밀글이에요. \A 비밀번호를 입력해주세요.";

	display: block;

	white-space: pre-wrap;
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 공지사항 */
/* ───────────────────────────────────────────────────────── */

.notice {
	position: relative;

	border-radius: var(--s-border-radius);
	padding: var(--content-padding);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);
}

.notice:not(:first-child) {
	margin-top: var(--s-item-gutter);
}

.notice-info {
	margin-bottom: 20px;
}

.notice-title {
	position: relative;
	border-bottom: 1px solid var(--base-color3);
	padding-bottom: 15px;
	padding-left: 20px;

	font-size: calc(var(--font-size) + 2px);
	font-family: "Poppins", "Pretendard";
}

.notice-title::before {
	content: "“";

	position: absolute;
	top: -10px;
	left: 0px;

	padding-right: 3px;

	font-size: 25px;
	font-family: "Noto Serif";
}

.notice-user-box {
	display: flex;
	align-items: center;

	position: relative;

	padding: 10px 0;
}

.notice-user-img {
	width: var(--article-img);
	height: var(--article-img);
	margin-right: var(--article-mar);
	border-radius: calc(var(--s-border-radius) * 1000);
	padding: 5px;
	box-shadow: inset 2px -2px 6px var(--base-color5), 0px 0px 6px var(--base-color);
}

.notice-user-name {
	display: block;

	font-size: calc(var(--font-size) + 1px);
	font-weight: bold;
	line-height: 1.0;
}

.notice-admin {
	display: flex;
	visibility: hidden;
	opacity: 0;
	align-items: center;

	position: absolute;
	right: 0px;

	transition: opacity var(--transition);
}

.notice-user-box:hover .notice-admin {
	visibility: visible;
	opacity: 1;
}

.notice-type {
	width: calc(var(--article-img));
	margin-right: var(--article-mar);

	font-weight: bold;
	text-align: center
}

.admin-item {
	margin-right: 10px;
}

.notice-date, .notice-cate {
	font-size: calc(var(--font-size) - 1px);
	font-family: "Poppins", "Pretendard";
	line-height: 1.0;
	text-transform: uppercase;
}

.notice-cate::before {
	content: "·";
	
	margin-left: 4px;
	margin-right: 8px;
}

.notice-content a:not(.btn-toggle-moreless) {
	display: inline-block;

	position: relative;

	margin: 5px 10px 5px 0;
	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	padding: 4px 14px;

	font-weight: 600;

	transition: transform var(--transition), box-shadow var(--transition);
}

.notice-content a:not(.btn-toggle-moreless):hover {
	transform: translateY(3px) translateZ(0);

	box-shadow: inset 0px -2px 2px var(--base-color), inset 0px 2px 4px var(--base-color3);
}

.notice-content a:not(.btn-toggle-moreless)::after {
	content: "";
	
	position: absolute;
	top: 0;
	left: 0;
	
	width: 100%;
	height: 100%;
	border: 1px solid var(--base-color3);
	border-radius: 20px;
	box-shadow: 0px -2px 2px var(--base-color), 0px 2px 2px var(--base-color3);

	transition: opacity var(--transition);
}

.notice-content a:not(.btn-toggle-moreless):hover::after {
	opacity: 0;
}

.notice-content .contents_style figure a {
	display: flex;

	position: unset;

	margin: unset;
	border: unset;
	border-radius: unset;
	padding: unset;

	font-weight: unset;
}

.notice-content .contents_style figure a::before {
	content: none;
}

.notice-content .contents_style figure a::after {
	content: none;
}

.notice-content .contents_style figure a:hover {
	transform: unset;

	box-shadow: unset;
}



/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.notice-content a:link::before {
	content: "⭐";

	margin-right: 4px;
}

/* 링크별로 이모지 다르게 하고 싶으면 주석 해제 후 순서대로 입력

.notice-content a:nth-of-type(2)::before {
	content: "";
}

.notice-content a:nth-of-type(3)::before {
	content: "";
}
*/


/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 포스트 버튼 */
/* ───────────────────────────────────────────────────────── */

.article-like-box, .notice-like-box {
	margin-top: 20px;
}

.like-count {
	font-weight: 600;
}

.article-post-btn, .notice-post-btn {
	display: flex;
	justify-content: flex-end;
	align-items: stretch;

	gap:10px;
	margin-top: 10px;
}

.article-report { 
	margin-left:auto;
}

.rp-btn {
	display: inline-flex; 
	justify-content: center;
	align-items: center;

	height: 100%;
	aspect-ratio: 1/1;
	border: 1px solid var(--base-color3);
	border-radius: calc(var(--s-border-radius) * 1000);
	box-shadow: inset 0px 4px 6px var(--base-color), 0px 2px 4px var(--base-color4);
	padding: 6px 10px;
	background-color: var(--base-color2);

	font-size: var(--font-size);
	font-weight: 500;
	color: var(--point-color);

	transition: transform var(--transition), box-shadow var(--transition);
}

.rp-btn-icon { 
	width: var(--font-size);
	height: var(--font-size);
	color: var(--point-color);
	stroke-width: 2px;
}

.report-btn {
	display: inline-flex; 
	justify-content: center;
	align-items: center;

	height: 100%;
	aspect-ratio: 1/1;
	border: 1px solid var(--base-color3);
	border-radius: calc(var(--s-border-radius) * 1000);
	box-shadow: inset 0px 4px 6px var(--base-color), 0px 2px 4px var(--base-color4);
	padding: 6px 10px;
	background-color: var(--base-color2);

	font-size: var(--font-size);
	font-weight: 500;
	color: var(--point-color);

	transition: transform var(--transition), box-shadow var(--transition);
}

.report-btn-icon {
	width: var(--font-size);
	height: var(--font-size);
	color: var(--point-color);
	stroke-width: 2px;
}

:is(.rp-btn, .report-btn):hover {
	transform: translateY(4px) translateZ(0);

	box-shadow: inset 0px 2px 4px var(--base-color3), 0px 4px 6px var(--base-color);
}

.article-style2 .article-like-box {
	opacity: 0;
	
	position: absolute;
	left: 160px;
	bottom: calc(var(--content-padding) + 3px);

	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	padding: 3px 10px;
	background-color: var(--base-color2);

	color: var(--point-color);

	transition: opacity var(--transition);
}

.notice-like-box {
	opacity: 0;
	
	position: absolute;
	left: 80px;
	bottom: calc(var(--content-padding) + 3px);

	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	box-shadow: inset 0px 4px 6px var(--base-color), 0px 2px 4px var(--base-color3);
	padding: 3px 10px;
	background-color: var(--base-color2);

	color: var(--point-color);

	transition: opacity var(--transition);
}

.article-style2 .article-content-wrap:hover .article-like-box {
	opacity: 1;
}

.article-style2 .article-content:hover + .article-like-box {
	opacity: 0;
}

.notice:hover .notice-like-box {
	opacity: 1;
}

.notice-info:hover ~ .notice-like-box {
	opacity: 0;
}

.notice-content:hover + .notice-like-box {
	opacity: 0;
}

.article-style2 .article-post-btn {
	margin-top: 20px;
}

.article-style2 :is(.rp-btn, .report-btn) {
	box-shadow: none !important;
	background-color: var(--base-color2);
}

/* RESET */

.container_postbtn {
	display: flex;
	width: 100%;
	
	padding: unset;
}

.container_postbtn::after {
	content: none;
}

.container_postbtn .postbtn_like {
	display: flex;
	align-items: stretch;

	float: unset;

	padding: unset;

	font-size: inherit !important;
}

.container_postbtn .postbtn_like .wrap_btn {
	display: flex;
	align-items: stretch;

	float: unset;
}

.container_postbtn .btn_post {
	height: unset;
	border: unset;
	border-radius: unset;
	padding: unset;

	font-size: inherit !important;
	font-family: inherit !important;
	line-height: inherit !important;
}

.container_postbtn .btn_post.uoc-icon .uoc-icon {
	display: flex;
	align-items: center;

	position: relative;
}

.container_postbtn .btn_post .ico_like {
	display: none;

	max-width: unset;
	width: unset;
	height: unset;
	margin: unset;
	background: none;

	text-indent: unset;
}

.container_postbtn .btn_post .txt_like {
	margin: unset;
    
	font-size: inherit !important;
	font-family: inherit !important;
	line-height: inherit !important;
}

.container_postbtn .btn_post .ico_share {
	display: none;

	margin: unset;
	background: none;

	font-size: inherit !important;
	font-family: inherit !important;
	line-height: inherit !important;
}

.container_postbtn .layer_post {
	border: unset;
	box-shadow: unset;
	padding: unset;
	background: unset;
}

.container_postbtn .layer_post .ico_arrbt {
	display: none;
}

.container_postbtn .layer_post .btn_mark {
	padding: unset;

	font-size: inherit !important;
	font-family: inherit !important;
	line-height: inherit !important;
	color: inherit;
}

.container_postbtn .btn_post .ico_statistics {
	display: none;

	width: unset;
	height: unset;
	margin: unset;
	background: none;

	text-indent: unset;
}

.btn_post, .btn_menu_toolbar {
	outline: none !important;
}

.btn_post, .btn_menu_toolbar:focus-visible {
	outline: 2px !important;
}

.container_postbtn .postbtn_ccl {
	display: none;
}

.container_postbtn .ico_postbtn.ico_etc {
	display: none;
}

.container_postbtn .btn_menu_toolbar, .container_postbtn button.tt-btn-support {
	width: -moz-fit-content;
	width: fit-content;
	height: unset;
	margin: unset;
	border: unset;
	border-radius: unset;

	font-size: inherit !important;
	font-family: inherit !important;
	line-height: inherit !important;
}

.container_postbtn .btn_menu_toolbar .txt_state {
	display: none;
}

.container_postbtn .btn_menu_toolbar.following .ico_check_type1 {
	display: none;
}


/* 메인 박스 */
.container_postbtn {
	justify-content: flex-start;

	gap: 25px;
}

.container_postbtn .postbtn_like { 
	gap: 15px;
	border: 0;
}

/* 공유 */
.container_postbtn .wrap_btn_share {
	display: none !important;
}

/* 통계 */
.container_postbtn .wrap_btn:nth-of-type(3):not(.wrap_btn_etc) {
	display: none !important;
}

/* 더보기 */
.container_postbtn .wrap_btn_etc {
	display: none !important;
}

/* 구독 버튼 */

.container_postbtn .postbtn_like + .btn_menu_toolbar.btn_subscription {
	display: none;
}

/* 응원하기 버튼 */

div[data-tistory-react-app="SupportButton"] {
	display: flex;
	align-items: stretch;
}

.container_postbtn button.tt-btn-support {
	display: inline-flex;
	justify-content: center;
	align-items: center;

	aspect-ratio: 1/1;
	border: 1px solid var(--base-color3);
	border-radius: calc(var(--s-border-radius) * 1000);
	box-shadow: inset 0px 4px 6px var(--base-color), 0px 2px 4px var(--base-color4);
	background-color: var(--base-color2);

	font-size: var(--font-size) !important;
	font-weight: 500;
	color: var(--point-color) !important;

	transition: transform var(--transition), box-shadow var(--transition);
}

.notice .container_postbtn .btn_menu_toolbar {
	display: none !important;
}

.notice div[data-tistory-react-app="SupportButton"] {
	display: none;
}

div[data-tistory-react-app="SupportButton"]:empty {
	display: none;
}

/* 공감 버튼 */
.ico_postbtn.ico_like {
	display: none;
}

button.btn_post.uoc-icon {
	display: inline-flex;
	align-items: stretch;
}

.container_postbtn .btn_post.uoc-icon .uoc-icon {
	display: inline-flex;
	justify-content: center;
	align-items: center;

	aspect-ratio: 1/1;
	border: 1px solid var(--base-color3);
	border-radius: calc(var(--s-border-radius) * 1000);
	box-shadow: inset 0px 4px 6px var(--base-color), 0px 2px 4px var(--base-color4);
	background-color: var(--base-color2);

	font-size: var(--font-size) !important;
	font-weight: 500;
	color: var(--point-color) !important;

	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background-color var(--transition);
}

.article-style1 .container_postbtn .btn_post.uoc-icon .uoc-icon.like_on {
	transform: translateY(2px) translateZ(0);
	box-shadow: inset 0px 3px 4px var(--base-color4), 0px 4px 6px var(--base-color);
}

.article-style2 .container_postbtn .btn_post.uoc-icon .uoc-icon.like_on {
	border-color: var(--point-color-b2);
	background-color: var(--point-color-b);
}

.notice .container_postbtn .btn_post.uoc-icon .uoc-icon.like_on {
	transform: translateY(2px) translateZ(0);
	box-shadow: inset 0px 3px 4px var(--base-color4), 0px 4px 6px var(--base-color);
}

:is(.container_postbtn .btn_post.uoc-icon .uoc-icon, .container_postbtn button.tt-btn-support):hover {
	transform: translateY(4px) translateZ(0);

	box-shadow: inset 0px 2px 4px var(--base-color3), 0px 4px 6px var(--base-color);
}

.container_postbtn .btn_post.uoc-icon .uoc-icon.like_on:hover {
	transform: translateY(0px) translateZ(0);

	box-shadow: inset 0px 4px 6px var(--base-color), 0px 2px 4px var(--base-color4);
}

.article-style2 :is(.container_postbtn .btn_post.uoc-icon .uoc-icon, .container_postbtn button.tt-btn-support) {
	box-shadow: none !important;
	background-color: var(--base-color2);
}

.like-iconbox {
	display: inline-flex;
	align-items: center;
}

.notice .like-iconbox {
	padding-right: 6px;
}

.article-like, .notice-like, .article-support {
	display: none;
}

.like-icon {
	color: transparent;
	stroke: var(--gray-color);
	stroke-width: 2px;

	transition: color var(--transition);
}

.like_on .like-icon {
	color: var(--point-color);
	stroke: none;
}

.uoc-icon .txt_like.uoc-count {
	display: none;
}

.article-style2 .like-count, .notice .like-count {
	font-weight: normal;
}

/* ───────────────────────────────────────────────────────── */

/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

button.btn_post.uoc-icon .uoc-icon::before {
	content: "🥰";
}

button.btn_post.uoc-icon .uoc-icon.like_on::before {
	content: "😍";
}

.container_postbtn button.tt-btn-support::before {
	content: "💸";
}

/* ───────────────────────────────────────────────────────── */

/* ───────────────────────────────────────────────────────── */
/* 문구변경 */
/* ───────────────────────────────────────────────────────── */

.article-like-box::before, .notice-like-box::before {
	content: "좋아요";
}

.article-like-box::after, .notice-like-box::after {
	content: "개";
	
	margin-left: -2px;
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 태그 클라우드 */
/* ───────────────────────────────────────────────────────── */

.tag-page .container {
	display: flex;
	flex-wrap: wrap;
}

.tag-page .content {
	order: 2;

	width: 100%;
}

.tag-page .paging {
	width: 100%;
	margin-top: 0;
	margin-bottom: var(--s-item-gutter);
	padding: 0px;
	box-shadow: none;
	background-color: transparent;
	
	transition: box-shadow 0.5s;
}

.tag-page .paging-search {
	position: relative;

	width: 100%;
	margin-left: 2px;
	border-radius: calc(var(--s-border-radius) - 5px);
	box-shadow: inset 0px -3px 0px var(--base-color), 0px 2px 4px 0px var(--shadow-color);
	padding: 10px 20px;
	background-color: var(--content-background-color);

	transition: box-shadow 0.7s;
}

.tag-page .paging-search::after {
	content: "";

	opacity: 0;

	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	border-radius: calc(var(--s-border-radius) - 5px);

	box-shadow: inset 0px 2px 4px 0px var(--base-color4);

	transition: opacity 0.7s;
}

.tag-page .paging-search:focus-within {
	box-shadow: none;
}

.tag-page .paging-search:focus-within::after {
	opacity: 1;
}

.tag-page .search-input:focus::placeholder {
	color: var(--base-color5) !important;
}

.tag-page .search-input {
	position: relative;
	z-index: 2;
}

.tag-page .search-input::placeholder {
	transition: color 0.7s;
}

.taglog {
	border-radius: var(--s-border-radius);
	padding: var(--content-padding);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);
}

.tag-category {
	display: inline-flex;
	align-items: center;

	margin-bottom: 25px;

	font-family: "Poppins", "Pretendard";
	text-transform: capitalize;
}

.tag-category::before {
	content: "";
	display: inline-block;
	width: 30px;
	height: 2px;
	margin-right: 10px;
	background-color: var(--font-color);
	vertical-align: middle;
}

.tag-count {
	margin-left: 5px;
	
	font-weight: bold;
	color: var(--point-color);
}

.tag-container { 
	display:flex; 
	flex-wrap:wrap; 
	
	gap:15px; 
}

.tag-item {
	display: inline-flex;
	align-items: center;

	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	box-shadow: inset 4px 4px 4px var(--base-color), 2px 2px 4px var(--base-color3);
	padding: 5px 12px;
	background-color: var(--base-color2);

	font-size: calc(var(--font-size) - 1px);
	font-weight: 500;
	color: var(--base-color7);
	
	cursor: pointer;
}

.tag-item .remove-icon { 
	width: calc(var(--font-size) + 1px);
	height: calc(var(--font-size) + 1px);
	margin-left: 5px; 
	color: var(--base-color7);
}

.tag-link::before {
	content: "#";

	margin: 0 2px;
}

.taglog .cloud1 {
	font-size: var(--font-size);
	font-weight: bold;
	color: var(--point-color2);
}

.taglog .cloud1 + .remove-icon { 
	color: var(--point-color2);
}

.taglog .cloud2 {
	color: var(--point-color);
	font-weight: 700;
}

.taglog .cloud2 + .remove-icon { 
	color: var(--point-color);
}

.taglog .cloud3 {
	font-weight: 500;
	color: var(--point-color);
}

.taglog .cloud3 + .remove-icon { 
	color: var(--point-color);
}

.taglog .cloud4 {
	color: var(--point-color);
}

.taglog .cloud4 + .remove-icon { 
	color: var(--point-color);
}

.taglog .cloud5 {
	color: var(--base-color7);
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 댓글 & 방명록 */
/* ───────────────────────────────────────────────────────── */

/* reset */
body .tt-wrap-cmt .tt-link-user, .tt-box-write .tt-xe-label, .tt-list-reply-comment .tt-item-reply, .tt-btn-cancel, .tt-item-reply .tt_cmt_info .tt_txt_g, .tt-item-reply, .tt-item-reply .tt-list-reply-comment, .tt-area-write .tt-box-account input, .tt-wrap-cmt .tt_desc, .tt-btn_register, .tt-txt-mention, .tt-wrap-cmt .tt_date, .tt-link-comment .tt_txt_g, .tt-wrap-cmt .tt-link-comment, .tt-box-total .tt_txt_g, .tt-box-total .tt_num_g, .tt-wrap-cmt .tt-wrap-link-comment, .tt-area-reply, .tt-item-reply .tt_cmt_info, .tt-link-comment .tt_num_g, .tt-box-textarea textarea, .tt-box-textarea div, .tt-box-textarea .tt_txt_user { 
	margin: 0;
	border: 0;
	padding: 0;

	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
}


/* start */

.tt-comment-cont {
	display: flex;
	flex-wrap: wrap;
}


/* header */

.tt-box-total {
	display: none;
}

.tt-box-total .tt_num_g {
	padding-left: 10px;

	font-size: calc(var(--font-size) - 2px);
}


/* 리플 - 리스트 스타일 */

.tt-comment-cont .tt-area-reply {
	position: relative;
	order: 3;

	width: 100%;

	transition: all var(--transition);
}

.tt-comment-cont .tt-area-reply:empty {
	margin-top: 0;
}

.tt-list-reply > .tt-item-reply {
	width: 100%;
	margin-top: var(--s-item-gutter);
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background-color: var(--content-background-color);
}


.tt-list-reply .user-title {
	display: block;

	width: 100%;
	border-bottom: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius) var(--s-border-radius) 0 0;
	padding: 15px;

	font-size: var(--font-size);
	text-align: center;

	pointer-events: none;
}


.tt-list-reply {
	display: flex;
	flex-direction: column-reverse;

	border: 0;
	border-radius: var(--s-border-radius);
}

.tt_btn_prev_more {
	margin-top: var(--s-item-gutter);
  border-radius: var(--s-border-radius);
  box-shadow: 0px 2px 4px 0px var(--shadow-color);
  background-color: var(--content-background-color)
}

.tt-comment-highlight {
	background-color: var(--point-color-bright);
}

/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.user-title::before {
	content: "🌳";

	margin-right: 4px;
}

/* ───────────────────────────────────────────────────────── */

/* ───────────────────────────────────────────────────────── */
/* 문구변경 */
/* ───────────────────────────────────────────────────────── */

.user-title::after {
	content: " 님과의 대화";
}

/* ───────────────────────────────────────────────────────── */


/* 리플 - 고정 */

.tt-list-reply > .tt-item-reply.has-fixed {
	order: 1;
}

.tt-list-reply > li.rp_general + li.rp_general > .tt-list-reply-comment > .tt-item-reply:last-child .tt-wrap-cmt {
	border-radius: 0;
}

.tt-item-reply .tt_cmt_info {
	width: -moz-fit-content;
	width: fit-content;
	margin: 30px auto 0 auto;
	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	padding: 2px 10px;
	background-color: var(--base-color2);
}

.tt-item-reply .tt_cmt_info .tt_ico_fixed {
	width: var(--font-size);
	height: var(--font-size);
	margin-right: 5px;
	margin-bottom: 0;
	background-size: 100px;
	--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 3V5H17V11L19 14V16H13V23H11V16H5V14L7 11V5H6V3H18Z'%3E%3C/path%3E%3C/svg%3E");
	-webkit-mask-image: var(--svg);
	-webkit-mask-repeat: no-repeat;
	background-image: var(--svg);
	mask-image: var(--svg);
	mask-repeat: no-repeat;
	background-color: var(--point-color2);
}

.tt_ico_fixed {
	width: var(--font-size);
	height: var(--font-size);
	background-size: 100px;
	--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.8273 1.68994L22.3126 10.1752L20.8984 11.5894L20.1913 10.8823L15.9486 15.125L15.2415 18.6605L13.8273 20.0747L9.58466 15.8321L4.63492 20.7818L3.2207 19.3676L8.17045 14.4179L3.92781 10.1752L5.34202 8.76101L8.87756 8.0539L13.1202 3.81126L12.4131 3.10416L13.8273 1.68994ZM14.5344 5.22548L9.86358 9.89631L7.0417 10.4607L13.5418 16.9608L14.1062 14.1389L18.7771 9.46812L14.5344 5.22548Z'%3E%3C/path%3E%3C/svg%3E");
	-webkit-mask-image: var(--svg);
	-webkit-mask-repeat: no-repeat;
	background-image: var(--svg);
	mask-image: var(--svg);
	mask-repeat: no-repeat;
	background-color: var(--base-color7);
}

.tt-item-reply .tt_cmt_info .tt_txt_g {
	color: var(--point-color2);
}

.has-fixed .tt-wrap-cmt .tt-box-modify {
	top: 35px;
}

.has-fixed .tt-wrap-cmt .tt_desc {
	border: 0;
	box-shadow: 1px 1px 7px #fff inset, -2px -2px 1px var(--point-color2-deep) inset, 2px 2px 3px var(--point-color2-bright);
	background-color: var(--point-color2);

	color: #fff;
}


/* 리플 - 썸네일 */

.tt-box-thumb {
	margin-right: 0;
}

.tt-list-reply-comment .admin .tt-box-thumb {
	order: 1;
}

.tt-box-thumb > a, .tt-area-reply .tt-thumb-wrap {
	display: block;

	margin-top: 6px;
	border-radius: 100%;
	padding: 6px;
	box-shadow: inset 2px -2px 6px var(--base-color5), 0px 0px 6px var(--base-color);
}

.tt-area-reply .rp-form .tt-thumb-wrap {
	margin-top: 0;
}

.tt-area-reply + .rp-form .tt-box-thumb {
	position: absolute;
	top: 0px;
	transform: translateX(-50%);
	left: 50%;
}

.tt-thumbnail {
	width: 40px;
	height: 40px;
	border-radius: 100%;
}

.tt-area-reply + .rp-form .tt-thumbnail {
	width: 50px;
	height: 50px;
}

.tt-thumbnail::after {
	border-radius: 100%;
}


/* 리플 디자인 */

.tt-wrap-cmt {
	flex-wrap: nowrap;

	gap: 15px;
	padding: 30px;
}

.tt-list-reply > .tt-item-reply:last-child > .tt-wrap-cmt {
	border-top: 0;
}

.tt-list-reply > .tt-item-reply:first-child > .tt_cmt_info + .tt-wrap-cmt {
	border-top: 0;
}

.tt-wrap-cmt .tt-box-content {
	margin-top: 5px;
}

.tt-wrap-cmt .tt-box-meta {
	margin-bottom: 5px;
}

.tt-wrap-cmt .tt-link-user {
	font-weight: 600;
	color: var(--base-color7);
}

.tt-wrap-cmt .tt_desc {
	display: block;

	max-width: 80%;
	width: -moz-fit-content;
	width: fit-content;
	border: 1px solid var(--base-color3);
	border-radius: 0px 30px 30px 30px;
	box-shadow: 1px 1px 7px #fff inset, -2px -2px 1px var(--base-color4) inset, 2px 2px 3px var(--base-color2);
	padding: 12px 20px;
	background: var(--base-color3);
	
	color: var(--base-color6);
}

.tt-wrap-cmt .tt-box-modify {
	top: 15px;
	right: 20px;
}

.tt-wrap-cmt .tt-button-modify {
	opacity: 0.5;
}

.tt-list-reply .tt-list-reply-comment .tt-wrap-cmt {
	margin-top: -20px;
	border-top: 0;
	padding-top: 0;
}

.tt-list-reply .rp-form + .tt-list-reply-comment .tt-wrap-cmt {
	margin-top: 20px;
}

.tt-list-reply .tt-list-reply-comment .tt-item-reply:has(.rp-form) + .tt-item-reply .tt-wrap-cmt {
	margin-top: 20px;
}

.tt-list-reply > .has-fixed + li:nth-child(2) .tt-list-reply-comment .tt-item-reply:last-of-type .tt-wrap-cmt {
	border-radius: 0 0 var(--s-border-radius) var(--s-border-radius);
}

.tt-list-reply > li:first-child:not(.has-fixed) .tt-list-reply-comment .tt-item-reply:last-of-type .tt-wrap-cmt {
	border-radius: 0 0 var(--s-border-radius) var(--s-border-radius);
}

.tt-list-reply-comment .tt-item-reply::before {
	display: none;

	top: 45px;
	border-color: var(--base-color5);
}

.tt_item_modify .tt_desc, .tt_item_modify .tt_desc_more, .tt_item_secret > .tt-wrap-cmt .tt_desc {
	color: var(--base-color6);
}

.tt-wrap-info {
	gap: 8px;
	margin-top: 10px;
	margin-left: 5px;

	font-size: calc(var(--font-size) - 1px);
}

.tt-wrap-cmt .tt_date {
	display: flex;
	align-items: center;

	color: var(--base-color5);
}

.tt-link-comment .tt_txt_g {
	color: var(--base-color5);
}

.tt-link-comment .tt_num_g {
	margin-left: 6px;

	font-size: calc(var(--font-size) - 2px);
	color: var(--base-color5);
}

.tt-wrap-info .tt_date + .tt-wrap-link-comment {
	display: flex;
}

.tt-wrap-info .tt_date + .tt-wrap-link-comment::before {
	content: "﹣";
	display: inline-flex;
	justify-content: center;
	align-items: center;

	position: unset;

	width: unset;
	height: unset;
	margin-right: 8px;
	background-color: transparent;

	color: var(--base-color6);
}

.tt-list-reply-comment .admin .tt-wrap-desc {
	text-align: right;
}

.tt-list-reply-comment .admin .tt-wrap-cmt .tt_desc {
	margin-left: auto;
	border: 0;
	border-radius: 30px 0px 30px 30px;
	box-shadow: 1px 1px 7px #fff inset, -2px -2px 1px var(--point-color-deep) inset, 2px 2px 3px var(--point-color-bright);
	background-color: var(--point-color);

	color: #fff;
}

.tt-list-reply-comment .admin .tt-box-meta {
	justify-content: flex-end;
}

.tt-list-reply-comment .admin .tt-wrap-info {
	justify-content: flex-end;

	margin-right: 5px;
}

.tt-wrap-cmt .tt-list-modify {
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background-color: var(--content-background-color);
	overflow: hidden;
}

.tt-wrap-cmt .tt-list-modify a:hover {
	background-color: transparent;
	color: var(--point-color);
}

.tt-wrap-cmt .tt_box_pwd {
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background-color: var(--content-background-color);
	overflow: hidden;
}

.tt_form_pwd .tt_inp_g, .tt_form_pwd .tt_inp_g:hover, .tt_form_pwd .tt_inp_g:focus {
	border: 1px solid var(--base-color4);
	border-radius: 0;
	background-color: var(--base-color);
}

.tt_form_pwd .tt_btn_submit, .tt_form_pwd .tt_btn_submit:disabled {
	border: 0;
	background-color: var(--base-color4);
}

.tt-list-reply-comment .tt-wrap-cmt .tt-button-modify {
	top: 10px;
	right: -10px;

	opacity: 0.2;
}

.tt-wrap-cmt .tt-box-modify.tt-box-modify-open .tt-button-modify, .tt-wrap-cmt .tt-button-modify:hover {
	background-color: var(--base-color2);
}


/* 리플 - 멘션 */

.tt-area-reply .tt-list-reply .tt-txt-mention {
	display: inline-block;

	margin: 0 10px 2px -2px;
	border-radius: calc(var(--s-border-radius) - 10px);
	padding: 1px 6px;
	background-color: var(--point-color-bright);
	
	color: #fff;
}

.tt-wrap-cmt .tt-txt-mention::before {
	content: none;
}


/* 리플 - 비밀댓글 아이콘 */

.tt_ico_lock {
	width: var(--font-size);
	height: var(--font-size);
	margin-left: 6px;
	background-size: 90px;
	--svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 8V7C6 3.68629 8.68629 1 12 1C15.3137 1 18 3.68629 18 7V8H20C20.5523 8 21 8.44772 21 9V21C21 21.5523 20.5523 22 20 22H4C3.44772 22 3 21.5523 3 21V9C3 8.44772 3.44772 8 4 8H6ZM19 10H5V20H19V10ZM11 15.7324C10.4022 15.3866 10 14.7403 10 14C10 12.8954 10.8954 12 12 12C13.1046 12 14 12.8954 14 14C14 14.7403 13.5978 15.3866 13 15.7324V18H11V15.7324ZM8 8H16V7C16 4.79086 14.2091 3 12 3C9.79086 3 8 4.79086 8 7V8Z'%3E%3C/path%3E%3C/svg%3E");
	-webkit-mask-image: var(--svg);
	-webkit-mask-repeat: no-repeat;
	background-image: var(--svg);
	mask-image: var(--svg);
	mask-repeat: no-repeat;
	background-color: var(--base-color7);
}


/* 리플 - 입력 폼*/

.guestbook-remove-btn {
	display: none;
	opacity: 0;
	visibility: hidden;

	transform: opacity 0.6s var(--transition);
}

.guestbook-on .guestbook-remove-btn {
	opacity: 1;
	visibility: visible;
	display: inline-flex;
	justify-content: center;
	align-items: center;

	position: fixed;
	z-index: 11;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
}

.guestbook-on  .guestbook-remove-btn .remove-icon {
	width: calc(var(--font-size) + 10px);
	height: calc(var(--font-size) + 10px);
	color: var(--base-color7);
}

.guestbook-write-btn {
	transform: translateZ(0);

	width: 100%;
	border-radius: calc(var(--s-border-radius) - 5px);
	padding: 9px 20px;
	background: var(--content-background-color);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);

	text-align: center;

	transition: transform var(--transition);
}

.guestbook-write-btn:hover, .guestbook-write-btn:focus {
	transform: translateY(3px) translateZ(0);
}

.rp-form {
	width: 100%;
}

.rp-form-wrap {
	width: 100%;
	border-radius: var(--s-border-radius);
	padding: 30px;
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background-color: var(--form-color);
	overflow: hidden;
}

.guestbook .tt-area-reply + .rp-form {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	background-color: var(--background-color);

	transition: opacity var(--transition);
}

.guestbook .tt-area-reply + .rp-form:not(.opacity-1) {
	display: none;
	opacity: 0;

	transition: opacity var(--transition) 0.1s;
}

.guestbook .tt-area-reply + .rp-form:not(.opacity-1) .rp-form-wrap {
	transform: translate(-50%, -100%) translateZ(0);
}

.guestbook .tt-area-reply + .rp-form .rp-form-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) translateZ(0);

	width: var(--s-content-width);
	box-shadow: none;

	transition: transform var(--transition);
}

.tt-area-reply + .rp-form .tt-area-write {
	position: relative;

	margin-top: 10px;
	padding-top: 110px;
}

.tt-area-reply .rp-form {
	border-radius: 0 0 var(--s-border-radius) var(--s-border-radius);
	padding: 20px 30px 30px 30px;
	background-color: var(--base-color2);
	overflow: hidden;
}

.tt-area-reply .tt-list-reply-comment .tt-item-reply:not(:last-child) .rp-form {
	border-radius: 0;
}

.tt-area-write {
	display: flex;
	align-items: flex-end;

	gap: 20px;
}

.tt-area-reply + .rp-form .tt_wrap_write {
	justify-content: flex-end;

	width: 100%;
}

.tt_wrap_write {
	display: flex;
	flex-wrap: wrap;

	gap: 5px;
}

.tt-area-write .tt-box-account {
	gap: 10px;
	width: 100%;
}

.tt-area-reply + .rp-form .tt-area-write .tt-box-account {
	margin-top: -30px;
}


/* 리플 - 비로그인 시 이름, 비밀번호 입력 폼*/

.tt-area-write .tt_wrap_write .tt-box-account input {
	overflow: auto;
	width: 100%;
	border: 0;
	border-radius: var(--s-border-radius);
	padding: 7px 15px;
	background: none;
	transition: all var(--transition);
	box-shadow: inset 2px 2px 5px 0px var(--form-shadow-dark), inset -3px -3px 6px var(--form-shadow-bright);

	-webkit-appearance: none;
}

.tt-area-write .tt_wrap_write .tt-box-account input::placeholder {
	color: var(--base-color7);

	transition: all var(--transition);
}

.tt-area-write .tt_wrap_write .tt-box-account input:focus {
	box-shadow: inset 4px 4px 4px 0px var(--form-shadow-dark), inset -4px -4px 6px var(--form-shadow-bright);
}

.tt-area-write .tt_wrap_write .tt-box-account input:focus::placeholder {
	color: var(--base-color6);
}


/* 리플 - 내용 입력 폼 */

.tt-box-textarea {
	width: 100%;
	margin-bottom: 0;
}

.tt-comment-cont form .tt-box-textarea .tt-inner-g {
	width: 100%;
	min-height: unset;
	border: 0;
	border-radius: 30px;
	padding: 15px 20px;
	background: none;
	box-shadow: inset 2px 2px 5px 0px var(--form-shadow-dark), inset -3px -3px 6px var(--form-shadow-bright);
	overflow-y: scroll;
	scrollbar-width: none;

	transition: box-shadow 0.5s;
}

.tt-comment-cont .tt-box-account + .tt-box-textarea .tt-inner-g {
	min-height: 100px;
}

.tt-comment-cont form .tt-box-textarea.tt-input-textarea .tt-inner-g {
	box-shadow: inset 4px 4px 4px 0px var(--form-shadow-dark), inset -4px -4px 6px var(--form-shadow-bright);
}

.tt-comment-cont form .tt-box-textarea .tt-inner-g::-webkit-scrollbar {
	display: none;
}

/* 답글에서 내용 입력 폼 */
.tt-area-reply .tt-area-write .tt-box-account input, .tt-comment-cont .tt-area-reply form .tt-box-textarea .tt-inner-g {
	border: 1px dotted var(--base-color4);
	box-shadow: inset -3px -3px 6px var(--base-color), inset 2px 2px 5px var(--base-color4);
}

.tt-area-reply .tt-area-write .tt-box-account input:focus, .tt-comment-cont .tt-area-reply form .tt-box-textarea.tt-input-textarea .tt-inner-g {
	box-shadow: inset -4px -4px 6px var(--base-color), inset 3px 3px 5px var(--base-color4);
}

.tt-box-textarea .tt-cmt[contenteditable='true']:empty::before {
	color: var(--base-color7);

	transition: all var(--transition);
}

.tt-box-textarea.tt-input-textarea .tt-cmt[contenteditable='true']:empty::before {
	color: var(--base-color6);
}

.tt-box-textarea .tt_txt_user {
	display: none;

	margin-bottom: 7px;

	font-weight: 600;
	color: var(--point-color2);
}

.tt-area-reply + .rp-form .tt-box-textarea .tt_txt_user {
	display: flex;
	align-items: center;
	position: absolute;
	top: 60px;
	left: 50%;
	transform: translateX(-50%);
}

.tt-box-write {
	justify-content: flex-end;

	gap: 10px;
}

.tt-area-reply .tt-box-write {
	justify-content: center;

	order: -1;

	gap: 20px;
	width: 100%;
	height: 20px;
	margin-bottom: 10px;
}

.secret-btn {
	display: inline-flex;
	align-items: center;

	gap: 5px;
	height: 35px;
	border-radius: var(--s-border-radius);
	box-shadow: inset 3px 3px 4px var(--form-shadow-bright), 3px 3px 4px var(--form-shadow-dark);
	padding: 2px 13px;
	background-color: var(--form-color);

	color: var(--point-color2);
}

.secret-btn + .secret-btn {
	display: none;
}

.tt-xe-label.checked .secret-btn {
	box-shadow: inset 3px 3px 4px var(--form-shadow-dark), 3px 3px 4px var(--form-shadow-bright);
}

.secret-btn .secret-icon {
	width: calc(var(--font-size) - 1px);
	height: calc(var(--font-size) - 1px);
	color: var(--point-color2);
}

.tt-box-write .tt-xe-input-helper {
	display: none; 
}

.tt-area-reply .tt-box-write .tt-xe-label .secret-btn {
	box-shadow: none;
	padding: 0;
	background-color: transparent;

	color: var(--base-color7);
}

.tt-area-reply .tt-box-write .tt-xe-label .secret-icon {
	color: var(--base-color7);
}

.tt-area-reply .tt-area-write .tt-btn-cancel {
	order: -1;

	min-width: unset;

	font-weight: normal;
	color: var(--base-color7);;
}

.tt-comment-cont .tt-btn_register {
	display: inline-flex;
	justify-content: center;
	align-items: center;

	width: 35px;
	height: 35px;
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 3px var(--form-shadow-dark);
	background-color: var(--point-color2);

	font-size: var(--font-size);
	font-weight: 700;
	color: #fff;
	transition: all var(--transition);
}

.tt-comment-cont .tt-area-reply .tt-btn_register {
	width: 30px;
	height: 30px;
	border: 0;
	box-shadow: none;
	background-color: transparent;
}

.tt-btn_register:hover, .tt-btn_register:focus {
	border: 0;
}

.submit-icon {
	width: calc(var(--font-size) + 2px);
	height: calc(var(--font-size) + 2px);
	margin-top: 1px;
	margin-left: -1px;
	color: #fff;
}

.tt-comment-cont .tt-area-reply .tt-btn_register .submit-icon {
	color: var(--base-color7);
}

.tt_box_cheers {
	display: none;
	
	margin-top: var(--s-item-gutter);
	border-radius: var(--s-border-radius);
	padding: var(--content-padding);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);
	transition: opacity var(--transition);
}

/* ───────────────────────────────────────────────────────── */
/* 이모지변경 */
/* ───────────────────────────────────────────────────────── */

.guestbook-write-btn::before {
	content: "✍️";

	margin-right: 4px;
}

/* ───────────────────────────────────────────────────────── */


/* ───────────────────────────────────────────────────────── */
/* 문구변경 */
/* ───────────────────────────────────────────────────────── */

.guestbook-write-btn::after {
	content: "여기를 눌러 메세지를 날려 보세요!";
}

.tt-box-textarea .tt-cmt[contenteditable='true']:empty::before {
	content: "내용을 입력하세요.";
}

.tt-box-write .tt-xe-label .secret-btn::after {
	content: "퍼뜨리기";
}

.tt-box-write .tt-xe-label.checked .secret-btn::after {
	content: "비밀이야!";
}

/* ───────────────────────────────────────────────────────── */


/* 네임카드 */ 

.content .tt_box_namecard {
	margin: var(--s-item-gutter) 0;
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background: var(--content-background-color);
}

.content .tt_box_namecard .tt_btn_subscribe {
	border: 0;
	background-color: var(--base-color3);
}


/* ───────────────────────────────────────────────────────── */
/* 전체 페이징 */
/* ───────────────────────────────────────────────────────── */

#tt-body-guestbook .paging .paging-link{
	display: none;
}

.paging {
	display: flex;
	justify-content: flex-end;
	align-items: center;

	margin-top: var(--s-item-gutter);
	border-radius: var(--s-border-radius);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	padding: 7px;
	
	background: var(--content-background-color);

	text-align: right;

	transition: opacity var(--transition);
}

.paging-search {
	display: inline-flex;
	align-items: center;

	gap: 5px;
	width: 40%;
	margin-right: auto;
	border-radius: calc(var(--s-border-radius) - 5px);
	box-shadow: inset 1px 1px 3px var(--base-color4), inset -2px -2px 6px var(--base-color);
	padding: 7px 10px;
	background-color: var(--base-color2);
}

.search-icon {
	width: calc(var(--font-size) - 1px);
	height: calc(var(--font-size) - 1px);

	color: var(--base-color6);
}

.search-input {
	width: calc(100% - var(--search-width) - var(--search-mar));

	font-size: var(--font-size);

	-webkit-appearance: none;
}

.paging-link {
	display: inline-flex;

	margin-right: 10px;
}

.paging-icon {
	width: calc(var(--font-size) + 3px);
	height: calc(var(--font-size) + 3px);
	color: var(--base-color6);
}

:where(.no-more-prev, .no-more-next) .paging-icon {
	color: var(--base-color4);
}

/* ───────────────────────────────────────────────────────── */



/* ───────────────────────────────────────────────────────── */
/* 탑버튼 */
/* ───────────────────────────────────────────────────────── */

.top-wrap { 
	position: sticky;
	bottom: 30px; 
	margin-top: -55px;
	margin-left: calc(100% - 40px); 
}

.top-btn { 
	display: inline-flex;	
	visibility: hidden; 
	opacity: 0; 

	justify-content: center;
	align-items: center;

	border-radius: 60% 70% 70% 50%/50% 70% 50% 50%;
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	padding: 10px;
	background-color: var(--content-background-color);

	color:var(--base-color5);

	transition: opacity var(--transition);
}

.top-btn-icon {
	width: calc(var(--font-size) + 3px);
	height: calc(var(--font-size) + 3px);
	fill: var(--base-color5);
	color: var(--base-color5);
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 로그인 핸들러 */
/* ───────────────────────────────────────────────────────── */

.login-check-box {
	position: fixed;
	top: 20px;
	right: 20px;
}

.log-check-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;

	width: 35px;
	aspect-ratio: 1/1;
	border-radius: calc(var(--s-border-radius) * 1000);
	box-shadow: 0px 2px 4px 0px var(--shadow-color);
	background-color: var(--content-background-color);
}

.log-icon {
	width: 20px;
	height: 20px;
	color: var(--point-color);
	stroke-width: 1.5px;
}

.log-wrap {
	opacity: 0;

	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	background-color: transparent;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);

	transition: opacity var(--transition);
}

.log-wrap:not(.active) {
	display: none;
}

.log-box {
	display: flex;

	flex-wrap: wrap;
	justify-content: center;
	align-items: center;

	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 450px;
	border: 1px solid var(--base-color4);
	border-radius: var(--s-border-radius);
	background-color: var(--content-background-color);

	text-align: center;
}

.log-alert {
	width: 100%;
	padding: 20px 20px 30px 20px;

	font-weight: 600;
}

.log-img-wrap {
	width: 100%;
}

.log-img {
	width: 50px;
	height: 50px;
	border-radius: 100%;
}

.log-user-wrap {
	width: 100%;
	border-bottom: 1px solid var(--base-color4);
	padding-top: 10px;
	padding-bottom: 30px;
}

.log-user {
	width: -moz-fit-content;
	width: fit-content;
	margin: 0 auto;
	border: 1px solid var(--base-color3);
	border-radius: var(--s-border-radius);
	padding: 3px 16px;
	background-color: var(--background-color);
}

.log-user:empty {
	display: none;
}

.log-cancel { 
	width: 50%;
	border-left: 1px solid var(--base-color4);
	padding: 10px;

	color: var(--base-color5);
}

.log-btn {
	width: 50%;
	padding: 10px;

	color: var(--point-color);
}

/* ───────────────────────────────────────────────────────── */
/* 문구변경 */
/* ───────────────────────────────────────────────────────── */

.log-cancel::before {
	content: "안 할래요";
}

.log-btn-message::before {
	content: "할래요";
}

.log-alert::after {
	content: "로그인 하시겠어요?";

	font-weight: normal;
}

.login .log-alert::after {
	content: "정말 로그아웃 하시겠어요?";
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 스크롤바 */
/* ───────────────────────────────────────────────────────── */

::-webkit-scrollbar {
	width: var(--scrollbar-width);
}

::-webkit-scrollbar-track {
	border-radius: 0;
	background: none;
}

::-webkit-scrollbar-thumb {
	background-color: var(--base-color5);
}

::-webkit-scrollbar-thumb:hover {
	background-color: var(--point-color2);
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 드래그 */
/* ───────────────────────────────────────────────────────── */

::selection {
	color: var(--point-color);
	background: var(--base-color2);
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 페이드 효과 */
/* ───────────────────────────────────────────────────────── */

.active {
	display: block;
	visibility: visible;
	transition: all var(--transition);
}

.hidden {
	display: none;
}

.opacity-1 {
	opacity: 1 !important;
}

/* ───────────────────────────────────────────────────────── */







/* ───────────────────────────────────────────────────────── */
/* 반응형 */
/* ───────────────────────────────────────────────────────── */


/* 태블릿 */

@media only screen and (max-width : 1300px ) {
	* {
		-webkit-tap-highlight-color: transparent
	}

	html {
		overflow-x: hidden;
	}

	body {
		overflow-x: hidden;
		overflow-y: unset;
	}

	.article-style1 figure[data-ke-type='opengraph'] div.og-image,
	#tt-body-page .article-style1 figure[data-ke-type='opengraph'] div.og-image {
		width: 50px;
		height: 50px;
 }
	.wrap, .layout1 .wrap {
		display: block;

		width: 94%;
		margin: 4% auto 90px auto;
	}

	.sidebar {
		width: 100%;
		margin-bottom: var(--s-item-gutter);
	}

	.container {
		width: 100%;
	}

	.nav-bar {
		position: fixed;
		z-index: 10;
		bottom: 0;
		left: 1%;

		width: 98%;
		margin: 0 auto;
		border: 1px solid var(--base-color4);
		border-radius: var(--s-border-radius) var(--s-border-radius) 0 0;
		box-shadow: none;
		padding: 25px 20px;
		background-color: var(--base-color2);

		transition: all var(--transition);
	}

	.nav-btn {
		gap: 25px;
	}

	.cate-open {
		-webkit-appearance: none
	}

	.nav-btn .nav-btn-item:last-child {
		display: none;
	}

	.nav-btn-item, .cate-open {
		width: calc(var(--font-size) + 5px);
		height: calc(var(--font-size) + 5px);
	}

	.nav-icon {
		width: 19px;
		height: 19px;
		color: var(--base-color7);
	}
	
	.category {
		top: 0px;
		left: 0;
		width: 100%;
		border-radius: 0 0 calc(var(--s-border-radius) - 5px) calc(var(--s-border-radius) - 5px);
	}

	.category {
		padding: 0;
	}

	.blog-desc {
		border-bottom: 0;
	}

	.blog-info {
		z-index: 2;
	}

	.list-gallery .list-container, .card .list-container {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.list-feed2 .list-item {
		width: 100%;
		overflow: hidden;
	}

	.top-wrap, .copyright {
		display: none;
	}

	.login-check-box {
		display: none;
	}

	button:focus-visible {
	border-radius: inherit;
	outline: none;
	}

	.highlight-prev, .highlight-next {
		width: 30px;
		height: 30px;
	}
	
	.highlight-icon {
		width: 25px;
		height: 25px;
	}

	.tooltip {
		display: none !important;
	}

}


/* 모바일 */

@media only screen and (max-width : 750px) {
	:root {
		--content-padding: 20px;
	}

	.nav-title { 
		display: none;
	}

	.title-img {
		display: block;
		margin: 10px auto;
	}

	.blog-info {
		margin: 0;
		text-align: center;
	}

	.follow-box {
		width: 90%;
	}

	nav.category {
		width: 94vw;
	}

	.highlight24 {
		width: 100vw;
		height: 100vh;
		aspect-ratio: unset;
		border-radius: 0;
	}

	.highlight-prev {
		position: absolute;
		z-index: 99;
		left: 0;
	} 
	
	.highlight-next {
		position: absolute;
		z-index: 99;
		right: 0;
	}

	.highlight24.second .highlight24-user-name {
		display: none;
	}

	.highlight24.second .highlight24-bottom {
		margin-left: 0;
	}

	.highlight24-sum {
 	 -webkit-line-clamp: 5;
	}

	.cover-gallery .cover-title {
		font-size: 13px;
	}

	.cover-gallery .cover-sum {
		display: none;
	}

	.cover-link .cover-container {
		display: grid;
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.list-gallery .list-container {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.list-gallery2 .list-container {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.list-webzine .list-info {
		margin-right: 25px;
	}

	.list-webzine .list-title {
		font-size: calc(var(--font-size) + 1px);
	}

	.list-webzine .list-cate, .list-webzine .list-date {
		font-size: calc(var(--font-size) - 2px);
	}

	.list-webzine .list-img, .list-webzine .list-img + .list-noimg {
		width: 70px;
		height: 70px;
	}

	.list-feed .list-container {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.list-feed .list-thumb {
		aspect-ratio: 3/2;
	}

	.list-card .list-container {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}

	.list-card .list-info {
		padding: 8vw;
	}

	.list-card .list-sum {
		-webkit-line-clamp: 4;
	}

	.article-style2 .article-title {
		padding-top: 5px;
	}

	.related-list {
		grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
	}

	.related-info {
		opacity: 1;
	}

	.cover-feed .cover-title {
		overflow: hidden;

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

	.cover-feed .cover-sum, .cover-feed .cover-cate-wrap {
		display: none;
	}

	.guestbook .tt-area-reply + .rp-form .rp-form-wrap {
		width: 94vw;
	}

	.comment-on {
		margin-right: unset;
		scrollbar-width: unset;
	}

	body:not(.comment-on) .article-comment {
	scrollbar-width: unset;
}

	.comment-on::-webkit-scrollbar, body:not(.comment-on) .article-comment::-webkit-scrollbar  {
		display: unset;
	}

	.article-comment > div {
		width: 94vw;
	}

	.article-comment .tt-area-reply:empty + .rp-form {
		width: 94vw;
	}

	.tt-wrap-cmt .tt_desc {
		max-width: unset;
	}

	.tt-area-reply .rp-form .tt-box-thumb {
		display: none;
	}
	
	.paging-search {
		width: 60%;
	}

}



/* 카피라이트 */
.copyright{position:fixed;bottom:7px;right:7px;line-height:0}.copyright:hover .moon{animation:spin 3s infinite linear}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.copyright svg{fill:var(--base-color5)}.copyright:hover .earth{fill:#0092ff}.copyright:hover .moon svg{fill:var(--point-color)}.moon{position:absolute;top:-5px;left:-5px;width:24px;height:24px;animation:spin 3s infinite linear paused}