/*!
Theme Name: unikpop
Theme URI: https://zanpress.com/
Author: zanpress
Author URI: https://zanpress.com/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: unikpop
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

comzan is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

:root {
	--bg: #fff;
	--bggrey: #f3f3f6;
	--white: #fff;
	--black: #000000;
	--text: #000000;
	--textgrey: #555;
	--textplace: #aaa;
	--textsub: #8b95a1;
	--line: #dfdfdf;
	--linedeep: #c1c1c1;
	--linelight: #eee;
	--linesub: #d0dde7;
	--main: #ea4c89;
	--blue: #1265be;
	--jeju: #e35c00;
	--sub: #fff5fd;
	--red: #d93025;
	--green: #0fda4e;
	--gradi: linear-gradient(135deg, var(--main) 0%, #ffbd73 100%);
	--shadowlg: rgba(0, 0, 0, 0.1) 0px 0px 1px 0px, rgba(0, 0, 0, 0.15) 0px 16px 30px 4px;
	--shadowsml: 0 1px 2px rgba(0, 0, 0, 0.1);
	--imgtr: linear-gradient(to bottom, transparent 0%, transparent 8.1%, rgba(0, 0, 0, 0.001) 15.5%, rgba(0, 0, 0, 0.003) 22.5%, rgba(0, 0, 0, 0.005) 29%, rgba(0, 0, 0, 0.008) 35.3%, rgba(0, 0, 0, 0.011) 41.2%, rgba(0, 0, 0, 0.014) 47.1%, rgba(0, 0, 0, 0.016) 52.9%, rgba(0, 0, 0, 0.019) 58.8%, rgba(0, 0, 0, 0.022) 64.7%, rgba(0, 0, 0, 0.025) 71%, rgba(0, 0, 0, 0.027) 77.5%, rgba(0, 0, 0, 0.029) 84.5%, rgba(0, 0, 0, 0.03) 91.9%, rgba(0, 0, 0, 0.03) 100%);
	/* --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif; */
	--font: 'Mona Sans','Helvetica Neue',Helvetica,Arial,sans-serif;
}

[data-theme="dark"] {
	--bg: #1a1a1d;
	--bggrey: #26262b;
	--text: #f7f7f7;
	--textgrey: #aaa;
	--textplace: #666;
	--line: #444;
	--linedeep: #555;
	--linelight: #333;
	--linesub: #444;
	--sub: #26262b;
}

* {
	box-sizing: border-box;
	outline: none;
	direction: ltr;
	-webkit-font-smoothing: antialiased;
	/* -webkit-tap-highlight-color: transparent;	   */
}

body {
	width: 100%;
	background: var(--bg);
	color: var(--text);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	padding: 0;
	margin: 0;
	overflow-y: scroll;
}
body.single{
	background: var(--bg);
}

body, input, textarea, button, select, option {
	font-family: var(--font);
}

::placeholder {
	color: var(--textplace);
}

input, textarea {
	font-size: 15px;
}

input {
	height: 40px;
	width: 100%;
	padding: 0 15px;
	color: var(--text);
	background: var(--bg);
	border: 1px solid var(--linedeep);
	border-radius: 11px;
}

input.lg {
	height: 45px;
}

input:not([type="checkbox"]):not([type="radio"]):read-only {
	background: var(--bggrey);
	color: var(--textgrey);
	border-color: var(--line);
}

textarea {
	width: 100%;
	padding: 12px;
	line-height: 1.6;
	color: var(--text);
	background: var(--bg);
	border: 1px solid var(--linedeep);
	border-radius: 11px;
	resize: vertical;
}

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

.content .tts-greetings {
	display: none !important;
	font-size: 18px;
	line-height: 1.6;
	color: var(--text);
	margin-bottom: 20px;
}

.content .tts-active {
	background: linear-gradient(90deg, rgba(99, 179, 237, 0.18) 0%, transparent 100%);
	border-left: 3px solid var(--main);
	padding-left: 10px;
	margin-left: -13px;
	border-radius: 2px;
	transition: background 0.3s;
}

.content ul {
	margin: 20px 0;
	list-style-type: disc;
	list-style-position: inside;
}

.content ul li {
	margin: 10px 0;
}

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

svg {
	width: auto;
	height: 20px;
}

h1 {
	font-size: 1.9em;
	font-weight: 700;
	font-stretch: normal;
	font-style: normal;
	line-height: 1.3;
	word-break: keep-all;
}

h2 {
	font-size: 1.4em;
	font-weight: 700;
	line-height: 1.4;
	margin: 12px 0;
	word-break: keep-all;
}

h3 {
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.45;
	margin: 12px 0;
}

h4 {
	font-size: 1.1em;
	font-weight: 600;
	line-height: 1.46;
	margin: 12px 0;
}

button, .bt {
	border-radius: 11px;
	border: 1px solid var(--linedeep);
	background: var(--bg);
	color: var(--text);
	min-height: 40px;
	min-width: 40px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity .15s, color .15s, background-color .15s;
	font-weight: 600;
	font-size: 1em;
}

.bt.sml {
	min-height: 34px;
	min-width: auto;
	padding: 0 12px;
	font-size: .9em;
	font-weight: 400;
}

.bt.dis {
	pointer-events: none;
	opacity: .4;
}

.bt.pri {
	background: var(--main);
	border-color: var(--main);
	color: var(--white) !important;
}

button:hover, .bt:hover {
	border-color: var(--main);
	color: var(--main);
}

#pagewrp{
	display: flex;
}
#pagewrp > #page{
	position: relative;
	width: 100%;
}

/** pwa install start **/
body.disablescroll {
	overflow-y: hidden;
}

#install_container.hidden {
	display: none;
}

button.appInstall {
	cursor: pointer;
	font-size: 1.15em;
	font-weight: 600;
	min-width: 120px;
	padding: 0 20px;
	height: 55px;
	flex: 0 0 55px;
	background: var(--main);
	color: var(--white);
	border: 0;
	border-radius: 32px;
	width: 100%;
	max-width: 400px;
}

#install_container {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	z-index: 999999;
	background-color: rgba(0, 0, 0, 0.60);
}

.install_container_close {
	width: 100%;
	height: 100%;
}

.install_pop {
	position: relative;
	margin: 0 auto;
	width: 100%;
	background: var(--bg);
	border-radius: 15px 15px 0 0;
	padding: 30px;
}

#install_status {
	max-width: 1000px;
	margin: 0 auto;
	padding: 18px 0;
	display: none;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	color: var(--black);
	font-size: 1.1em;
	font-weight: 600;
	word-break: keep-all;
}

#install_status p {
	font-weight: 400;
	font-size: .8em;
	color: var(--textgrey);
}

#install_status .anidots {
	margin-top: 15px;
}

#install_content {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
}

#install_content span#noth {
	cursor: pointer;
	color: var(--textgrey);
	margin-top: 20px;
}

#install_content h2 {
	font-size: 1.4em;
	font-weight: 700;
	padding: 0 20px;
	margin: 10px 0 20px;
	word-break: keep-all;
	line-height: 1.4;
}

.anidots {
	display: inline-flex;
	gap: 10px;
}

#install_status .anidots * {
	background: var(--main);
}

.anidots * {
	display: inline-flex;
	width: 3px;
	height: 3px;
	background: var(--text);
	border-radius: 50%;
	opacity: 0.2;
	animation: blink 1.4s infinite both;
}

.anidots *:nth-child(1) {
	animation-delay: 0s;
}

.anidots *:nth-child(2) {
	animation-delay: 0.2s;
}

.anidots *:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes blink {

	0%,
	80%,
	100% {
		opacity: 0.2;
	}

	40% {
		opacity: 1;
	}
}

/** pwa install end **/

.grd {
	position: relative;
}

.grd.hp {
	margin: 40px 0;
}

section {
	width: 100%;
	max-width: 1340px;
	padding: 0 20px;
	margin: 20px auto;
}

section.ovh {
	overflow: hidden;
}

section.sml {
	max-width: 620px;
	;
}

section.olm {
	display: none;
}

section.wis {
	display: grid;
	grid-template-columns: auto 320px;
	gap: 60px;
}

section.wis.brd {
	grid-template-columns: 1fr;
	padding-top: 0;
}

section.print {
	grid-template-columns: 100%;
	max-width: 640px;
}

section.print article {
	padding: 0 0 140px;
	border: 0;
}

.printtoolbar {
	position: fixed;
	z-index: 9;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	background: var(--bg);
	box-shadow: 3px 3px 10px rgba(0, 0, 0, .302)
}

.printtoolbar button.cancel {
	background: var(--bg);
	border: 1px solid var(--text);
	color: var(--text);
}

.printtoolbar button {
	width: 130px;
	height: 50px;
	border-radius: 32px;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: -.18px;
	background: var(--text);
	color: var(--bg);
	border-color: var(--text);
}

.alonelogo {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 57px;
	width: 100%;
	border-bottom: 1px solid var(--line);
}

.alonelogo svg {
	height: 30px;
	width: auto;
	fill: var(--main);
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.tags > * {	
	background: var(--bggrey);
	border-radius: 5px;
	font-weight: 500;
	font-size: 13px;
	padding: 0 10px;
	display: flex;
	align-items: center;
	height: 28px;
	line-height: 1;
}
.hentry .tags > *{
	font-size: 13px;
}

article {
	position: relative;
	width: 100%;
}

article figure {
	width: auto !important;
	display: flex;
	flex-direction: column;
	margin: 20px -8px;
}
article figure img{
	border-radius: 10px;
}

article figure figcaption {
	font-size: .85em;
	padding: 0 10px;
	margin: 1em 0 0;
	opacity: .6;
}

article figure.featured-image figcaption {
	margin-bottom: 1em;
}

article img {
	/* width: 100%; */
	max-width: 100%;
	height: auto;
}

article .ad {
	position: sticky;
	bottom: 0;
}

article iframe {
	width: 100% !important;
	height: auto !important;
	aspect-ratio: 16 / 9;
	/* border-radius: 16px; */
}

article iframe.verti {
	max-width: 360px !important;
	aspect-ratio: 9 / 16;
}

#postcont {
	position: absolute;
	top: 0;
	right: 0;
	border: 0;
	min-width: auto;
	min-height: auto;
	padding: 0;
	background: transparent;
}

.articlemeta {
	color: var(--textgrey);
	position: relative;
	margin-bottom: 30px;
}

.articleprofile {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.articleprofile .avatar {
	flex: 0 0 auto;
	position: relative;
	width: 28px;
	border-radius: 50%;
	margin-right: 10px;
}

.articleprofile .sec {
	display: flex;
	align-items: center;
	margin: 0 3px;
}

.articleprofile .sec svg {
	height: 18px;
	color: var(--linedeep);
}

.articleprofile .name {
	font-weight: 700;
}

.articleprofile .src {
	display: flex;
}

.ulvl {
	background: var(--gradi);
	color: var(--white);
	padding: 0 5px;
	font-size: .8em;
	border-radius: 32px;
	display: inline-flex;
	align-items: center;
	height: 20px;
}

.chatroom {
	z-index: 999;
	position: fixed;	
	right: 95px;
	bottom: 20px;
	overflow: hidden;
	display: flex;
	height: 500px;
	width: 100%;
	max-width: 360px;
	background: var(--bg);
	box-shadow: var(--shadowlg);	
	border: 1px solid var(--line);
	border-radius: 16px;
}

.chatroom.tyb {
	z-index: 999;
	position: fixed;
	top: 20px;
	right: 20px;
	bottom: 20px;
	height: auto;
	margin: auto;
	width: 100%;
	max-width: 600px;
	border-radius: 16px;
	border: 1px solid var(--line);
	box-shadow: var(--shadowlg);
	left: 20px;
}

.chatroom.tyb::before {
	content: "";
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	z-index: -1;
}

.chatroom_bar {
	flex: 0 0 auto;
	width: 55px;
	border-right: 1px solid var(--line);
	background: var(--bggrey);
}

.chatroom_bar .item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 55px;
	width: 100%;
	cursor: pointer;
	border-bottom: 1px solid var(--line);
}

.chatroom_bar .item.symbol svg{
	fill: var(--main);
}

.chatroom_bar .item.active {
	background: var(--bg);
}

.chatroom_inr {
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}

.chatroom:not(.active) {
	display: none;
}

.chatroom_head {
	line-height: normal;
	position: relative;
	display: flex;
	align-items: center;
	height: 55px;
	flex: 0 0 auto;
	gap: 10px;
	padding: 10px 20px;
	background: var(--bg);
	border-bottom: 1px solid var(--line);
}

.chatroom_head #chatroom_user_count {
	opacity: .6;
	font-size: .9em;
}

.chatroom_exit {
	cursor: pointer;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 55px;
}

.chatroom_size {
	cursor: pointer;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 55px;
	top: 0;
	height: 100%;
	width: 55px;
}

.chatroom_size svg {
	height: 18px;
}

.chatroom #chatroom_size_mini {
	display: none;
}

.chatroom.tyb #chatroom_size_mini {
	display: flex;
}

.chatroom.tyb #chatroom_size_max {
	display: none;
}

.chatroom_status {
	color: var(--textgrey);
}

.chatroom_status[data-state="open"] {
	color: var(--main);
}

.chatroom_user {
	font-weight: 700;
}

.chatroom_messages {
	display: flex;
	flex-direction: column;
	gap: 22px;
	height: 100%;
	overflow-y: auto;
	background: var(--bg);
	padding: 16px 16px 30px;
}

.chat_message {
	align-self: flex-start;
	max-width: 80%;
	width: 100%;
}

.chat_message.byai .chat_message_text {
	border-color: var(--line);
}

.chat_message.mine {
	align-self: flex-end;
}

.chat_message.mine .chat_message_text {
	border-color: var(--black);
	background: var(--black);
	color: var(--white);
	border-radius: 14px 0 14px 14px;
}

.chat_message_meta {
	line-height: normal;
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 4px;
}

.chat_message_time {
	opacity: .6;
	font-size: .85em;
}

.chat_message_name {
	font-weight: 700;
}

.chat_message_text {
	white-space: normal;
	word-break: break-word;
	line-height: 1.55;
	border: 1px solid var(--line);
	border-radius: 0 14px 14px 14px;
	padding: 12px;
}

.chatroom .modal {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	background: var(--bg);
}

.chatroom_form {
	display: flex;
	gap: 6px;
	padding: 12px 16px;
	background: var(--bg);
	border-top: 1px solid var(--line);
}

.chatroom_form input {
	padding-right: 50px;
}

.chatroom_form .wrp {
	position: relative;
	display: flex;
	width: 100%;
}

.chatroom_form .wrp button {
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	border: 0;
	padding: 0;
	width: 50px;
	background: transparent;
}

.chatroom_form textarea {
	height: 60px;
	resize: none;
	padding: 10px;
}

.chatnick_modal .chatcover {
	pointer-events: none;
	position: absolute;
	left: 0;
	bottom: 0;
	height: 60%;
	width: 100%;
	object-fit: cover;
}

.chatnick_modal .modalcon {
	min-height: 0;
	height: 100%;
	background: transparent;
}

.chatnick_modal .desc {
	color: var(--textgrey);
	word-break: keep-all;
	line-height: 1.55;
	margin-bottom: 20px;
}

.chatnick_modal input.error {
	border-color: var(--red);
}

.chatnick_error {
	min-height: 1.4em;
	color: var(--red);
	font-size: .9em;
	line-height: 1.4;
	padding: 5px 5px 0;
}

.articlemeta .author {
	font-size: 15px;
}

.articlemeta.reci {
	padding-bottom: 10px;
	border-bottom: 1px solid var(--line);
	display: flex;
	gap: 10px;
}

.articlemeta.reci .avatar {
	position: relative;
	top: 2px;
	flex: 0 0 auto;
	border-radius: 50%;
	width: 36px;
	height: 36px;
}

.articlemeta.reci .author {
	display: flex;
	align-items: center;
	gap: 6px;
}

.articlemeta.reci .author svg {
	height: 18px;
	color: var(--linedeep);
}

.articlemeta.reci .author .reciuser a {
	color: var(--main);
}

.articlemeta .history {
	display: flex;
	margin: 5px 0 0;
}

.articlemeta .history .item {
	display: flex;
	font-style: italic;
	font-size: .85em;
	background: var(--bggrey);
	align-items: center;
}

.articlemeta .author a {
	font-weight: 600;
}

.articlemeta .date {
	margin-top: 5px;
	display: flex;
	line-height: normal;
	color: var(--textgrey);
}

.articlemeta .date>* {
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid var(--line);
}

.articlemeta .date>*:last-child {
	border: 0;
	margin: 0;
	padding: 0;
}

header {
	position: sticky;
	top: 0;
	z-index: 999;
	padding: 10px 0;
	background: var(--bg);
	border-bottom: 1px solid var(--line);
}

header.sty {
	border-bottom: 1px solid var(--line);
}

header section {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 auto;
}

header section h1.posttitle {
	width: 100%;
	max-width: 55%;
	text-align: center;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.7;
	padding: 0;
	margin: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.hr {
	border-bottom: 1px solid var(--linedeep);
}

#mobilenav_wrp {
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	display: flex;
	padding: 14px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

#mobilenav_wrp.active {
	opacity: 1;
	visibility: visible;
}

#mobilenav_wrp .mobilenav_exit {
	width: 100%;
}

#mobilenav_wrp .mobilenav_inner {
	flex: 0 0 auto;
	width: 60vw;
	max-width: 300px;
	height: 100%;
	background: var(--bg);
	padding: 30px;
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	transform: translateX(100%);
	transition: transform 0.4s ease;
}

#mobilenav_wrp.active .mobilenav_inner {
	transform: translateX(0);
}

#mobilenav_wrp .mobilenav_inner nav ul {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(1, 1fr);
}

#mobilenav_wrp .mobilenav_inner nav ul li.current-menu-item a {
	/* border-bottom: 3px solid var(--main); */
	color: var(--main);
}

#mobilenav_wrp .mobilenav_inner .mobilenav_sub {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: auto;
}

#mobilenav_wrp .mobilenav_inner nav ul a, #mobilenav_wrp .mobilenav_inner .mobilenav_sub .item, .theme-toggle {
	cursor: pointer;
	font-size: 1.2em;
	font-weight: 600;
	padding: 3px 0;
	display: inline-flex;
}

#movetop.active {
	transform: translateY(0);
}

#movetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	transition: all 0.2s linear 0s;
	transform: translateY(65px);
	z-index: 998;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#movetop .item.active {
	background: var(--main);
	border-color: var(--main);
	color: var(--white);
}

#movetop .item.totop {
	opacity: 0;
}

#movetop.active .item.totop {
	opacity: 1;
}

#movetop .item img {
	width: 79%;
	height: auto;
}

#movetop .item {
	position: relative;
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: var(--bg);
	color: var(--text);
	border: 1px solid var(--linedeep);
	border-radius: 50%;
	transition: opacity 0.2s linear 0s;
}

#movetop .item.pri {
	background: var(--main);
	border-color: var(--main);
	color: var(--white);
}

#movetop .item.sns svg {
	fill: var(--text);
}

#movetop .item:hover {
	background: var(--main);
	border-color: var(--main);
	color: var(--white);
}

#movetop .msg_unread_count, #movetop .chat_unread_count, .mtgnb .msg_unread_count, .mtgnb .chat_unread_count {
	position: absolute;
	transform: translateX(-50%) translateY(-50%);
	left: calc(50% + 12px);
	top: calc(50% - 12px);
	min-width: 22px;
	height: 22px;
	padding: 0 7px;
	border-radius: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--red);
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	outline: 2px solid var(--bg);
	z-index: 2;
}

.site-branding {
	display: flex;
	align-items: center;
}

.site-branding svg {
	height: 26px;
	width: auto;
	fill: var(--text);
}
.site-branding svg .sym{
	fill: var(--main);
}

nav#site-navigation {
	white-space: nowrap;
	margin: 0 20px;
}

nav#site-navigation ul {
	display: flex;
	align-items: center;
	gap: 20px;
}

.drop {
	position: relative;
}

.drop .dropmenu {
	display: none;
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	background: var(--bg);
	border-radius: 11px;
	box-shadow: var(--shadowlg);
	border: 1px solid var(--linedeep);
	padding: 8px 0;
	z-index: 999;
}

.drop .dropmenu.orir {
	left: auto;
	right: 0;
}

/* .drop .dropmenu::before{	
	content: '';
	left: 50%;
	top: -6px;
	transform: rotate(315deg) translateX(-50%);
	position: absolute;
	z-index: 999;
	border: 4px solid var(--bg);
	border-color: var(--bg) var(--bg) transparent transparent;
	box-shadow: 1px -1px 1px 0px var(--line);
} */
.drop.active .dropmenu {
	display: block;
}

.drop .dropmenu .item {
	display: flex;
	padding: 10px 20px;
	min-width: 160px;
	justify-content: flex-start;
	color: var(--text);
	font-weight: 400;
	border: 0;
}

.drop .dropmenu .item:hover {
	background: var(--bggrey);
}

.sticky {
	position: sticky;
	top: 90px;
	display: grid;
	gap: 40px;
}

aside {
	order: 1;
}

aside.horizontal .sticky {
	position: static;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.latestTitle h3 {
	margin: 0;
}

.latestTitle {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
	margin-bottom: -20px;
}

.latestTitle .tools {
	display: flex;
	gap: 6px;
}

.latestTitle .tools>* {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transition: opacity .15s, color .15s, background-color .15s;
}

.latestTitle .tools>*:hover {
	background: var(--bggrey);
}

.latestTitle .tools>*.active {
	background: var(--bggrey);
}

.viewlists .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--line);
}

.viewlists .item .num {
	font-size: 1.4em;
	font-weight: 700;
}

aside.horizontal .widget {
	position: relative;
	background: var(--bg);
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 16px;
}

.widget.sticky {
	position: sticky;
	top: 60px;
	z-index: 9;
}

.widgettitle {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.2em;
	font-weight: 700;
	margin: 0 0 5px;
}

.widgettitle_text {
	min-width: 0;
}

.widgettitle .widget_commentavatars {
	display: inline-flex;
	align-items: center;
	gap: 0;
	flex: 0 0 auto;
}

.widgettitle .widget_commentavatars .avatar {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	outline: 2px solid var(--bg);
	background: var(--bg);
}

.widgettitle .widget_commentavatars .avatar+.avatar, .widgettitle .widget_commentavatars .commentavatar_more {
	margin-left: -9px;
}

.widgettitle .widget_commentavatars .commentavatar_more {
	flex: 0 0 auto;
	min-width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 28px;
	outline: 2px solid var(--bg);
	background: var(--main);
	color: var(--white);
	font-size: .68em;
	font-weight: 700;
	line-height: normal;
	padding: 0 5px;
}

.widget .type-post .permalink {
	gap: 10px;
}

.widget .type-post .permalink .thumb, .widget .commentList .item .thumb {
	width: 100px;
	order: 1;
	margin-bottom: 0;
	margin-left: auto;
	display: flex;
}

.widget .type-post .permalink .num {
	border: 1px solid var(--line);
	font-weight: 700;
	line-height: 1;
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 40%;
	margin-top: 3px;
}

.widget .type-post .permalink.brd .num {
	margin-top: 0;
}

.widget .type-post .permalink.brd h3 {
	-webkit-line-clamp: 1;
}

.widget .type-post .permalink h3 {
	font-weight: 400;
	font-size: 1.05em;
	word-break: keep-all;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
	margin-bottom: 0;
}

.widget .type-post p, .widget .type-post .author {
	display: none;
}

.loginwrp .site-branding {
	justify-content: center;
	margin: 0 0 30px;
}

.loginwrp .site-branding svg {
	height: 40px;
}

.loginwrp {
	max-width: 400px;
	margin: 6vh auto 0;
	display: flex;
	flex-direction: column;
}

.loginwrp .logo {
	height: 14px;
	width: auto;
	margin: 20px 0;
}

.loginwrp .msg {
	word-break: keep-all;
	color: var(--textgrey);
	padding: 0 10px;
	margin-top: 20px;
	text-align: center;
}

.loginwrp .msg p:last-child {
	font-size: .9em;
}

.loginwrp .snsloginbox {
	margin-top: 40px;
}

.logintitle::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: var(--linedeep);
}

.logintitle {
	position: relative;
	display: flex;
	padding: 0 10px;
}

.logintitle.reci {
	margin: 0 0 10px;
}

.logintitle a.sg {
	border-radius: 16px 16px 0 0;
}

.logintitle a:first-child:not(.sg) {
	border-right: 0;
	border-radius: 16px 0 0 0;
}

.logintitle a:last-child:not(.sg) {
	border-radius: 0 16px 0 0;
}

.logintitle a:first-child.active, .logintitle a:last-child.active {
	box-shadow: none;
}

.logintitle a.active {
	color: var(--textpri);
	background: var(--bg);
	border-bottom-color: var(--bg);
}

.logintitle a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	background: var(--bggrey);
	border: 1px solid var(--linedeep);
	font-weight: 600;
	font-size: 1em;
}

.loginbody {
	padding: 30px;
}

.loginbox {
	display: flex;
	flex-direction: column;
	word-break: keep-all;
}

.loginbox .grp {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 0 0 30px;
}

.loginbox .grp.last {
	border-bottom: 0;
}

.loginbox .grp.first {
	padding-top: 0;
}

.loginbox .item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 6px;
}
.loginbox .item label {
	font-weight: 600;
}

.loginbox .nicknamefield {
	display: flex;
	gap: 8px;
	align-items: stretch;
}

.loginbox .nicknamefield input {
	flex: 1;
}

.loginbox .nicknamefield .bt.small {
	height: auto;
}

.passeye {
	position: relative;
}

.passeye .pw-toggle {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--grey);
}

.loginbox h3.org {
	color: var(--orange);
}

.loginbox h3 {
	font-weight: 500;
}

.loginbox .submit {
	height: 60px;
	font-size: 1.2em;
	border-radius: 14px;
	justify-content: center;
	border: 1px solid var(--linedeep);
}

.loginbox .submit.pri {
	background: var(--main);
	border-color: var(--main);
	color: var(--white);
	font-weight: 700;
}

.loginbox .sublink {
	color: var(--textgrey);
	text-align: center;
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: -10px;
}

.loginbox .sublink a {
	color: var(--textgrey);
}

.googlelogin svg {
	width: 24px;
	height: 24px;
}

.googlelogin {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	gap: 4px;
	min-width: auto;
	font-weight: 600;
	font-size: 1em;
	border-radius: 16px;
	color: var(--black);
	background: var(--white);
	border: 1px solid #dedfe9;
	box-shadow: 0 1px 1px var(--whitegrey);
}

.metaline {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: var(--line);
}

.metaline .item {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	background: var(--bg);
	height: 50px;
}

.metaline .item label{
	font-weight: 500;
}

.metaline .item a {
	color: var(--main);
}

.account {
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 500;
}

.account .toolbar {
	display: flex;
	gap: 18px;
}

.account .toolbar a {
	display: flex;
	align-items: center;
	gap: 4px;
}

.account .toolbar a svg {
	width: auto;
	height: 22px;
	color: var(--main);
}

nav#site-navigation ul li {
	position: relative;
	line-height: normal;
}

nav#site-navigation ul li a, .account a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1em;
	font-weight: 600;
}

nav#site-navigation ul li.sec {
	padding-left: 20px;
	border-left: 1px solid var(--linedeep);
}

nav#site-navigation ul li.current-menu-item, nav#site-navigation ul li.current-post-parent, nav#site-navigation ul li.current-menu-parent, nav#site-navigation ul li.current-post-ancestor {
	color: var(--main);
}

.searchwrap {
	position: relative;
	width: 100%;
}

header .searchwrap {
	margin-left: auto;
	max-width: 300px;
}

.searchwrap input {
	padding: 0 20px 0 45px;
	font-size: 17px;
	border-radius: 11px;
	border: 0;
	background: var(--bggrey);
}

.searchwrap button {
	color: var(--text);
	background: transparent;
	position: absolute;
	border: 0;
	left: 0;
	top: 0;
	height: 100%;
	width: 40px;
	padding: 0;
}

.searchwrap button svg {
	height: 18px;
}

.mtgnb {
	z-index: 998;
	position: fixed;
	left: 0;
	bottom: 0;
	padding: 0 10px;
	width: 100%;
	height: 55px;
	display: none;
	align-items: center;
	background: var(--bg);
	border-top: 1px solid var(--line);
}

.mtgnb svg {
	height: 24px;
}

.mtgnb>* {
	cursor: pointer;
	line-height: 1.4;
	position: relative;
	flex: 1 1 0;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-size: 11px;
}

.mtgnb .item.active {
	color: var(--main);
}

#primary:has(.cover) {
	margin-top: 0px;
}

#primary:has(.chatroom) {
	display: flex;
	margin: -70px auto 0 !important;
	height: 100vh;
}

#primary.zro {
	margin-top: 0;
}

#primary {
	margin: 50px auto;
	min-height: calc(100vh - 70px);
}

.list {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 12px;
}

.list .dayposts {
	margin-bottom: 40px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.list .type-post {
	padding: 30px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: var(--bg);
}

.list .unread {
	background: var(--sub);
}

.msg_bulk_toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px;
}

.msg_bulk_toolbar label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: .95em;
	line-height: normal;
	cursor: pointer;
}

.msg_bulk_toolbar input, .msg_select_input, .bell_select_input {
	appearance: none;
	-webkit-appearance: none;
	width: 22px;
	height: 22px;
	padding: 0;
	flex: 0 0 auto;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: 40%;
	background: var(--bg);
	cursor: pointer;
	display: inline-grid;
	place-content: center;
	transition: border-color .15s, background-color .15s;
}

.msg_bulk_toolbar input::before, .msg_select_input::before, .bell_select_input::before {
	content: '';
	width: 10px;
	height: 6px;
	border-left: 2px solid var(--white);
	border-bottom: 2px solid var(--white);
	transform: rotate(-45deg) scale(0);
	transform-origin: center;
	margin-top: -2px;
	/* transition: transform .12s ease; */
}

.msg_bulk_toolbar input:checked, .msg_select_input:checked, .bell_select_input:checked {
	background: var(--main);
	border-color: var(--main);
}

.msg_bulk_toolbar input:checked::before, .msg_select_input:checked::before, .bell_select_input:checked::before {
	transform: rotate(-45deg) scale(1);
}

.msg_bulk_toolbar input:focus-visible, .msg_select_input:focus-visible, .bell_select_input:focus-visible {
	box-shadow: 0 0 0 3px rgba(18, 101, 190, .18);
}

.msg_select {
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 3;
	display: flex;
}

.list .dayposts:last-child {
	margin-bottom: 0;
}

.widget .list {
	gap: 0;
	margin: 0;
}

.widget .list .type-post {
	padding: 8px 0;
	border: 0;
}

.list .ad {
	margin: 10px 0 -10px;
}

.list .ad iframe {
	width: 100%;
}

.list .days {
	border-bottom: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 10px;
}

.type-post {
	position: relative;
}

.type-post .permalink {
	position: relative;
	display: flex;
	gap: 15px;
}

.list.gallery {
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.list.gallery .type-post {
	padding: 0;
	border: 0;
	margin: 0;
}

.list.gallery .type-post:first-child {
	grid-column: span 2;
	grid-row: span 2;
}

.list.gallery .type-post .permalink {
	flex-direction: column;
	gap: 0px;
}

.list.gallery .type-post .permalink:hover .meta {
	display: flex;
}

.list.gallery .type-post .permalink .meta {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	background: rgba(0, 0, 0, .6);
	color: var(--white);
	padding: 20px;
	width: 100%;
	height: 100%;
	border-radius: 11px;
}

.list.gallery .type-post .counts > * {
	color: var(--white);
}

.list.gallery .type-post h3 {
	-webkit-line-clamp: 2;
	font-size: 1.1em;
	margin: 0 0 5px;
	text-decoration: none;
}

.list.gallery .type-post .permalink .thumb {
	order: -1;
	width: 100%;
}

.type-post h4 {
	font-weight: 600;
	margin-top: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.type-post h3, .type-post h2 {
	font-weight: 600;
	margin-top: 0;
	word-break: auto-phrase;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
}

.type-post a:hover h3, .type-post a:hover h2, .type-post a:hover h4 {
	text-decoration: underline;
}

.type-post p {
	color: var(--textgrey);
	margin: 10px 0;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-wrap: break-word;
}

.type-post .thumb {
	position: relative;
	flex: 0 0 auto;
	width: 150px;
	margin-left: auto;
}

.type-post .thumb .ratio, .commentList .item .thumb .ratio {
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border-radius: 9px;
}

.type-post .thumb .ratio::before, .commentList .item .thumb .ratio::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: var(--imgtr);
	z-index: 1;
}

.type-post .thumb .ratio.blur1 img, .type-post .thumb .ratio.blur2 img {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	filter: saturate(30%) blur(10px);
}

.list.gallery .type-post .thumb .ratio {
	aspect-ratio: 4 / 3;
	border-radius: 11px;
}

.list.gallery .type-post .thumb .ratio::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--imgtr);
}

.type-post .thumb img, .commentList .item .thumb img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.001);
	transition: transform .2s;
}

.related_search_wrp .list.board>*.empty {
	grid-template-columns: 1fr;
	text-align: center;
	height: 90px;
}

.list.board .days {
	text-align: left;
	grid-template-columns: 1fr;
	margin: 40px 0 0;
	padding: 0 15px 15px;
	border-color: var(--main);
}

.list.board .days>* {
	padding: 0;
}

.list.board>* {
	width: 100%;
	display: grid;
	align-items: center;
	grid-template-columns: 70px 80px auto 100px 85px 75px;
	height: 55px;
	border-bottom: 1px solid var(--line);
	padding: 0;
	font-weight: 500;
}

.ago {
	word-spacing: -1px;
}

.list.board>*>.name {
	text-align: left;
}

.list.board.rel>* {
	grid-template-columns: auto 90px 90px;
	font-size: 1em;
}

.list.board.rel>*:last-child {
	border-bottom: 0;
}

.related_search_wrp .list.board>* {
	position: relative;
	grid-template-columns: 50px auto 60px 60px 70px;
	text-align: left;
	height: 50px;
	padding: 0 10px;
}

.recipient_search_wrp .list>* {
	display: flex;
	align-items: center;
	padding: 0 15px;
	height: 50px;
	border-bottom: 1px solid var(--line);
	gap: 8px;
}

.recipient_search_wrp .list>*:last-child {
	border-bottom: 0;
}

.recipient_search_wrp .list>* .thumb {
	width: auto;
	flex: 0 0 auto;
}

.recipient_search_wrp .list>* .title {
	flex: 0 0 auto;
	width: 90px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-weight: 600;
}

.recipient_search_wrp .list>* * {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 100%;
}

.recipient_search_wrp .list>* .bts {
	margin-left: auto;
	width: 60px;
	flex: 0 0 auto;
}

.related_search_wrp .list.board, .recipient_search_wrp .list {
	max-height: 30vh;
	overflow-y: auto;
	border-radius: 16px;
	border: 1px solid var(--linedeep);
	margin: 0;
}

.related_search_wrp .list.board.related_selected_list {
	background: var(--bg);
}

.related_search_wrp .list.board>*:last-child {
	border-bottom: 0;
}

.related_search_wrp .list.board>* button, .recipient_search_wrp .list * button {
	padding: 0;
	z-index: 1;
	position: relative;
	width: 100%;
	min-height: 26px;
	font-size: .86em;
}

.related_search_wrp .list.board>*:has(button:disabled) {
	opacity: 0.3;
}

.recipient_search_wrp .list .avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: block;
}

.list.board .permalink:hover .title_inner {
	text-decoration: underline;
}

.list.board>*>* {
	padding: 0 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: center;
}

.list.board>*>.views span {
	display: none;
}

.list.board>*>*:last-child {
	border-right: 0;
}

.tablehd>* {
	color: var(--text) !important;
	font-size: 1em !important;
	font-weight: 600 !important;
}

.list.board>*>.bcat {
	color: var(--main);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.related_search_wrp .list.board>*>*, .list.board.rel>*>* {
	padding: 7px 5px;
	text-align: left;
}

.related_search_wrp .tablehd>.title {
	text-align: left;
}

.list.board .type-post .author {
	margin-top: 0;
	margin-left: auto;
}

.list.board {
	overflow: hidden;
}

.list.board .title {
	white-space: nowrap;
	text-align: left;
}

.list.board .title .title_inner {
	float: left;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 90%;
}

.list.board .title .commentsnum {
	position: relative;
	top: -1px;
	display: inline-block;
	border-radius: 7px;
	padding: 0 8px;
	margin-left: 2px;
	font-size: 0.9em;
	font-weight: 600;
	background: var(--main);
	color: var(--white);
	line-height: 1.4;
}

.tablehd {
	border-top: 2px solid var(--main);
}

.grd.loading {
	opacity: .55;
	pointer-events: none;
	transition: opacity .2s ease;
}

.type-post .dpname {
	line-height: normal;
	margin: 0 0 5px;
}

.type-post .dpname.reci {
	display: flex;
	align-items: center;
	gap: 6px;
}

.type-post .dpname.reci svg {
	height: 16px;
	color: var(--linedeep);
}

.type-post .dpname.reci span {
	color: var(--main);
	font-weight: 600;
}

.brd .type-post .counts > * {
	white-space: nowrap;
}

.type-post .author > * {
	line-height: normal;
}

.type-post .author {
	display: flex;
	align-items: center;
	font-size: .9em;
	color: var(--textgrey);
}

.type-post .postinfo {
	width: 100%;
	display: flex;
	gap: 15px;
}

.votes .type-post .postinfo {
	flex-direction: column;
}

.type-post .avatarwrp {
	display: flex;
}

.type-post .avatarwrp .avatar {
	border-radius: 50%;
}

.type-post .avatarwrp span {
	flex: 0 0 auto;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--line);
}
.type-post .avatarwrp span svg {
	height: 18px;
}
.type-post .counts {
	display: flex;
}
.type-post .counts > * {
	/* border-right: 1px solid var(--line); */
	margin-right: 6px;
	padding-right: 6px;
	line-height: normal;
	display: flex;
	align-items: center;
	gap: 3px;
}
.type-post .counts > * svg{
	height: 16px;
}
.type-post .counts > *:last-child {
	border-right: 0;
	margin-right: 0;
	padding-right: 0;
}
.type-post .commentavatars {
	display: inline-flex;
	align-items: center;
	gap: 0;
	border-right: 0;
	padding-right: 0;
	margin: 10px 0 0;
}

.type-post .commentavatars .avatar {
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	outline: 2px solid var(--bg);
	background: var(--bg);
}

.type-post .commentavatars .avatar+.avatar, .type-post .commentavatars .commentavatar_more {
	margin-left: -10px;
}

.type-post .commentavatars .commentavatar_more {
	flex: 0 0 auto;
	min-width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 32px;
	outline: 2px solid var(--bg);
	background: var(--main);
	color: var(--white);
	font-size: .9em;
	font-weight: 700;
	line-height: 1;
	padding: 0 6px;
}

.type-post .cat {
	color: var(--main);
	/* border-right: 1px solid var(--line); */
	margin-right: 6px;
	padding-right: 6px;
	font-weight: 600;
}

.type-post .ttsready {
	font-size: .9em;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	padding: 0 10px;
	border-radius: 4px;
	height: 22px;
	margin-left: -5px;
	border: 1px solid var(--text);
}

#pagination {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

#pagination .arrows {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

#pagination .page-numbers.current {
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
	min-width: 45px;
	color: var(--white);
	background: var(--main);
	border: 1px solid var(--main);
}

#pagination .numbar {
	display: flex;
	align-items: center;
	gap: 6px;
}

#pagination .numbar a, #pagination .numbar span, #pagination .page-numbers.prev, #pagination .page-numbers.next {
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 45px;
	min-width: 45px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: var(--bg);
}

#pagination a:hover {
	color: var(--main);
	border-color: var(--main) !important;
}

#pagination a svg {
	height: 18px;
}

.pgnwrp {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 30px 0;
}

.pgnwrp.infinite_pagination {
	display: none;
}

.grd.loading-more::after {
	content: '';
	display: block;
	width: 24px;
	height: 24px;
	margin: 24px auto;
	background: var(--textsub);
	-webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Crect width='2' height='5' x='11' y='1' fill='black' opacity='.14'/%3E%3Crect width='2' height='5' x='11' y='1' fill='black' opacity='.29' transform='rotate(30 12 12)'/%3E%3Crect width='2' height='5' x='11' y='1' fill='black' opacity='.43' transform='rotate(60 12 12)'/%3E%3Crect width='2' height='5' x='11' y='1' fill='black' opacity='.57' transform='rotate(90 12 12)'/%3E%3Crect width='2' height='5' x='11' y='1' fill='black' opacity='.71' transform='rotate(120 12 12)'/%3E%3Crect width='2' height='5' x='11' y='1' fill='black' opacity='.86' transform='rotate(150 12 12)'/%3E%3Crect width='2' height='5' x='11' y='1' fill='black' transform='rotate(180 12 12)'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Crect width='2' height='5' x='11' y='1' fill='black' opacity='.14'/%3E%3Crect width='2' height='5' x='11' y='1' fill='black' opacity='.29' transform='rotate(30 12 12)'/%3E%3Crect width='2' height='5' x='11' y='1' fill='black' opacity='.43' transform='rotate(60 12 12)'/%3E%3Crect width='2' height='5' x='11' y='1' fill='black' opacity='.57' transform='rotate(90 12 12)'/%3E%3Crect width='2' height='5' x='11' y='1' fill='black' opacity='.71' transform='rotate(120 12 12)'/%3E%3Crect width='2' height='5' x='11' y='1' fill='black' opacity='.86' transform='rotate(150 12 12)'/%3E%3Crect width='2' height='5' x='11' y='1' fill='black' transform='rotate(180 12 12)'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
	animation: grd_loading_spin .75s steps(12) infinite;
}

@keyframes grd_loading_spin {
	to {
		transform: rotate(360deg);
	}
}

.pgnwrp .counts {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	white-space: nowrap;
	color: var(--textsub);
	order: -1;
	font-size: 13px;
}
.pgnwrp .counts #pagego {
	font-size: .9em;
	padding: 0 20px;
	min-height: 33px;
	line-height: normal;
}
.pgnwrp .counts input {
	text-align: center;
	padding: 0 4px;
	width: 40px;
	flex: 0 0 auto;
	height: 32px;
	font-size: 13px;
}
.pgnwrp .counts input:focus {
	border-color: var(--primary);
}
.pgnwrp .counts input::-webkit-inner-spin-button, .pgnwrp .counts input::-webkit-outer-spin-button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
}
.arct .catimg {
	pointer-events: none;
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	height: auto;
	width: 100%;
	max-width: 960px;
	object-fit: contain;
	z-index: 1;
}
.acrtwrp {
	position: sticky;
	top: 55px;
	background: var(--bg);
}
.arct .bts {
	margin: 20px 0 0;
	display: inline-flex;
	gap: 10px;
}

.arct .bts>.bt {
	min-height: 45px;
	min-width: 45px;
	border-radius: 32px;
}

.arct .bts > .bt.sub {
	background: transparent;
	border: 2px solid var(--white);
	color: var(--white);
}
.arct .bts > .bt.sub svg{
	stroke-width: 2.5px;
}

.arct .bts > .bt.write {
	padding: 0;
}

.arct {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0 20px;
}

.arct .bt.cntr {
	width: 50px;
	height: 50px;
	padding: 0;
	border-radius: 50%;
}

body.category-yqvkjtwu .arct, .arct.zroborder {
	border-bottom: 0;
}

body.page-id-1717 .arct {
	border-bottom: 0;
}

.arct.cover {
	overflow: hidden;
	height: 310px;	
	padding: 0;
	background: var(--black);	
	color: var(--white);
}
.arct.cover section{
	position: relative;
}
.arct.cover .titlewrp .archive-title span {
	letter-spacing: -1px;
	font-size: 1.05em;
}

.arct .titlewrp {
	position: relative;
	z-index: 2;
}

.arct .titlewrp .tip {
	position: absolute;
	right: -22px;
	top: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: help;
}

.arct .titlewrp .tip svg {
	height: 16px;
}

.arct .titlewrp .tip::after {
	content: attr(tipdesc);
	position: absolute;
	left: 0;
	top: calc(100% + 8px);
	min-width: 140px;
	max-width: calc(100vw - 32px);
	padding: 8px 10px;
	border: 0px solid var(--line);
	border-radius: 11px;
	background: var(--text);
	color: var(--bg);
	font-size: .9em;
	line-height: 1.4;
	box-shadow: var(--shadowlg);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-4px);
	transition: opacity .15s, transform .15s, visibility .15s;
	pointer-events: none;
	z-index: 20;
	font-weight: 600;
	white-space: normal;
	overflow-wrap: break-word;
}

.arct .titlewrp .tip:hover::after,
.arct .titlewrp .tip:focus-visible::after {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.arct h1 {
	margin: 0;
}
.arct.cover h1{
	font-weight: 800;
	font-size: 2em;
}

.arct .addwrp {
	position: absolute;
	right: 0;
	bottom: 10px;
}

.arct .addwrp>* {
	height: 55px;
	width: 55px;
	border-radius: 50%;
	padding: 0;
}

.archive-meta {
	color: var(--textgrey);
}

.archive-meta span {
	font-size: 2em;
	font-weight: 700;
	line-height: normal;
	color: var(--text);
}

.archive-description {
	word-break: auto-phrase;
	font-size: 0.95em;
	font-style: italic;
	color: var(--textgrey);
}

.cover .archive-description{
	color: var(--white);
}

/* .archive-description p {
	margin: 5px 0 0;
} */

#alert {
	z-index: 99999;
	opacity: 0;
	position: fixed;
	bottom: 60px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--text);
	color: var(--bg);
	box-shadow: var(--shadowlg);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 32px;
	padding: 0 25px;
	height: 58px;
	transition: opacity .3s;
	white-space: nowrap;
}

.latestvids {
	margin: 20px 0 30px;
}

.latestvids .widgettitle {
	padding: 0 20px;
	margin: 0 0 12px;
}

.marquee_wrp {
	position: relative;
}

.marquee_arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	min-width: 42px;
	min-height: 42px;
	padding: 0;
	margin: 0 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--bg);
	color: var(--text);
	box-shadow: var(--shadowlg);
	border: 0;
	cursor: pointer;
	z-index: 2;
}

.marquee_arrow.marquee_next {
	left: auto;
	right: 0;
}

.marquee_arrow svg {
	height: 18px;
}

.marquee {
	width: 100%;
	overflow: hidden;
	touch-action: pan-y;
	/* 가로 드래그할 거면 JS에서 처리 */
	user-select: none;
	border-radius: 9px;
	border-right: 1px solid var(--linedeep);
	border-left: 1px solid var(--linedeep);
}

.marquee>* {
	display: flex;
	width: max-content;
	will-change: transform;
}

.newbielist {
	cursor: grab;
	display: flex;
	position: relative;
	padding: 0 0;
	width: auto;
	max-width: none;
	gap: 8px;
	padding-left: 20px;
}

.newbielist a.permalink {
	display: flex;
	width: 150px;
	flex: 0 0 auto;
	white-space: nowrap;
}

.newbielist .ratio {
	overflow: hidden;
	width: 100%;
	display: flex;
	border-radius: 9px;
	border: 1px solid var(--line);
}

.newbielist .ratio img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	pointer-events: none;
}

.youtubelist {
	cursor: grab;
	display: flex;
	position: relative;
	padding: 0 0;
	width: auto;
	max-width: none;
	gap: 10px;
	padding-left: 20px;
}

.youtubelist .youtubeitem {
	position: relative;
	display: flex;
	width: 130px;
	flex: 0 0 auto;
	white-space: nowrap;
	border-radius: 9px;
	overflow: hidden;
}

.youtubelist .youtubeitem:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgb(0 0 0 / 30%) 0%, rgba(0, 0, 0, 0) 40%);
	z-index: 1;
}

.youtubelist .youtubeitem img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	pointer-events: none;
	scale: 1.35;
}

.youtubelist .chart_youtubeitem .rank {
	position: absolute;
	left: 8px;
	top: 8px;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	height: 28px;
	color: var(--white);
	font-size: 1.8em;
	font-weight: 800;
	line-height: 1;
}

/* Charts page weekly K-pop chart styles start */
.chartlist {
	display: grid;
	grid-template-columns: 1fr;
	width: 100%;
	gap: 1px;
	background: var(--line);
	border-top: 1px solid var(--line);
}

.chartitem {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 0;
	background: var(--bg);
	text-decoration: none;
}

.chartitem:hover h3 {
	text-decoration: underline;
}

.chartitem .rankbox {
	width: 50px;
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
}

.chartitem .rank {
	font-size: 2.1em;
	font-weight: 800;
	text-align: center;
	line-height: normal;
}

.chartitem .movement {
	font-size: .82em;
	font-weight: 700;
	line-height: 1;
	color: var(--textgrey);
}

.chartitem .movement.new {
	color: var(--main);
}

.chartitem .movement.up {
	color: var(--green);
}

.chartitem .movement.down {
	color: var(--red);
}

.chartitem .movement.same {
	font-size: 1.2em;
	color: var(--linedeep);
}

.chartitem .thumb {
	flex: 0 0 auto;
	width: 100px;
}
.chartitem .thumb .ratio {
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	border-radius: 9px;
	background: var(--imgtr);
}

.chartitem .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	scale: 1.33;
}

.chartitem h3 {
	font-size: 1.1em;
	line-height: 1.35;
	margin: 0 0 4px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.chartitem .channel {
	font-size: .88em;
}

.chartitem .stats {
	color: var(--textgrey);
	font-size: .88em;
}

.chartitem .stats {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 3px;
}
/* Charts page weekly K-pop chart styles end */

#primary .title h1 {
	margin: 10px 0;
}

.page #primary .title h1 {
	margin-top: 0;
}

article .path {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--textgrey);
}

article .path>span svg {
	height: 18px;
	color: var(--linedeep);
}

article .path>* {
	display: flex;
	align-items: center;
}

article .path>*:first-child svg {
	height: 18px;
	fill: var(--main);
	color: var(--main);
}

article .path #selcat.drop {
	cursor: pointer;
	border: 1px solid var(--linedeep);
	border-radius: 11px;
	background: var(--bg);
	padding: 0 10px;
	font-size: .9em;
	font-weight: 400;
	line-height: normal;
	gap: 4px;
	height: 32px;
}

article .path #selcat.drop .dropmenu .item {
	font-size: 1.1em;
}

article .path #selcat.drop:hover {
	border-color: var(--linedeep);
}

article .path #selcat.drop svg {
	height: 16px;
	color: var(--linedeep);
}

#primary .vsform .path {
	color: var(--text);
	margin-bottom: 20px;
}

article .content {
	font-size: 17px;
	color: var(--text);
	word-break: keep-all;
	word-wrap: break-word;
	margin: 0 0 40px;
}

article .content h2, article .content h3 {
	margin: 40px 0 15px;
}

article .content p {
	margin: 0;
	min-height: 1.7em;
	line-height: 1.7;
}

article .content p+p {
	margin-top: 20px;
}

article .content img {
	display: block;
	max-width: 100%;
	height: auto;
}

#primary .vsform .content {
	min-height: 150px;
	position: relative;
	/* transition: background-color .2s ease, box-shadow .2s ease; */
	margin: 0;
}

#primary .vsform .content .content_image_block {
	position: relative;
}

#primary .vsform .content .content_image_wrap {
	position: relative;
	display: inline-block;
	max-width: 100%;
}

#primary .vsform .content .content_image_wrap img {
	display: block;
	max-width: 100%;
	height: auto;
}

.vsform .content_image_remove {
	position: absolute;
	right: 10px;
	top: 10px;
	width: 28px;
	height: 28px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--bg);
	color: var(--text);
	cursor: pointer;
	z-index: 2;
}

.vsform .content_editor {
	overflow: hidden;
	position: relative;
	padding: 0 10px;
	border: 1px solid var(--linedeep);
	border-radius: 16px;
	background: var(--bg);
	margin: 20px -10px 20px;
}

.vsform .content_toolbar {
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
	margin: 0 -10px 10px;
	background: var(--bggrey);
	border-bottom: 1px solid var(--line);
	padding: 10px;
}

.vsform .content_tool {
	height: 34px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0 10px;
	border: 1px solid var(--linedeep);
	border-radius: 10px;
	font-size: 13px;
	color: var(--textgrey);
	background: var(--bg);
	cursor: pointer;
}

.vsform .content_tool input[type="color"] {
	width: 22px;
	height: 22px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.vsform .content_tool input[type="hidden"] {
	display: none;
}

.vsform .content_font_size_drop .selname {
	color: var(--text);
}

.vsform .content_font_size_drop svg {
	width: 14px;
	height: 14px;
}

.vsform .content_font_size_drop .dropmenu {
	min-width: 120px;
}

.vsform .content_font_size_drop .dropmenu .item {
	min-width: 0;
	padding: 10px 14px;
	font-size: 1.1em;
	line-height: normal;
}

.vsform .content_style_button {
	min-width: 34px;
	min-height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--linedeep);
	border-radius: 10px;
	background: var(--bg);
	color: var(--text);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	padding: 0;
}

.vsform button svg, .vsform .bt svg {
	height: 18px;
}

.vsform .content_style_button[data-style-command="italic"] {
	font-style: italic;
}

.vsform .content_style_button[data-style-command="bold"] {
	font-weight: 800;
}

.vsform .content_style_button[data-style-command="underline"] {
	text-decoration: underline;
}

.vsform .content_style_button[data-style-command="strikeThrough"] {
	text-decoration: line-through;
}

.vsform .content_tool:hover, .vsform .content_style_button:hover {
	border-color: var(--linedeep);
}

.vsform .content_style_button.active {
	border-color: var(--main);
	background: var(--main);
	color: var(--white);
}

.vsform .vote_toggle_button svg {
	width: 18px;
	height: 18px;
}

.vsform .content_char_count {
	font-size: .9em;
	color: var(--textplace);
}

.vsform .content_tips {
	font-size: .9em;
	color: var(--textplace);
	word-break: keep-all;
}

.vsform .content_char_count.over {
	color: var(--red);
}

.vsform .content_upload_input {
	display: none;
}

.vsform .content_upload_button {
	padding: 0;
	border-radius: 10px;
	min-width: 34px;
	min-height: 34px;
}

.vsform .content_footer {
	line-height: 1.4;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px 0;
}

#primary .vsform .content.dragover {
	background: rgba(0, 115, 230, 0.08);
	box-shadow: inset 0 0 0 2px rgba(0, 115, 230, 0.22);
}

#primary .vsform .content.dragover::before {
	content: 'Drop images here to upload';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 14px 20px;
	border-radius: 999px;
	background: rgba(0, 115, 230, 0.92);
	color: #fff;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: -0.02em;
	pointer-events: none;
	z-index: 2;
}

#primary .vsform .content.uploading::after {
	content: 'Uploading image...';
	position: absolute;
	right: 0;
	top: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.06);
	font-size: .85em;
	font-weight: 500;
	color: var(--textgrey);
	z-index: 2;
}

.related_search_result_wrp {
	margin: 0 0 30px;
}

.recipient_search_result_wrp, .recipient_selected_wrp {
	margin: 0 0 20px;
}

.related_search_wrp h4, .recipient_search_wrp h4 {
	margin-top: 0;
}

.related_search_wrp .empty, .recipient_search_wrp .empty {
	grid-template-columns: 1fr !important;
	padding: 20px;
	color: var(--textplace);
}

article .content p strong {
	font-weight: 500;
	color: var(--main);
}

article .content blockquote {
	font-family: serif;
	font-style: italic;
}

article .content p a {
	text-decoration: underline;
	color: var(--main);
}

article .content ol {
	margin: 35px 0;
	list-style-type: decimal;
	list-style-position: inside;
}

article .content ol li {
	padding-left: 20px;
	text-indent: -20px;
}

#primary .publisher {
	font-size: 18px;
	line-height: 1.7;
	color: var(--text);
	margin: 20px 0 0;
}

#primary .publisher a {
	font-weight: 700;
}

.vsform .articlemeta {
	margin-bottom: 0;
}

.vsform .tagsinput {
	margin: 0 -20px;
	padding: 16px 20px;
	border-top: 1px solid var(--line);
}

.vsform .related_search_wrp {
	position: relative;
	border-top: 1px solid var(--line);
}

.vsform .recipient_search_wrp {
	position: relative;
}

.vsform .related_search_wrp .icon {
	position: absolute;
	left: 0;
	top: 22px;
	display: flex;
}

.vsform .related_search_wrp .relatedinput {
	padding: 20px 0;
}

.vsform .vote {
	display: none;
	margin: 0 0 30px;
}

.vsform .vote.active {
	display: block;
}

.vsform .vote_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin: 0 0 10px;
}

.vsform .vote_title_input {
	width: 100%;
	margin: 0 0 10px;
}

.vsform .vote_options {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 10px;
}

.vsform .vote_option {
	display: grid;
	grid-template-columns: 55px 1fr auto;
	gap: 8px;
	padding: 20px;
	border-radius: 16px;
	background: var(--bggrey);
}

.vote_endday_wrp {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.vote_endday_wrp label {
	flex: 0 0 auto;
}

.vsform .vote_option_file {
	display: none;
}

.vsform .vote_option_image {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
}

.vsform .vote_option_image_button {
	position: relative;
	height: 55px;
	cursor: pointer;
	padding: 0;
}

.vsform .vote_option_image_button .vote_option_image_remove {
	display: none;
}

.vsform .vote_option_image.has_image .vote_option_image_button .vote_option_image_remove {
	display: flex;
}

.vsform .vote_option_image_preview {
	z-index: 4;
	position: absolute;
	inset: 0;
	opacity: 0;
	border-radius: 11px;
	overflow: hidden;
}

.vsform .vote_option_image.has_image .vote_option_image_preview {
	opacity: 1;
}

.vsform .vote_option_image_preview img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vsform .vote_option_image_label {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: .8em;
	font-weight: 400;
	color: var(--linedeep);
}

.vsform .vote_option_image_label svg {
	width: 20px;
	height: 20px;
}

.vsform .vote_option_image_loading {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, .72);
	color: var(--main);
}

.vsform .vote_option_image_loading svg {
	width: 22px;
	height: 22px;
}

.vsform .vote_option.uploading .vote_option_image_loading {
	display: flex;
}

.vsform .vote_option.uploading .vote_option_image_label, .vsform .vote_option.uploading .vote_option_image_remove {
	opacity: 0;
	pointer-events: none;
}

.vsform .vote_option_image_remove {
	position: absolute;
	right: -5px;
	top: -5px;
	z-index: 5;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, .65);
	color: var(--white);
	cursor: pointer;
	pointer-events: auto;
}

.vsform .vote_option_image_remove svg {
	width: 14px;
	height: 14px;
}

.vsform .vote_option_title {
	height: 40px;
	line-height: 1.5;
}

.vsform .vote_option_remove {
	height: 40px;
	padding: 0 12px;
	color: var(--textgrey);
	cursor: pointer;
	font-weight: 400;
	font-size: .9em;
}

.vsform .vote_option_remove:disabled {
	opacity: .4;
	cursor: default;
}

.vsform .recipient_search_wrp .recipientinput {
	padding: 10px 0;
	margin: 0 0 20px;
	border-bottom: 2px solid var(--line);
}

.vsform .submitwrp {
	display: flex;
	justify-content: flex-end;
}

.vsform .submitwrp .submit {
	width: 130px;
	height: 50px;
	font-size: 1.1em;
}

.vsform .vsinput:not(.posttitle) {
	font-size: 15px;
}

.vsform .recipientinput.vsinput {
	font-size: 1.1em;
	font-weight: 500;
}

.vsform .vsinput.posttitle {
	font-size: 1.7em;
	font-weight: 600;
}

.vsinput:empty::before {
	content: attr(data-placeholder);
	color: var(--textplace);
	pointer-events: none;
	white-space: pre-line;
}

.noresult {
	margin: 10vh 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	font-size: .9em;
}

.noresult p {
	font-size: 1.2em;
	font-style: italic;
	color: var(--textgrey);
}

.noresult .bt {
	display: inline-flex;
	gap: 5px;
	padding-left: 16px;
	border-radius: 32px;
	height: 50px;
}

.related_search_wrp .related {
	margin: 0 0 20px;
}

.related {
	padding: 0 10px;
	border-radius: 16px;
	border: 1px solid var(--linedeep);
	border-radius: 16px;
}

.related .list {
	padding: 10px 0;
	gap: 0;
}

.related .list .type-post {
	padding: 12px 16px;
	border: 0;
	margin: 0;
}

.related .list .type-post .thumb {
	width: 100px;
}

.related .list .type-post h3 {
	font-size: 1.1em;
	font-weight: 500;
	margin-bottom: 6px;
}

.list.board.rel {
	gap: 0;
}

article .tags {
	margin: 40px 0 50px;
}

.related .additional {
	display: none;
}

.post_vote {
	margin: 30px 0;
	padding: 26px;
	border: 1px solid var(--linesub);
	border-radius: 16px;
	background: var(--sub);
}

.post_vote_title {
	font-size: 1.3em;
	font-weight: 700;
	margin: 0 0 20px;
	line-height: 1.4;
}

.post_vote_options {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.post_vote_option {
	position: relative;
	overflow: hidden;
	width: 100%;
	min-height: 46px;
	border: 1px solid var(--linesub);
	border-radius: 10px;
	background: var(--bg);
	color: var(--text);
	cursor: pointer;
	padding: 0;
	text-align: left;
	font-weight: 400;
}

.post_vote_option_bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: rgba(0, 115, 230, .16);
	transition: width .2s ease;
}

.post_vote.not_voted .post_vote_option_bar {
	display: none;
}

.post_vote_option.selected {
	border-color: var(--main);
}

.post_vote_option.selected .post_vote_option_bar {
	background: rgba(0, 115, 230, .24);
}

.post_vote_option.loading {
	pointer-events: none;
	opacity: .72;
}

.post_vote.expired .post_vote_option {
	cursor: not-allowed;
}

.post_vote_option_inner {
	width: 100%;
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 46px;
	padding: 0 14px;
}

.post_vote_option_img {
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--line);
}

.post_vote_option_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.post_vote_option_title {
	flex: 1;
	font-weight: 500;
}

.post_vote_option_count {
	font-size: .9em;
	white-space: nowrap;
}

.post_vote_option_percent {
	color: var(--main);
	font-size: .9em;
	font-weight: 700;
	white-space: nowrap;
}

.post_vote.not_voted .post_vote_option_percent {
	display: none;
}

.post_vote.not_voted .post_vote_option_count {
	color: var(--textsub);
}

.post_vote.not_voted .post_vote_option_count {
	font-size: .9em;
}

.post_vote.not_voted .post_vote_option_count_value {
	display: none;
}

.post_vote_result_info {
	display: none;
	align-items: center;
	font-size: .9em;
	color: var(--textsub);
	line-height: normal;
	gap: 4px;
}

.post_vote_result_info svg {
	height: 16px;
}

.post_vote.not_voted .post_vote_result_info {
	display: flex;
	margin: -10px 0 10px;
}

.post_vote_footer {
	margin-top: 10px;
	font-size: .9em;
	display: flex;
	justify-content: space-around;
	gap: 12px;
	color: var(--textsub);
}

.vote_summary {
	padding: 20px;
	border: 1px solid var(--linesub);
	border-radius: 16px;
	background: var(--sub);
}

.vote_summary_title {
	font-size: 1.1em;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px;
}

.vote_summary_options {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 10px;
}

.vote_summary_option {
	position: relative;
	overflow: hidden;
	min-height: 36px;
	border: 1px solid var(--linesub);
	border-radius: 9px;
	background: var(--bg);
}

.vote_summary_option_bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: rgba(0, 115, 230, .12);
}

.vote_summary_option_inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 8px;
	min-height: 36px;
	padding: 0 10px;
}

.vote_summary_option_img {
	flex: 0 0 26px;
	width: 26px;
	height: 26px;
	border-radius: 6px;
	overflow: hidden;
	background: var(--line);
}

.vote_summary_option_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vote_summary_option_title {
	flex: 1;
	font-weight: 500;
	text-overflow: ellipsis;
	overflow: hidden;
	width: 50px;
	white-space: nowrap;
}

.vote_summary_option_percent, .vote_summary_option_count {
	font-size: .85em;
	white-space: nowrap;
}

.vote_summary_option_percent {
	color: var(--main);
	font-weight: 700;
}

.vote_summary.not_voted .vote_summary_option_bar, .vote_summary.not_voted .vote_summary_option_percent, .vote_summary.not_voted .vote_summary_option_count_value {
	display: none;
}

.vote_summary.not_voted .vote_summary_option_count {
	color: var(--textsub);
}

.vote_summary_result_info {
	display: none;
	align-items: center;
	gap: 4px;
	line-height: normal;
	font-size: .9em;
	color: var(--textsub);
}

.vote_summary_result_info svg {
	height: 16px;
}

.vote_summary.not_voted .vote_summary_result_info {
	display: flex;
	margin: 0 0 10px;
}

.vote_summary_meta {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 12px;
	font-size: .9em;
	color: var(--textsub);
}

.vote_summary.expired .vote_summary_meta {
	color: var(--textgrey);
}

.rwrap {
	position: relative;
	padding: 30px 20px;
	margin: 40px 0;
	border: 1px solid var(--linedeep);
	border-radius: 16px;
	margin-bottom: 40px;
	font-size: 14px;
}

.rwrap .label {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: -12px;
	background: var(--bg);
	padding: 0 20px;
	white-space: nowrap;
}
#reaction {
	display: flex;
}

#reaction .item {
	width: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
}

#reaction .item .icon {
	display: flex;
	font-size: 2.5em;
}
#reaction .item .icon svg{
	height: 30px;
}

#reaction .item .countwrp {
	display: flex;
	flex-direction: column;
	text-align: center;
}

.youtube_comment_item {
	display: block;
}

.youtube_comment_avatar {
	width: 36px;
	height: 36px;
}

.list .additional {
	margin-top: 12px;
}

.list .additional .tags {
	height: 28px;
	overflow: hidden;
}

#mobiletoolbar {
	display: flex;
	align-items: center;
	gap: 2px;
}

#mobiletoolbar .item.olm {
	display: none;
}

#mobiletoolbar .item {
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity .15s, color .15s, background-color .15s;
}

#mobiletoolbar .item svg {
	height: 24px;
}

#mobiletoolbar .item .avatar {
	border-radius: 50%;
}

#my.member_expbar {
	width: 50px;
	height: 50px;
	padding: 0;
	background: transparent;
	border: 0;
	overflow: visible;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity .15s, color .15s, background-color .15s;	
}

#my.member_expbar::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 39px;
	height: 39px;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	background: conic-gradient(var(--main) var(--exp-percent), var(--bggrey) 0);
	z-index: 0;
}
/* #my.member_expbar.level_newbie::before {
	background: conic-gradient(var(--main) var(--exp-percent), var(--bggrey) 0);
}
#my.member_expbar.level_normal::before {
	background: conic-gradient(var(--main) var(--exp-percent), var(--bggrey) 0);
}
#my.member_expbar.level_intermediate::before {
	background: conic-gradient(var(--green) var(--exp-percent), var(--bggrey) 0);
}
#my.member_expbar.level_expert::before {
	background: conic-gradient(var(--jeju) var(--exp-percent), var(--bggrey) 0);
}
#my.member_expbar.level_master::before {
	background: conic-gradient(var(--main) var(--exp-percent), var(--jeju) 0);
} */

#my.member_expbar::after {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	background: var(--bg);
	z-index: 0;
}

#my.member_expbar .avatar {
	position: relative;
	z-index: 1;
	width: 30px;
	height: 30px;
	border-radius: 50%;
}

#my .member_expbar_level {
	position: absolute;
	right: 3px;
	top: 4px;
	z-index: 2;
	min-width: 20px;
	height: 16px;
	padding: 0 3px;
	border-radius: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--main);
	color: var(--white);
	font-size: 10px;
	font-weight: 700;
	line-height: normal;
	outline: 1px solid var(--bg);
}
#my .member_expbar_level.level_newbie {
	background: #a8afbc;
}
#my .member_expbar_level.level_normal {
	background: var(--main);
}
#my .member_expbar_level.level_intermediate {
	background: #16a34a;
}
#my .member_expbar_level.level_expert {
	background: #9333ea;
}
#my .member_expbar_level.level_master {
	background: linear-gradient(135deg, #f59e0b, #ef4444);
}
#my .member_expbar_level span {
	font-size: .9em;
}

#mobiletoolbar .bell_unread_dot {
	position: absolute;
	right: 15px;
	top: 9px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--red);
	outline: 2px solid var(--bg);
}

.articletoolbarwrap {
	position: absolute;
	top: 150px;
	left: -100px;
}

.articletoolbar {
	display: flex;
	flex-direction: column;
	gap: 10px;
	position: fixed;
	z-index: 10;
	padding: 16px;
	border-radius: 20px;
	transition: opacity .3s ease;
}

.articletoolbar .item {
	width: 55px;
	height: 55px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	background: var(--bg);
	border: 1px solid var(--linedeep);
}

.articletoolbar .item:hover, .articletoolbar .item#favorite.added {
	border-color: var(--main);
	background: var(--main);
	color: var(--white);
}

.articletoolbar .item#favorite.added svg {
	fill: var(--white);
}

.articletoolbar .item#voice.active.playing, .articletoolbar .item#voice.active.paused {
	overflow: hidden;
	position: relative;
	background: transparent;
	border-color: var(--bg);
}

.articletoolbar .item#voice.active.playing::before, .articletoolbar .item#voice.active.paused::before {
	content: '';
	position: absolute;
	inset: -60%;
	background: conic-gradient(from 0deg, var(--bg), var(--bg) 40%, var(--main) 100%);
	animation: ai_border_spin 3s linear infinite;
	z-index: -2;
}

.articletoolbar .item#voice.active.paused::before {
	animation-play-state: paused;
}

.articletoolbar .item#voice.active.playing::after, .articletoolbar .item#voice.active.paused::after {
	content: '';
	position: absolute;
	inset: 4px;
	background: var(--bg);
	border-radius: 50%;
	z-index: -1;
}

@keyframes ai_border_spin {
	to {
		transform: rotate(360deg);
	}
}

/* TTS voice 버튼 상태 토글 */
/* 기본: start만 표시 */
.articletoolbar .item#voice .loading, .articletoolbar .item#voice .pause, .articletoolbar .item#voice .play {
	display: none;
}

.articletoolbar .item#voice .start {
	display: inline-flex;
}

/* 로딩중 (.active만): loading 표시 */
.articletoolbar .item#voice.active .start, .articletoolbar .item#voice.active .play {
	display: none;
}

.articletoolbar .item#voice.active .loading {
	display: inline-flex;
}

.articletoolbar .item#voice.active .loading svg {
	width: 20px;
	height: 20px;
}

/* 재생중 (.active.playing): pause 표시 */
.articletoolbar .item#voice.active.playing .loading {
	display: none;
}

.articletoolbar .item#voice.active.playing .pause {
	display: inline-flex;
}

/* 일시정지 (.active.paused): play 표시 */
.articletoolbar .item#voice.active.paused .start, .articletoolbar .item#voice.active.paused .loading, .articletoolbar .item#voice.active.paused .pause {
	display: none;
}

.articletoolbar .item#voice.active.paused .play {
	display: inline-flex;
}

.articlebottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 30px;
	border: 1px solid var(--linedeep);
	border-radius: 16px;
	overflow: hidden;
}

.articlebottom nav {
	width: 100%;
}

.user {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 14px;
	width: fit-content;
}

.user .avatar {
	border-radius: 50%;
	object-fit: cover;
}

.exiticon {
	z-index: 999;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 55px;
	height: 55px;
	color: var(--text);
}

.exiticon svg {
	height: 28px;
}

#comments {
	width: 100%;
	transition: .3s;
}

#comments.active {
	transform: translateX(0);
}

#comments .col:last-child {
	border-right: 0;
}

.commentWrite {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	gap: 10px;
}

.commentWrite .col input {
	height: 40px;
}

.commentWrite .idea {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
	border: 1px solid var(--linedeep);
	background: var(--bg);
	padding: 20px;
	border-radius: 16px;
	margin: 0 0 20px;
}

.commentWrite .idea textarea {
	border: 0;
	padding: 0;
	resize: none;
	font-size: 15px;
}

.commentWrite .comment_char_count {
	font-size: 13px;
	line-height: 1;
	color: var(--textplace);
}

.commentWrite .comment_char_count.over {
	color: var(--red);
}

.commentWrite .idea .col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
}

.commentWrite .control {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 10px;
}

.commentWrite .control .guestip {
	margin-right: auto;
	color: var(--textgrey);
	font-size: 13px;
	font-weight: 300;
}

.commentWrite.active .control {
	display: flex;
}

.commentWrite .control button {
	width: 90px;
}

.commentReplies {
	margin: 10px 0 0;
}

.commentList {
	display: flex;
	flex-direction: column;
	font-size: 15px;
}

.commentList .item {
	position: relative;
	border-bottom: 1px solid var(--line);
	padding: 16px 10px;
}

.commentList .item.replyitem {
	margin-left: 38px;
	border-bottom: 0;
	padding: 14px 0;
}

.replyWrite .idea {
	margin-bottom: 0;
}

.replyWrite .control .bts {
	display: flex;
	gap: 8px;
	margin-left: auto;
}

.replyWrite .control .bts button {
	width: 80px;
	min-height: 36px;
	font-size: 13px;
}

.commentList .item .con {
	position: relative;
	width: 100%;
}

.commentList .item .replywrp {
	display: inline-flex;
	align-items: center;
	border-radius: 32px;
	font-size: 12px;
	background: var(--bggrey);
	padding: 0 4px;
	margin: 5px 0 0 -5px;
}

.commentList .item .replywrp>* {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: normal;
	min-width: 40px;
	height: 32px;
	border-radius: 0;
}

.replyWrite {
	margin: 10px -5px;
}

.commentList .item .replywrp>* svg {
	height: 16px;
}

.commentList .item .avatar {
	width: auto;
	flex: 0 0 auto;
	border-radius: 50%;
	width: 32px;
	height: 32px;
}

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

.commentList .item .user {
	width: 100%;
	height: auto;
	align-items: flex-start;
	gap: 10px;
}

.commentList .item .user .name {
	line-height: normal;
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 5px;
	margin: 0;
}

.commentList .item .user .name .nickname {
	font-weight: 700;
}

.commentList .item .user .name .date {
	color: var(--textgrey);
	font-size: .9em;
}

.commentList .item p {
	margin: 5px 0;
}

.widget .commentList .item p {
	word-wrap: break-word;
	word-break: keep-all;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	margin-bottom: 0;
}

.widget .commentList .item .ori {
	font-size: .9em;
	color: var(--textgrey);
}

.widget .commentList .item .ori span {
	font-weight: 700;
	color: var(--black);
	word-wrap: break-word;
	word-break: keep-all;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.widget .commentList .item:hover .ori span {
	text-decoration: underline;
}

.widget .commentList .item {
	padding: 0;
}

.widget .commentList .item a {
	height: 76px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.widget .commentList .item a .avatar {
	border-radius: 50%;
}

.widget .commentList .item a:hover p {
	text-decoration: underline;
}

.comset {
	background: transparent;
	color: var(--textgrey);
	padding: 0;
	border: 0;
	min-height: auto;
	min-width: auto;
}

.comset svg {
	width: 16px;
	width: 16px;
}

.post-navigation .nav-links {
	display: flex;
	flex-direction: column-reverse;
	width: 100%;
	gap: 1px;
	background: var(--line);
}

.post-navigation .nav-links>*>* {
	height: 48px;
	width: 100%;
	background: var(--bg);
	color: var(--text);
	justify-content: flex-start;
	gap: 10px;
	display: flex;
	align-items: center;
	padding: 0 15px;
}

.post-navigation .nav-links>*>* svg {
	height: 16px;
	color: var(--linedeep);
}

.post-navigation .nav-links>*>*:hover span {
	text-decoration: underline;
}

.post-navigation .nav-links>*>* span {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: calc(100% - 50px);
}

footer {
	position: relative;
	font-size: .9em;
	padding: 40px 0;
	background: var(--bggrey);
	color: var(--textgrey);
}

footer a.logo {
	display: inline-flex;
	margin: 0 0 20px;
}

footer .logo svg {
	height: 30px;
	width: auto;
	fill: #b2b2b7;
}

footer .info_com {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 14px;
	margin: 0 0 15px;
	font-weight: 600;
	color: var(--text);
}

footer .info_com>* {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}

footer .info_site {
	margin: 0 0 15px;
}

.snslink {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 20px 0 0;
	position: absolute;
	right: 40px;
	bottom: 42px;
}

.snslink a {
	display: flex;
	fill: var(--text);
	color: var(--text);
}

#movetop .member_expbar {
	padding: 0;
	background: conic-gradient(var(--main) var(--exp-percent), var(--bggrey) 0);
	border-color: var(--line);
}

#movetop .member_expbar::before {
	content: '';
	position: absolute;
	inset: 5px;
	border-radius: 50%;
	background: var(--bg);
}

#movetop .member_expbar_level {
	position: relative;
	z-index: 1;
	width: 35px;
	height: 35px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	gap: 1px;
	letter-spacing: -0.5px;
}

#movetop .member_expbar_level span {
	font-weight: 600;
	font-size: .9em;
}

#movetop .member_expbar:hover {
	border-color: var(--main);
}

.form {
	display: flex;
	flex-direction: column;
}

.form #wpcontent {
	margin-top: -3px;
}

.form .submitWrrap {
	margin-top: -3px;
	border: 3px solid var(--black);
	padding: 20px;
}

.form .submitWrrap button {
	height: 50px;
	width: 100%;
	max-width: 170px;
	min-width: 170px;
	color: var(--bg);
	font-weight: 600;
	margin-left: auto;
}

.modal {
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 70%);
	padding: 20vh 20px 20px;
	display: none;
}

.modal.full {
	padding: 0;
}

.modal.active {
	display: block;
}
.modal.full.active{
	display: flex;
	flex-direction: column;
}

.modalheader {
	position: relative;
	display: flex;
	justify-content: space-between;
}

.modalheader .title {
	font-size: 1.5em;
	font-weight: 700;
	margin: 0 0 15px;
}

.modalbody {
	position: relative;
	margin: 0 0 20px;
}

.modal.full .modalbody{
	margin: 0 0 60px;
}

.modaltags .title {
	font-weight: 600;
}

.full .modalcon {
	max-width: 100%;
	padding: 30px 0;
	border-radius: 16px 16px 0 0;
	height: calc(100vh - 40px);
	overflow-y: auto;
}

.full .exiticon {
	position: static;
	width: 100%;
	height: 40px;
	color: var(--white);
	justify-content: flex-end;
	padding: 6px 20px 0;
}

.full .exiticon svg {
	height: 26px;
}

.postview_loading {
	display: flex;
	justify-content: center;
	margin: 25vh 0 0;
}

.postview_loading svg {
	height: 24px;
}

.modalcon {
	width: 100%;
	max-width: 400px;
	min-height: 250px;
	border-radius: 16px;
	background: var(--bg);
	box-shadow: var(--shadowlg);
	padding: 30px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

.modalfooter {
	position: relative;
	margin-top: auto;
	display: flex;
	justify-content: center;
	gap: 10px;
}

.modalfooter .bt {
	width: 100%;
	max-width: 120px;
	height: 50px;
}

.modalfooter .bt.noline {
	border-color: var(--bg);
}

.modalfooter .bt.red {
	color: var(--red);
	border-color: var(--red);
}

@media screen and (max-width: 1280px) {
	header section {
		padding: 0 20px;
	}
}

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

@media screen and (max-width: 1024px) {
	section.wis {
		grid-template-columns: auto 260px;
	}
}

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

@media screen and (max-width: 860px) {
	#site-navigation {
		display: none;
	}

	header .searchwrap {
		display: none;
	}
	#mobiletoolbar #my.member_expbar{
		display: none;
	}

	#mobiletoolbar .item.olm {
		display: flex;
	}

	#mobiletoolbar {
		display: flex;
		margin-right: -12px;
		margin-left: auto;
		order: 1;
	}

	.type-post .permalink {
		gap: 10px;
	}

	aside.horizontal .sticky {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

	.arct .titlewrp .tip::after {
		position: fixed;
		left: 16px;
		right: 16px;
		top: 124px;
		width: auto;
		max-width: none;
		transform: translateY(-4px);
	}

	.arct .titlewrp .tip:hover::after, .arct .titlewrp .tip:focus-visible::after {
		transform: translateY(0);
	}

	body, input, textarea {
		font-size: 14px;
	}

	header {
		padding: 8px 0;
	}

	header.sty {
		padding: 4px 0;
	}

	header section {
		padding: 0 18px;
		gap: 10px;
	}

	.site-branding svg {
		height: 26px;
	}

	section.ovh {
		margin-top: 10px;
	}

	#mobiletoolbar .item {
		color: var(--black);
	}

	html[data-theme="dark"] #mobiletoolbar .item {
		color: var(--text);
	}

	#primary {
		min-height: calc(100vh - 58px);
		margin: 30px 0 85px;
	}
	#primary:has(.cover){
		margin: 0 0 30px;		
	}
	.archive-description br {
		display: none;
	}

	.arct .catimg{
		top: auto;
    bottom: -10px;
		left: auto;
		transform: none;
    right: -70px;
    height: auto;
    width: 100%;
	}

	.arct.cover h1 {
		font-size: 1.9em;
	}

	.arct.cover .titlewrp {
		max-width: 90%;
	}

	.latestvids {
		margin: 20px -20px;
	}

	.marquee {
		width: auto;
		margin: 0;
		border-radius: 0;
		border: 0;
	}

	.marquee_arrow {
		margin: 0 5px;
	}

	.youtubelist .youtubeitem{
		width: 100px;
	}
	.youtubelist .chart_youtubeitem .rank{
		font-size: 1.6em;
	}

	header .account {
		display: none !important;
	}

	header .searchwrap input {
		height: 36px;
	}

	.arct {
		padding: 0 10px 20px;
	}

	.arct.cover {
		padding: 25px 0 30px;
		height: auto;
	}

	.arct.cover .bts {
		margin: 14px 0 0;
	}

	.arct .bts {
		gap: 8px;
	}

	article .ad {
		bottom: 80px;
	}

	/* article .content img{
		max-width: none;
		width: auto;
		margin: 0 -10px;
	} */

	.pgnwrp {
		flex-direction: column;
	}

	.account .toolbar a {
		color: var(--black);
	}

	h1 {
		font-size: 1.9em;
	}

	.account {
		margin-left: auto;
	}

	section.wis, section.wis.read {
		grid-template-columns: 100%;
		gap: 0;
	}

	.type-post .thumb {
		width: 100%;
	}

	article {
		padding: 0 0 0;
		border: 0;
	}

	.type-post .postinfo {
		flex-direction: column;
	}

	.related .type-post .postinfo {
		flex-direction: row;
	}
	
	.list .type-post {
		padding: 20px;
		margin: 0 -8px;
	}

	.list .days {
		padding: 0 30px 10px;
	}

	.list.board {
		border-top: 1px solid var(--line);
	}

	.list.board>* {
		height: auto;
		display: block;
		padding: 20px;
	}

	.list.board>*>.views span {
		display: inline-block;
	}

	.list.board>*>* {
		float: left;
		margin-right: 7px;
		padding-right: 7px;
		padding: 0 7px 0 0 !important;
		border-right: 1px solid var(--line);
		line-height: normal;
	}

	.list.board>*>*:nth-last-child(2),
	.list.board .title {
		border-right: 0;
		margin-right: 0;
		padding-right: 0;
	}

	.list.board>*>.bcat {
		border-right: 0;
		margin-right: 0;
		padding-right: 0;
	}

	.list.board>*>.ago,
	.list.board>*>.views {
		color: var(--textgrey);
	}

	.list.board .title {
		width: 100%;
		white-space: normal;
		margin: 10px 0;
	}

	.list.board .title .title_inner {
		display: contents;
		max-width: 100%;
		font-size: 1.1em;
	}

	.list.board .num {
		display: none;
	}

	.tablehd {
		display: none !important;
	}

	.list.board .permalink:hover {
		background: transparent;
	}

	.list.gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 6px;
		margin: 0 -8px;
	}

	.list.gallery .type-post .permalink .meta {
		padding: 16px;
	}

	/* Charts page weekly K-pop chart mobile styles start */
	.chartitem{
		gap: 10px;
	}
	.chartitem .rankbox {
		width: 42px;
	}
	.chartitem .thumb{
		width: 64px;
	}
	/* Charts page weekly K-pop chart mobile styles end */

	.pgnwrp .counts {
		order: 1;
	}

	.rwrap {
		padding: 30px 10px;
	}

	.related .list {
		margin: 0 -10px;
	}

	.related_search_wrp .list.board {
		margin: 0 -10px;
	}

	.related_search_wrp .list.board>* {
		padding: 16px;
		border-top: 0;
		height: auto;
	}

	.related_search_wrp .list.board .title {
		font-size: 1.1em;
	}

	.related_search_wrp .list.board>* .bts {
		z-index: 1;
		position: absolute;
		right: 0;
		bottom: 0;
		margin: 10px;
	}

	.related_search_wrp .list.board>* button {
		padding: 0 14px;
		min-height: 36px;
		font-size: 1em;
	}

	.commentWrite.replyWrite .control {
		flex-direction: column;
	}

	.commentWrite.replyWrite .control .comment_char_count {
		display: none;
	}

	.commentWrite.replyWrite .control .bts {
		width: 100%;
	}

	.commentWrite.replyWrite .control .bts>* {
		width: 100%;
	}

	#alert {
		bottom: 90px;
	}

	#movetop {
		right: 15px;
		bottom: 65px;
	}

	.articletoolbar {
		left: 0;
		bottom: 16px;
		flex-direction: row;
		width: 100%;
		border-radius: 0;
		padding: 0 16px;
	}

	.archive-meta {
		bottom: auto;
		top: 10px;
	}

	.archive-meta span {
		font-size: 1.5em;
	}

	.pgnwrp {
		flex-direction: column;
		gap: 20px;
	}

	#primary:has(.chatroom) {
		margin: 0 auto !important;
		height: auto;
	}

	.chatroom {
		height: 50vh;
		right: auto;
		left: 10px;
		bottom: 16px;
		width: calc(100vw - 20px);
	}

	.chatroom.tyb {
		left: 0;
		top: 0;
		right: 0;
		bottom: 0;
		width: auto;
		height: auto;
		margin: 0;
		border: 0;
		border-radius: 0;
	}

	footer {
		padding: 10px 0 60px;
	}

	footer br {
		display: none;
	}

	footer .snslink {
		position: static;
	}

	.grd::after, .single article::after {
		display: none;
	}

	aside.horizontal .sticky {
		grid-template-columns: repeat(1, 1fr);
	}

	aside.horizontal .widget {
		padding: 20px;
		margin: 0 -8px;
	}

	#pagination .numbar a, #pagination .numbar span, #pagination .page-numbers.prev, #pagination .page-numbers.next {
		min-width: 42px;
		height: 42px;
	}

	.vsform .content_editor {
		margin: 20px -8px 20px;
	}	

	.mtgnb {
		display: flex;
	}

	#movetop .desk {
		display: none;
	}

	.full .modalcon {
		padding: 0;
	}

	.full .exiticon {
		padding: 6px 18px 0;
	}

}
