@charset "utf-8";

:root {
	--rt-color-primary: #2f6664;
	--rt-color-primary-dark: #285856;
	--rt-color-recent: #009688;
	--rt-color-text: #2d2d2f;
	--rt-color-text-light: #6e6e73;
	--rt-color-line: #e2e2e2;
	--rt-color-line-dark: #b8b8b8;
	--rt-color-background: #fff;
	--rt-color-background-light: #f7f7f7;
	--rt-color-comment: #f33;
	--rt-content-width: 1160px;
	--rt-sidebar-width: 210px;
	--rt-mobile-content-gutter: 16px;
	--rt-topbar-height: 50px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	min-width: 320px;
	overflow-y: scroll;
	scroll-behavior: smooth;
	scroll-padding-top: var(--rt-topbar-height);
}

body {
	margin: 0;
	background: var(--rt-color-background);
	color: var(--rt-color-text);
	font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "맑은 고딕", Arial, sans-serif;
	font-size: 13px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

#rtown21 [data-rt-relative-time].is-recent {
	color: var(--rt-color-recent);
	font-weight: 700;
}

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

a:hover {
	text-decoration: underline;
}

button,
input {
	font: inherit;
}

button {
	cursor: pointer;
}

/* 사이트 공통 단일 선택 셀렉트 */
#rtown21 select:not([multiple]):not([size]) {
	appearance: none;
	-webkit-appearance: none;
	padding-right: 36px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 12px 8px;
	cursor: pointer;
}

#rtown21 select:not([multiple]):not([size]):disabled {
	cursor: default;
}

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

h1,
h2,
h3,
p {
	margin: 0;
}

/* 라이믹스 공통 알림
-------------------------------------------------- */

#rhymix_alert {
	top: 50%;
	bottom: auto;
	transform: translate(-50%, -50%);
}

/* 알림센터 기본 바는 상단 퀵 메뉴의 알림 레이어로 대체합니다. */
#nc_container,
.ncenterlite_block {
	display: none !important;
}

.rt-container {
	width: min(var(--rt-content-width), calc(100% - 40px));
	margin-right: auto;
	margin-left: auto;
}

/* 상단 바
-------------------------------------------------- */

.rt-topbar {
	position: sticky;
	z-index: 1100;
	top: 0;
	background: var(--rt-color-primary);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
	color: #fff;
	font-size: 12px;
}

/* 회원 팝업 메뉴가 스크롤 중 상단 바 위로 겹치지 않도록 합니다. */
body #popup_menu_area {
	z-index: 990;
	border-color: rgba(0, 0, 0, 0.08);
}

body #popup_menu_area ul {
	padding: 6px 0;
}

body #popup_menu_area a {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	height: 32px;
	padding: 0 10px;
}

.rt-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: var(--rt-topbar-height);
	gap: 24px;
}

.rt-topbar__start {
	position: relative;
	display: flex;
	align-items: center;
	align-self: stretch;
	flex: 1;
	min-width: 0;
	gap: 20px;
}

.rt-topbar__mobile-actions,
.rt-topbar__mobile-brand,
.rt-topbar__mobile-search {
	display: none;
}

.rt-topbar__home {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 52px;
	height: var(--rt-topbar-height);
	overflow: hidden;
	background: rgba(55, 55, 55, 0.9);
}

.rt-topbar__home-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: var(--rt-topbar-height);
	color: #fff;
}

.rt-topbar__home:hover {
	background: rgba(35, 35, 35, 0.95);
}

.rt-topbar__home-link:hover {
	color: #fff;
	text-decoration: none;
}

.rt-topbar__home-link svg {
	flex: none;
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.rt-topbar__home-message {
	display: inline-flex;
	align-items: center;
	flex: 0 1 auto;
	min-width: 0;
	height: 100%;
	overflow: hidden;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: -0.5px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rt-topbar__home-message:hover {
	color: inherit;
	text-decoration: none;
}

html.rt-topbar-home-reveal-ready .rt-topbar__home {
	height: 0;
	pointer-events: none;
}

html.rt-topbar-home-reveal-ready.rt-topbar-home-reveal-animated .rt-topbar__home {
	transition: height 0.3s ease 0.3s, background 0.15s ease-in-out;
}

html.rt-topbar-home-reveal-ready.rt-topbar-home-reveal-animated .rt-topbar__home-message {
	transition: margin-left 0.3s ease 0.6s;
}

html.rt-topbar-home-reveal-ready.rt-topbar-home-visible .rt-topbar__home {
	height: var(--rt-topbar-height);
	pointer-events: auto;
	transition-delay: 0.6s, 0s;
}

html.rt-topbar-home-reveal-ready.rt-topbar-home-visible .rt-topbar__home-message {
	margin-left: 74px;
	transition-delay: 0.3s;
}

.rt-topbar a:focus-visible,
.rt-topbar button:focus-visible,
.rt-topbar input:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.rt-login {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: none;
	gap: 14px;
}

.rt-login__guest {
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

.rt-login__guest > .rt-member__tools {
	position: relative;
}

.rt-login__guest > .rt-member__tools::before {
	position: absolute;
	top: 50%;
	left: -5px;
	width: 1px;
	height: 9px;
	background: rgba(255, 255, 255, 0.35);
	content: "";
	transform: translateY(-50%);
}

.rt-login__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 30px;
	padding: 0 5px;
	border: 0;
	background: transparent;
	color: inherit;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.rt-login__button:hover {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.rt-member {
	display: flex;
	align-items: center;
	gap: 17px;
	white-space: nowrap;
}

.rt-member > * {
	position: relative;
}

.rt-member > * + *::before {
	position: absolute;
	top: 50%;
	left: -6px;
	width: 1px;
	height: 9px;
	background: rgba(255, 255, 255, 0.35);
	content: "";
	transform: translateY(-50%);
}

.rt-member__name {
	font-size: 13px;
	font-weight: 700;
}

.rt-member__identity {
	display: inline-flex;
	align-items: center;
	padding: 0;
	border: 0;
	appearance: none;
	background: transparent;
	color: inherit;
	cursor: pointer;
	font: inherit;
	gap: 8px;
	text-decoration: none;
}

.rt-member__identity:hover,
.rt-member__identity:focus-visible {
	color: inherit;
	text-decoration: none;
}

.rt-member__identity:hover .rt-member__name,
.rt-member__identity:focus-visible .rt-member__name {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.rt-member-account {
	display: flex;
	align-items: center;
}

.rt-member-account__menu {
	position: absolute;
	z-index: 1200;
	top: calc(100% + 6px);
	left: 0;
	min-width: 120px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
	color: var(--rt-color-text);
	font-size: 13px;
	white-space: normal;
}

.rt-member-account__menu[aria-hidden="true"] {
	display: none;
}

.rt-member-account__menu ul {
	margin: 0;
	padding: 6px 0;
	list-style: none;
}

.rt-member-account__menu li {
	margin: 0;
	padding: 0;
}

.rt-member-account__menu a {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	height: 32px;
	padding: 0 10px;
	color: var(--rt-color-text);
	text-decoration: none;
	white-space: nowrap;
}

.rt-member-account__menu a:hover,
.rt-member-account__menu a:active,
.rt-member-account__menu a:focus {
	background: #fafafc;
	color: var(--rt-color-text);
	text-decoration: none;
}

.rt-topbar .rt-member-account__menu a:focus-visible {
	outline: 2px solid var(--rt-color-primary);
	outline-offset: -2px;
}

.rt-member__tools {
	display: flex;
	align-items: center;
	margin-left: auto;
	gap: 4px;
}

.rt-member__avatar,
.rt-notification__avatar {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	overflow: hidden;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.rt-member__avatar {
	width: 27px;
	height: 27px;
	border: 1px solid rgba(255, 255, 255, 0.45);
}

.rt-member__avatar img,
.rt-notification__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rt-member__avatar-empty,
.rt-notification__avatar-empty,
.rt-sidebar-member__avatar-empty {
	display: block;
	width: 100%;
	height: 100%;
	background: url("../../../modules/board/skins/rtown_board/profile-default.png") no-repeat center;
	background-size: cover;
}

.rt-notification {
	position: relative;
	display: flex;
	align-items: center;
	margin-left: auto;
}

.rt-message {
	position: relative;
	display: flex;
	align-items: center;
}

.rt-member-tool__toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin: -4px 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: inherit;
}

.rt-member-tool__toggle:hover {
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.12);
	text-decoration: none;
}

.rt-member-tool__toggle svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.rt-topbar-search {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 36px;
	align-items: center;
	flex: none;
	box-sizing: border-box;
	width: 200px;
	height: 34px;
	margin-left: 2px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.17);
	color: #fff;
	transition: width 0.3s ease, background-color 0.16s ease;
}

.rt-topbar-search::before {
	display: none;
}

.rt-topbar-search:focus-within {
	width: 220px;
	background: #fff;
	color: var(--rt-color-text);
}

.rt-topbar-search__field {
	display: block;
	min-width: 0;
}

.rt-topbar-search__input {
	box-sizing: border-box;
	width: 100%;
	height: 34px;
	padding: 0 8px 0 11px;
	border: 0;
	outline: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	font-size: 13px;
}

.rt-topbar .rt-topbar-search__input:focus-visible {
	outline: 0;
}

.rt-topbar-search__input::placeholder {
	color: rgba(255, 255, 255, 0.76);
}

.rt-topbar-search:focus-within .rt-topbar-search__input::placeholder {
	color: #8a8a8a;
}

.rt-topbar-search__input::-webkit-search-cancel-button {
	display: none;
}

.rt-topbar-search__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 36px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 0 5px 5px 0;
	background: transparent;
	color: inherit;
}

.rt-topbar-search__submit:hover,
.rt-topbar-search__submit:focus-visible {
	background: rgba(0, 0, 0, 0.08);
}

.rt-topbar-search__submit svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.rt-member-tool__badge {
	position: absolute;
	top: -3px;
	right: -5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 4px;
	border: 2px solid var(--rt-color-primary);
	border-radius: 999px;
	background: #e43b36;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1;
}

.rt-member-tool__badge[hidden] {
	display: none;
}

.rt-member-panel {
	--rt-member-panel-arrow-left: calc(100% - 19px);
	position: absolute;
	z-index: 1200;
	top: calc(100% + 11px);
	right: -4px;
	width: min(360px, calc(100vw - 24px));
	border: 1px solid #d5d5d5;
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
	color: var(--rt-color-text);
	white-space: normal;
}

.rt-member-panel[aria-hidden="true"] {
	display: none;
}

.rt-member-panel__arrow {
	position: absolute;
	top: -6px;
	left: var(--rt-member-panel-arrow-left);
	width: 11px;
	height: 11px;
	border-top: 1px solid #d5d5d5;
	border-left: 1px solid #d5d5d5;
	background: #fff;
	transform: translateX(-50%) rotate(45deg);
}

.rt-member-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 44px;
	padding: 0 12px 0 14px;
	border-bottom: 1px solid var(--rt-color-line);
}

.rt-member-panel__head > strong {
	font-size: 13px;
}

.rt-member-panel__actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.rt-member-panel__read-all,
.rt-member-panel__close {
	padding: 0;
	border: 0;
	background: transparent;
	color: #777;
}

.rt-member-panel__read-all {
	font-size: 12px;
	letter-spacing: -0.5px;
}

.rt-member-panel__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	font-size: 28px;
	font-weight: 300;
	line-height: 1;
}

.rt-member-panel__read-all:hover,
.rt-member-panel__close:hover {
	color: var(--rt-color-primary);
}

.rt-member-panel__list {
	max-height: min(370px, calc(100vh - 180px));
	overflow-x: hidden;
	overflow-y: auto;
}

.rt-member-panel__list > li + li {
	border-top: 1px solid #ededed;
}

.rt-member-panel__item {
	display: block;
	min-width: 0;
	padding: 11px 14px;
}

.rt-member-panel__item--notification {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	align-items: start;
	gap: 10px;
}

.rt-member-panel__item:hover {
	background: #f4f8f8;
	text-decoration: none;
}

.rt-notification__avatar {
	width: 36px;
	height: 36px;
	background: #e9eeee;
	color: #8aa4a2;
}

.rt-member-panel__item-body,
.rt-member-panel__item-meta {
	display: block;
	min-width: 0;
}

.rt-member-panel__item-heading {
	display: block;
	min-width: 0;
}

.rt-notification .rt-member-panel__item-heading,
.rt-message .rt-member-panel__item-heading {
	white-space: nowrap;
}

.rt-member-panel__item-label {
	display: inline-flex;
	align-items: center;
	height: 19px;
	margin-right: 5px;
	padding: 0 5px;
	border-radius: 3px;
	background: #e43b36;
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
	vertical-align: 1px;
}

.rt-member-panel__item-title {
	display: inline;
	color: #333;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.6;
	overflow-wrap: anywhere;
}

.rt-notification .rt-member-panel__item-title,
.rt-message .rt-member-panel__item-title {
	white-space: normal;
}

.rt-member-panel__list .is-unread .rt-member-panel__item-title {
	font-weight: 700;
}

.rt-member-panel__item-meta {
	margin-top: 5px;
	color: var(--rt-color-text-light);
	font-size: 12px;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.rt-member-panel__empty {
	padding: 28px 14px;
	color: var(--rt-color-text-light);
	text-align: center;
}

.rt-member-panel__foot {
	border-top: 1px solid var(--rt-color-line);
	text-align: center;
}

.rt-member-panel__foot a {
	display: block;
	padding: 12px 14px;
	color: var(--rt-color-primary);
	font-size: 14px;
	font-weight: 700;
}

.rt-member-panel a:focus-visible,
.rt-member-panel button:focus-visible {
	outline-color: var(--rt-color-primary);
	outline-offset: -2px;
}

/* 비밀번호 표시 전환
-------------------------------------------------- */

.rt-password-field {
	position: relative;
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
}

.rt-password-field > input {
	padding-right: 34px !important;
}

.rt-password-toggle {
	position: absolute;
	top: 50%;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #888;
	cursor: pointer;
	transform: translateY(-50%);
}

.rt-password-toggle:hover {
	color: var(--rt-color-primary);
}

.rt-password-toggle:focus-visible {
	border-radius: 3px;
	outline: 2px solid var(--rt-color-primary);
	outline-offset: -3px;
}

.rt-password-toggle svg {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.rt-password-toggle::after {
	position: absolute;
	width: 18px;
	height: 1.5px;
	background: currentColor;
	content: "";
	opacity: 0;
	transform: rotate(45deg);
}

.rt-password-toggle.is-visible::after {
	opacity: 1;
}

.xm .rt-password-toggle {
	height: 20px;
}

.xm .signin .rt-password-field {
	display: block;
	width: 100%;
}

.xm .signin .rt-password-field > input {
	box-sizing: border-box;
}

/* 헤더
-------------------------------------------------- */

.rt-header {
	padding: 28px 0 26px;
}

.rt-logo {
	display: inline-flex;
	align-items: flex-start;
	flex-direction: column;
}

.rt-logo:hover {
	text-decoration: none;
}

.rt-logo__image {
	display: block;
	width: auto;
	height: 26px;
	max-width: none;
}

/* 위치 및 설정 바
-------------------------------------------------- */

.rt-location {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 50px;
	padding: 0;
	background: #929292;
	color: #fff;
	font-size: 12px;
}

.rt-location__left,
.rt-location__right {
	display: flex;
	align-items: center;
}

.rt-location__left {
	flex: 1 1 auto;
	min-width: 0;
	gap: 10px;
}

.rt-location__right {
	gap: 9px;
}

.rt-location__setting {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	flex: none;
	height: 30px;
	margin-left: 10px;
	padding: 0 10px;
	border: 0;
	border-radius: 4px;
	background: #555;
	color: #fff;
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.rt-location__setting-icon {
	display: block;
	flex: none;
	width: 16px;
	height: 16px;
	background: currentColor;
	-webkit-mask: url("../../../modules/board/skins/rtown_board/icons/icon-star.svg") center / contain no-repeat;
	mask: url("../../../modules/board/skins/rtown_board/icons/icon-star.svg") center / contain no-repeat;
}

.rt-location__setting-mobile {
	display: none;
}

.rt-location__favorites {
	display: flex;
	align-items: center;
	min-width: 0;
	min-height: 28px;
	overflow: hidden;
}

.rt-location__favorite-link {
	position: relative;
	display: flex;
	align-items: center;
	flex: 0 1 auto;
	max-width: 145px;
	min-height: 28px;
	padding: 0 9px;
	overflow: hidden;
	color: inherit;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rt-location__favorite-link + .rt-location__favorite-link::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 11px;
	background: rgba(255, 255, 255, 0.35);
	content: "";
	transform: translateY(-50%);
}

.rt-location__favorite-link:hover,
.rt-location__favorite-link:focus {
	color: inherit;
	text-decoration: underline;
}

.rt-popular {
	position: relative;
	flex: 0 1 390px;
	min-width: 0;
}

.rt-popular__bar,
.rt-popular__current-link {
	display: flex;
	align-items: center;
	min-width: 0;
	height: 50px;
}

.rt-popular__bar {
	width: 100%;
}

.rt-popular__current-link {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0 6px;
	color: #fff;
	gap: 8px;
	text-decoration: none;
}

.rt-popular__current-link:hover,
.rt-popular__current-link:focus-visible {
	color: #fff;
	text-decoration: none;
	}

.rt-popular__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 50px;
	width: 50px;
	min-width: 50px;
	height: 50px;
	padding: 0;
	margin-left: 3px;
	border: 0;
	border-radius: 5px;
	background: transparent;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
}

.rt-popular__toggle:hover,
.rt-popular__toggle:focus-visible,
.rt-popular__toggle[aria-expanded="true"] {
	background: rgba(255, 255, 255, 0.14);
}

.rt-popular__label {
	display: inline-flex;
	align-items: center;
	flex: none;
	height: 24px;
	margin-right: 3px;
	padding: 0 10px;
	border-radius: 999px;
	background: rgba(54, 54, 54, 0.72);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: -0.25px;
	line-height: 1;
}

.rt-popular__current {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	font-size: 13px;
	font-weight: 400;
	text-overflow: ellipsis;
	white-space: nowrap;
	opacity: 1;
	transition: opacity 0.14s ease;
}

.rt-popular__current.is-changing {
	opacity: 0;
}

.rt-popular__toggle > svg {
	flex: none;
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	transition: transform 0.18s ease;
}

.rt-popular__toggle[aria-expanded="true"] > svg {
	transform: rotate(180deg);
}

.rt-popular-panel {
	position: absolute;
	z-index: 1090;
	top: 100%;
	right: 0;
	width: min(360px, calc(100vw - 32px));
	padding: 14px;
	border: 1px solid rgba(0, 0, 0, 0.09);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
	color: #1d1d1f;
	opacity: 0;
	transform: translateY(-5px);
	visibility: hidden;
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.rt-popular-panel.is-open {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.rt-popular-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2px 10px;
	gap: 12px;
}

.rt-popular-panel__head h2,
.rt-popular-panel__head p {
	margin: 0;
}

.rt-popular-panel__head h2 {
	font-size: 17px;
	line-height: 1.35;
}

.rt-popular-panel__head p {
	margin-top: 6px;
	color: #8d8d8f;
	font-size: 13px;
	line-height: 1.4;
}

.rt-popular-panel__close {
	display: none;
}

.rt-popular-panel__list {
	margin: 0;
	padding: 0;
	border-top: 1px solid #eceeef;
	list-style: none;
}

.rt-popular-panel__list li + li {
	border-top: 1px solid #f0f1f2;
}

.rt-popular-panel__list a {
	display: grid;
	align-items: center;
	grid-template-columns: 74px minmax(0, 1fr) 16px;
	min-height: 42px;
	padding: 6px 2px;
	color: #292b2d;
	gap: 8px;
	text-decoration: none;
}

.rt-popular-panel__list a:hover,
.rt-popular-panel__list a:focus-visible {
	color: #1d1d1f;
	text-decoration: none;
}

.rt-popular-panel__list a:focus-visible {
	background: #f7f8f8;
}

.rt-popular-panel__board {
	overflow: hidden;
	color: #2f6f6b;
	font-size: 12px;
	font-weight: 400;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rt-popular-panel__list strong {
	min-width: 0;
	overflow: hidden;
	font-size: 13px;
	font-weight: 400;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rt-popular-panel__title-row {
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 3px;
}

.rt-popular-panel__comment-count {
	flex: none;
	color: #e5484d;
	font-size: 13px;
	font-weight: 700;
}

.rt-popular-panel__list svg,
.rt-popular-panel__close svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.rt-popular-panel__list svg {
	color: #a1a4a7;
}

.rt-popular-backdrop {
	display: none;
}

/* 전체 레이아웃
-------------------------------------------------- */

.rt-layout {
	display: grid;
	grid-template-columns: var(--rt-sidebar-width) minmax(0, 1fr);
	align-items: stretch;
	column-gap: 24px;
	padding-bottom: 60px;
}

.rt-sidebar {
	--rt-sidebar-focus-color: var(--rt-color-primary);
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 16px;
}

.rt-sidebar a,
.rt-sidebar button {
	-webkit-tap-highlight-color: rgba(47, 102, 100, 0.15);
}

.rt-sidebar a:focus:not(:focus-visible),
.rt-sidebar button:focus:not(:focus-visible) {
	outline: none;
}

.rt-sidebar a:focus-visible,
.rt-sidebar button:focus-visible {
	outline: 2px solid var(--rt-sidebar-focus-color);
	outline-offset: -2px;
}

.rt-sidebar__mobile-head,
.rt-mobile-drawer-backdrop {
	display: none;
}

.rt-sidebar__mobile-body {
	display: flex;
	flex-direction: column;
	min-width: 0;
	gap: 12px;
}

.rt-search-panel__body,
.rt-sidebar__mobile-body,
.rt-member-panel__list {
	scrollbar-width: thin;
}

.rt-search-panel__body::-webkit-scrollbar,
.rt-sidebar__mobile-body::-webkit-scrollbar,
.rt-member-panel__list::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

.rt-content {
	min-width: 0;
	padding: 16px 0 0;
}

/* 목록 공통 검색 및 페이지 이동 */
.rt-list-footer {
	--rt-list-text: #1d1d1f;
	--rt-list-muted: #6e6e73;
	--rt-list-subtle: #a3a3a3;
	--rt-list-line: #f0f0f2;
	--rt-list-soft: #f5f5f5;
	--rt-list-surface: #fff;
	margin-top: 30px;
}

.rt-list-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 3px;
}

.rt-list-page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 26px;
	height: 26px;
	padding: 0 5px;
	border: 0;
	border-radius: 5px;
	background: transparent;
	color: #525252;
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	text-decoration: none;
}

.rt-list-page:hover,
.rt-list-page:focus {
	background: var(--rt-list-soft);
	color: var(--rt-list-text);
	text-decoration: none;
}

.rt-list-page.is-current {
	background: transparent;
	color: var(--rt-list-text);
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.rt-list-page--direction {
	width: 26px;
	min-width: 26px;
	padding: 0;
	border: 1px solid var(--rt-list-line);
	background: var(--rt-list-surface);
	font-size: 16px;
}

.rt-list-page--direction:hover,
.rt-list-page--direction:focus {
	border-color: var(--rt-list-subtle);
}

.rt-list-page.is-disabled,
.rt-list-page.is-disabled:hover,
.rt-list-page.is-disabled:focus {
	border-color: var(--rt-list-line);
	background: #fafafa;
	color: #d4d4d4;
	cursor: default;
}

.rt-list-page-status {
	display: none;
	align-items: center;
	justify-content: center;
	min-width: 60px;
	height: 26px;
	color: var(--rt-list-muted);
	font-size: 13px;
}

.rt-list-page-status strong {
	color: var(--rt-list-text);
}

.rt-site .rt-list-search {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 24px 0 0;
}

.rt-site .rt-list-search select,
.rt-site .rt-list-search input[type="search"] {
	box-sizing: border-box;
	height: 40px;
	margin: 0;
	border: 1px solid #d4d4d4;
	border-radius: 8px;
	background: #fff;
	box-shadow: none;
	color: var(--rt-list-text);
	font: inherit;
	font-size: 13px;
	line-height: normal;
}

.rt-site .rt-list-search select {
	min-width: 112px;
	padding: 0 32px 0 11px;
}

.rt-site .rt-list-search input[type="search"] {
	width: min(280px, 50vw);
	padding: 0 12px;
}

.rt-site .rt-list-button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	height: 40px;
	padding: 0 14px;
	border: 1px solid transparent;
	border-radius: 6px;
	background: #eff0f2;
	color: #525252;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
}

.rt-site .rt-list-button:hover,
.rt-site .rt-list-button:focus {
	background: #e3e5e8;
	color: #333;
	text-decoration: none;
}

.rt-site .rt-list-button:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

.rt-site .rt-list-sr-only {
	position: absolute;
	overflow: hidden;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* 쪽지 목록 */
.rt-content > .xc #fo_message_list .table-striped tbody > tr:nth-child(odd) > td,
.rt-content > .xc #fo_message_list .table-striped tbody > tr:nth-child(odd) > th {
	background-color: transparent;
}

.rt-content > .xc #fo_message_list td.title > a {
	color: #7d7d7f;
}

.rt-content > .xc #fo_message_list td.title > a strong {
	color: var(--rt-color-text);
}

/* 사이드바
-------------------------------------------------- */

.rt-sidebar-member {
	padding: 14px 13px 12px;
	border: 1px solid var(--rt-color-line);
	border-radius: 8px;
	background: #fff;
}

.rt-sidebar-member__profile {
	position: relative;
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr) 16px;
	align-items: center;
	gap: 9px;
	border-radius: 6px;
	color: var(--rt-color-text);
}

.rt-sidebar-member__avatar {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #eceff0;
	color: #b2b8ba;
}

.rt-sidebar-member__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rt-sidebar-member__identity {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 2px;
}

.rt-sidebar-member__identity-head {
	display: flex;
	align-items: center;
	min-width: 0;
	gap: 5px;
}

.rt-sidebar-member__name-link {
	display: block;
	overflow: visible;
	min-width: 0;
	color: var(--rt-color-text);
	cursor: pointer;
	text-decoration: none;
}

.rt-sidebar-member__name-link::after {
	position: absolute;
	z-index: 1;
	inset: 0;
	border-radius: 6px;
	content: "";
}

.rt-sidebar-member__name-link:focus-visible {
	outline: 0;
}

.rt-sidebar-member__name-link:focus-visible::after {
	outline: 2px solid var(--rt-color-primary);
	outline-offset: 2px;
}

.rt-sidebar-member__identity strong {
	display: block;
	overflow: hidden;
	font-size: 15px;
	line-height: 1.35;
	letter-spacing: -0.6px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rt-sidebar-member__grade {
	display: block;
	overflow: hidden;
	color: var(--rt-color-text-light);
	font-size: 12px;
	line-height: 1.35;
	letter-spacing: -0.5px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rt-sidebar-member__name-link:hover,
.rt-sidebar-member__name-link:focus-visible {
	color: var(--rt-color-primary);
	text-decoration: none;
}

.rt-sidebar-member__admin-link {
	position: relative;
	z-index: 2;
	display: inline-flex;
	flex: none;
	color: var(--rt-color-primary);
	font-size: 11px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
}

.rt-sidebar-member__admin-link:hover,
.rt-sidebar-member__admin-link:focus-visible {
	color: var(--rt-color-primary-dark);
	text-decoration: underline;
}

.rt-sidebar-member__chevron-link {
	display: flex;
	align-self: stretch;
	align-items: center;
	justify-content: flex-end;
	color: var(--rt-color-text);
	pointer-events: none;
	text-decoration: none;
}

.rt-sidebar-member__chevron {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.rt-sidebar-member__stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	row-gap: 7px;
	margin-top: 12px;
	padding-top: 10px;
	border-top: 1px solid #ededed;
}

.rt-sidebar-member__stats a {
	display: flex;
	align-items: baseline;
	justify-content: center;
	min-width: 0;
	gap: 3px;
	color: var(--rt-color-text-light);
	font-size: 12px;
	letter-spacing: -0.6px;
	text-decoration: none;
}

.rt-sidebar-member__stats a:hover {
	color: var(--rt-color-primary);
}

.rt-sidebar-member__stats a:hover strong {
	color: inherit;
}

.rt-sidebar-member__stats strong {
	color: var(--rt-color-text);
	font-size: 13px;
}

.rt-sidebar-member__stats [data-rt-sidebar-message-count][data-loading="true"] {
	visibility: hidden;
}

.rt-sidebar-member__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	margin-top: 10px;
	padding-top: 9px;
	border-top: 1px solid #ededed;
}

.rt-sidebar-member--guest .rt-sidebar-member__actions {
	padding-top: 0;
	border-top: 0;
}

.rt-sidebar-member__actions a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	min-height: 16px;
	color: #777;
	font-size: 12px;
	letter-spacing: -0.6px;
	line-height: 1.5;
	text-decoration: none;
}

.rt-sidebar-member__actions a + a::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 9px;
	background: #ddd;
	content: "";
	transform: translateY(-50%);
}

.rt-sidebar-member__actions a:hover,
.rt-sidebar-member__actions a:focus-visible {
	color: var(--rt-color-primary);
}

.rt-sidebar-member__guest-login {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	border: 1px solid var(--rt-color-line-dark);
	border-radius: 6px;
	background: #fff;
	color: var(--rt-color-text);
	gap: 6px;
	text-decoration: none;
}

.rt-sidebar-member__guest-login:hover,
.rt-sidebar-member__guest-login:focus-visible {
	border-color: var(--rt-color-primary);
	background: #f7fafa;
	color: var(--rt-color-primary);
	text-decoration: none;
}

.rt-sidebar-member__guest-logo {
	display: block;
	width: auto;
	height: 12px;
	max-width: 72px;
}

.rt-sidebar-member__guest-login span {
	flex: none;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.rt-write {
	display: flex;
	height: 48px;
}

.rt-sidebar__write {
	--rt-sidebar-focus-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	min-width: 0;
	height: 100%;
	padding: 0;
	border: 0;
	background: var(--rt-color-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
}

.rt-sidebar__write:hover {
	background: var(--rt-color-primary-dark);
	text-decoration: none;
}

.rt-write__select {
	--rt-sidebar-focus-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 34px;
	flex-basis: 44px;
	width: 44px;
	height: 100%;
	padding: 0;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	background: var(--rt-color-primary);
	color: #fff;
	font-size: 9px;
}

.rt-write__select:hover {
	background: var(--rt-color-primary-dark);
}

/* 글쓰기 선택창
-------------------------------------------------- */

html.rt-modal-open {
	overflow: hidden;
}

.rt-write-modal {
	width: min(420px, calc(100% - 32px));
	max-height: calc(100dvh - 40px);
	margin: auto;
	padding: 0;
	overflow: hidden;
	border: 0;
	background: transparent;
	color: var(--rt-color-text);
}

.rt-write-modal::backdrop {
	background: rgba(0, 0, 0, 0.5);
}

.rt-write-modal__inner {
	overflow: hidden;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.rt-write-modal__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	padding: 22px 22px 18px;
	border-bottom: 1px solid var(--rt-color-line);
	gap: 20px;
}

.rt-write-modal__title {
	color: #333;
	font-size: 18px;
	line-height: 1.3;
}

.rt-write-modal__desc {
	margin-top: 5px;
	color: var(--rt-color-text-light);
	font-size: 12px;
}

.rt-write-modal__close {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #777;
	font-family: Arial, sans-serif;
	font-size: 24px;
	line-height: 1;
}

.rt-write-modal__close:hover {
	color: #222;
}

.rt-write-modal__list {
	max-height: min(420px, calc(100dvh - 170px));
	padding: 10px;
	overflow-y: auto;
}

.rt-write-modal__item + .rt-write-modal__item {
	border-top: 1px solid #eee;
}

.rt-write-modal__empty {
	padding: 28px 16px;
	color: var(--rt-color-text-light);
	font-size: 12px;
	text-align: center;
}

.rt-write-modal__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 48px;
	padding: 10px 12px;
	color: #444;
	font-size: 13px;
	font-weight: 600;
	gap: 20px;
}

.rt-write-modal__link:hover {
	background: var(--rt-color-background-light);
	color: var(--rt-color-primary);
	text-decoration: none;
}

.rt-write-modal__link[aria-current="page"] {
	color: var(--rt-color-primary);
}

.rt-write-modal__link[aria-current="page"]::after {
	margin-left: auto;
	padding: 2px 6px;
	border: 1px solid var(--rt-color-primary);
	border-radius: 10px;
	content: "현재";
	font-size: 9px;
	font-weight: 400;
}

.rt-write-modal__link[aria-current="page"] .rt-write-modal__arrow {
	display: none;
}

.rt-write-modal__arrow {
	color: #aaa;
	font-size: 14px;
}

.rt-mobile-favorites,
.rt-mobile-favorites-backdrop {
	display: none;
}

/* 메뉴 즐겨찾기
-------------------------------------------------- */

.rt-favorite-modal__body {
	max-height: min(560px, calc(100dvh - 150px));
	padding: 8px 20px 20px;
	overflow-y: auto;
}

.rt-favorite-modal__section {
	padding-top: 16px;
}

.rt-favorite-modal__section + .rt-favorite-modal__section {
	margin-top: 18px;
	border-top: 1px solid var(--rt-color-line);
}

.rt-favorite-modal__section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
	color: #555;
	font-size: 11px;
}

.rt-favorite-modal__section-head h3 {
	color: #333;
	font-size: 13px;
}

.rt-favorite-modal__selected,
.rt-favorite-modal__candidates {
	margin: 0;
	padding: 0;
	border: 1px solid var(--rt-color-line);
	border-radius: 4px;
	list-style: none;
}

.rt-favorite-modal [hidden] {
	display: none !important;
}

.rt-favorite-modal__selected-item,
.rt-favorite-modal__candidates > li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 44px;
	padding: 7px 9px;
	gap: 8px;
}

.rt-favorite-modal__selected-item {
	cursor: grab;
	touch-action: none;
	user-select: none;
}

.rt-favorite-modal__selected-item:focus-visible {
	position: relative;
	z-index: 1;
	outline: 2px solid #74bbbe;
	outline-offset: -2px;
}

.rt-favorite-modal__drag-indicator {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 20px;
	height: 30px;
	color: #aaa;
	pointer-events: none;
}

.rt-favorite-modal__drag-indicator svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.rt-favorite-modal__selected-item:hover .rt-favorite-modal__drag-indicator,
.rt-favorite-modal__selected-item:focus-visible .rt-favorite-modal__drag-indicator {
	color: #666;
}

.rt-favorite-modal__selected-item + .rt-favorite-modal__selected-item,
.rt-favorite-modal__candidates > li + li {
	border-top: 1px solid #eee;
}

.rt-favorite-modal__candidates > li.is-first-visible {
	border-top: 0;
}

.rt-favorite-modal__item-title {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	color: #333;
	font-size: 13px;
	font-weight: 600;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rt-favorite-modal__add,
.rt-favorite-modal__remove {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	width: 32px;
	height: 30px;
	padding: 0;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
}

.rt-favorite-modal__add {
	border: 1px solid #d7d7d7;
	color: #555;
}

.rt-favorite-modal__add:hover,
.rt-favorite-modal__add:focus-visible {
	border-color: #999;
	background: #f8f8f8;
	color: #222;
}

.rt-favorite-modal__add:disabled {
	border-color: #e5e5e5;
	background: #f5f5f5;
	color: #aaa;
	cursor: default;
}

.rt-favorite-modal__add svg,
.rt-favorite-modal__remove svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.rt-favorite-modal__remove {
	border: 1px solid #e3c9c5;
	color: #c0392b;
}

.rt-favorite-modal__remove:hover,
.rt-favorite-modal__remove:focus-visible {
	border-color: #c0392b;
	background: #fff8f7;
}

.rt-favorite-modal__remove:disabled {
	border-color: #e5e5e5;
	background: #f5f5f5;
	color: #bbb;
	cursor: default;
}

.rt-favorite-modal__full {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: none;
	min-width: 42px;
	height: 30px;
	color: var(--rt-color-text-light);
	font-size: 11px;
	white-space: nowrap;
}

.rt-favorite-modal__selected-item.is-dragging {
	background: #f0f7f7;
	box-shadow: inset 0 0 0 1px #bcd8d9;
	cursor: grabbing;
	opacity: 0.18;
}

.rt-favorite-modal__selected.is-dragging {
	cursor: grabbing;
}

.rt-favorite-modal__drag-preview {
	position: fixed;
	z-index: 10001;
	margin: 0;
	border: 1px solid #bcd8d9 !important;
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
	cursor: grabbing;
	opacity: 0.96;
	pointer-events: none;
	touch-action: none;
}

.rt-favorite-modal__empty {
	padding: 24px 12px;
	color: var(--rt-color-text-light);
	font-size: 11px;
	text-align: center;
}

.rt-favorite-toast {
	position: fixed;
	z-index: 10000;
	right: 24px;
	bottom: 24px;
	max-width: min(360px, calc(100% - 48px));
	padding: 11px 14px;
	border-radius: 4px;
	background: rgba(34, 34, 34, 0.94);
	color: #fff;
	font-size: 12px;
	line-height: 1.5;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

/* 사이드 메뉴
-------------------------------------------------- */

.rt-menu__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.rt-menu__list--depth1 {
	border-bottom: 1px solid var(--rt-color-line);
}

.rt-menu__item {
	min-width: 0;
}

.rt-menu__link {
	display: flex;
	align-items: center;
	width: 100%;
	min-width: 0;
	text-decoration: none;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.rt-menu__label {
	min-width: 0;
}

.rt-menu__new-icon {
	flex: none;
	width: 16px;
	height: 16px;
	margin-left: 4px;
}

.rt-menu__count {
	flex: none;
	margin-left: auto;
	padding-left: 10px;
	color: var(--rt-color-text-light);
	font-size: 13px;
	font-weight: 400;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0;
	white-space: nowrap;
}

.rt-menu__item--depth2:has(> a[href="/humor"]) {
	margin-top: 7px;
	padding-top: 7px;
	border-top: 1px solid var(--rt-color-line);
}
.rt-menu__link[href="#"] {
	pointer-events: none;
	cursor: default;
}

.rt-menu__link:hover {
	text-decoration: none;
}

.rt-menu__link--depth1 {
	min-height: 40px;
	padding: 0 12px;
	border-top: 2px solid #74bbbe;
	color: var(--rt-color-text);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.rt-menu__link--depth1:hover {
	color: var(--rt-color-primary);
}

.rt-menu__item--depth1.is-current > .rt-menu__link--depth1 {
	color: var(--rt-color-primary);
}

.rt-menu__list--depth2 {
	padding: 8px 0;
	border-top: 1px solid #ededed;
	background: #fff;
}

.rt-menu__link--depth2 {
	position: relative;
	min-height: 30px;
	padding: 4px 12px 4px 25px;
	color: var(--rt-color-text);
	font-size: 13px;
	line-height: 1.4;
}

.rt-menu__link--depth2::before {
	position: absolute;
	top: 50%;
	left: 14px;
	width: 3px;
	height: 3px;
	background: #c4c4c4;
	content: "";
	transform: translateY(-50%);
}

.rt-menu__link--depth2:hover {
	color: var(--rt-color-primary);
}

.rt-menu__link--depth2:hover::before {
	background: var(--rt-color-primary);
}

.rt-menu__item--depth2.is-current > .rt-menu__link--depth2 {
	color: var(--rt-color-primary);
	font-weight: 700;
}

.rt-menu__item--depth2.is-current > .rt-menu__link--depth2::before {
	background: var(--rt-color-primary);
}

/* 최근 게시물 공통
-------------------------------------------------- */

.rt-home-latest__head,
.rt-section-head,
.rt-board-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 0;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--rt-color-line);
}

.rt-home-latest__title,
.rt-section-head__title,
.rt-board-card__title {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.rt-home-latest__more,
.rt-section-head__more,
.rt-board-card__more {
	color: #888;
	font-family: Arial, sans-serif;
	font-size: 14px;
	line-height: 1;
}

.rt-home-latest__item,
.rt-post-list__item {
	min-height: 34px;
	font-size: 12px;
}

.rt-home-latest__post-title,
.rt-post-list__title {
	font-size: 13px;
}

.rt-home-latest__date,
.rt-post-list__date {
	color: var(--rt-color-text-light);
	font-size: 13px;
	text-align: right;
	white-space: nowrap;
}

.rt-latest-item {
	display: grid;
	align-items: center;
	min-height: 34px;
	font-size: 12px;
}

.rt-latest-item--full {
	grid-template-columns: minmax(0, 1fr) 120px 70px;
	gap: 12px;
}

.rt-latest-item--compact {
	grid-template-columns: minmax(0, 1fr) 70px;
	gap: 10px;
}

.rt-latest-item__subject {
	position: relative;
	display: flex;
	align-items: center;
	min-width: 0;
	padding-left: 10px;
}

.rt-latest-item__subject::before {
	position: absolute;
	top: 50%;
	left: 1px;
	width: 3px;
	height: 3px;
	background: #d4d4d4;
	content: "";
	transform: translateY(-50%);
}

.rt-latest-item__board,
.rt-latest-item__comment {
	flex: none;
	white-space: nowrap;
}

.rt-latest-item__board {
	margin-right: 10px;
	font-size: 12px;
	font-weight: 700;
}

.rt-latest-item__title {
	display: block;
	flex: 0 1 auto;
	min-width: 0;
	overflow: hidden;
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rt-latest-item__title strong {
	font-weight: 700;
}

.rt-latest-item__comment {
	margin-left: 3px;
	color: var(--rt-color-comment);
	font-size: 13px;
	font-weight: 700;
}

.rt-latest-item__author {
	overflow: hidden;
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rt-latest-item__date {
	color: var(--rt-color-text-light);
	font-size: 13px;
	text-align: right;
	white-space: nowrap;
}

.rt-latest-list--full {
	padding-top: 10px;
}

.rt-latest-list--compact {
	padding-top: 9px;
}

.rt-latest-list__empty {
	border-bottom: 1px solid var(--rt-color-line);
	color: var(--rt-color-text-light);
	font-size: 12px;
	text-align: center;
}

.rt-latest-list__empty--full {
	padding: 30px 0;
}

.rt-latest-list__empty--compact {
	padding: 22px 0;
}

/* 전체 글보기
-------------------------------------------------- */

.rt-all-posts {
	margin-bottom: 43px;
}

.rt-post-list {
	padding-top: 10px;
}

.rt-post-list__item {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 82px 70px;
	align-items: center;
	gap: 12px;
}

.rt-post-list__subject {
	position: relative;
	min-width: 0;
	padding-left: 11px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rt-post-list__subject::before {
	position: absolute;
	top: 50%;
	left: 1px;
	width: 3px;
	height: 3px;
	background: #d4d4d4;
	content: "";
	transform: translateY(-50%);
}

.rt-post-list__subject strong {
	font-weight: 700;
}

.rt-post-list__author {
	overflow: hidden;
	font-size: 13px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rt-comment {
	color: var(--rt-color-comment);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.rt-post-list__board {
	margin-right: 5px;
	font-weight: 700;
}

.rt-post-list__title {
	min-width: 0;
}

.rt-post-list__icon {
	display: inline-flex;
	align-items: center;
	margin-left: 3px;
	vertical-align: middle;
}

.rt-post-list__icon img {
	display: block;
	max-height: 11px;
}

.rt-post-list__empty {
	padding: 30px 0;
	border-bottom: 1px solid var(--rt-color-line);
	color: var(--rt-color-text-light);
	font-size: 12px;
	text-align: center;
}

/* 게시판 그리드
-------------------------------------------------- */

.rt-board-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 30px;
	row-gap: 42px;
}

.rt-board-card {
	min-width: 0;
}

/* 푸터
-------------------------------------------------- */

.rt-footer {
	padding-bottom: 34px;
	text-align: center;
}

.rt-footer__links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0;
	min-height: 43px;
	border-top: 2px solid #74bbbe;
	border-bottom: 1px solid var(--rt-color-line);
	color: var(--rt-color-text-light);
	font-size: 11px;
}

.rt-footer__links a {
	position: relative;
	padding: 0 12px;
}

.rt-footer__links a + a::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 1px;
	height: 9px;
	background: #d2d2d2;
	content: "";
	transform: translateY(-50%);
}

.rt-footer__links .rt-footer__privacy {
	color: #f33;
}

.rt-footer__copyright {
	margin-top: 17px;
	color: #555;
	font-size: 10px;
}

/* 빠른 이동
-------------------------------------------------- */

.rt-quick-nav {
	display: none;
	position: fixed;
	z-index: 1000;
	right: 14px;
	bottom: 16px;
	bottom: calc(16px + env(safe-area-inset-bottom));
}

.rt-quick-nav--active {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.rt-quick-nav__item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 46px;
	height: 46px;
	margin: 0;
	padding: 0;
	border: 1px solid #ebebee;
	border-radius: 9999px;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: rgba(0, 0, 30, 0.08) 0 1px 7px;
	cursor: pointer;
	transition: all 0.35s ease;
}

.rt-quick-nav--top > .rt-quick-nav__item--top {
	opacity: 0;
	visibility: hidden;
	margin-bottom: -51px;
}

.rt-quick-nav--top > .rt-quick-nav__item--bottom,
.rt-quick-nav--middle > .rt-quick-nav__item--top,
.rt-quick-nav--middle > .rt-quick-nav__item--bottom {
	opacity: 1;
	visibility: visible;
}

.rt-quick-nav--bottom > .rt-quick-nav__item--top {
	opacity: 1;
	visibility: visible;
	margin-bottom: -51px;
}

.rt-quick-nav--bottom > .rt-quick-nav__item--bottom {
	opacity: 0;
	visibility: hidden;
}

.rt-quick-nav__item--top::after {
	width: 10px;
	height: 10px;
	margin-bottom: -5px;
	border-bottom: 1px solid #5d5d5f;
	border-left: 1px solid #5d5d5f;
	content: "";
	transform: rotate(135deg);
}

.rt-quick-nav__item--bottom::after {
	width: 10px;
	height: 10px;
	margin-top: -5px;
	border-bottom: 1px solid #5d5d5f;
	border-left: 1px solid #5d5d5f;
	content: "";
	transform: rotate(-45deg);
}

.rt-quick-nav__item:hover,
.rt-quick-nav__item:focus-visible {
	border-color: var(--rt-color-primary);
	background: #fff;
}

.rt-quick-nav__item:focus-visible {
	outline: 2px solid var(--rt-color-primary);
	outline-offset: 2px;
}

@media (min-width: 768px) {
	.rt-quick-nav {
		right: 32px;
		bottom: 42px;
		bottom: calc(42px + env(safe-area-inset-bottom));
	}

	.rt-quick-nav--active {
		gap: 6px;
	}

	.rt-quick-nav__item {
		width: 50px;
		height: 50px;
	}

	.rt-quick-nav--top > .rt-quick-nav__item--top,
	.rt-quick-nav--bottom > .rt-quick-nav__item--top {
		margin-bottom: -56px;
	}
}

/* 태블릿
-------------------------------------------------- */

@media (max-width: 1024.99px) {
	.rt-container {
		width: calc(100% - 30px);
	}

	.rt-board-grid {
		column-gap: 22px;
	}
}

/* 모바일
-------------------------------------------------- */

@media (max-width: 767.99px) {
	body {
		font-size: 14px;
	}

	.rt-home-latest .rt-home-latest__title {
		font-size: 18px;
	}

	.rt-home-latest .rt-home-latest__post-title {
		font-size: 16px;
	}

	.rt-home-latest .rt-latest-item__title {
		font-size: 16px;
	}

	.rt-home-latest .rt-home-latest__item {
		min-height: 40px;
	}

	.rt-home-latest .rt-latest-item {
		min-height: 40px;
	}

	.rt-home-latest .rt-post-list__board {
		font-size: 13px;
	}

	.rt-home-latest .rt-latest-item__board {
		font-size: 12px;
	}

	.rt-site {
		padding-top: var(--rt-topbar-height);
	}

	/* 스크롤 잠금 중에도 모바일 상단 바가 뷰포트에 유지되도록 고정합니다. */
	.rt-topbar {
		position: fixed;
		right: 0;
		left: 0;
		width: 100%;
	}

	.rt-container {
		width: 100%;
		padding-right: var(--rt-mobile-content-gutter);
		padding-left: var(--rt-mobile-content-gutter);
	}

	.rt-container--main {
		padding-right: 0;
		padding-left: 0;
	}

	.rt-content > * {
		padding-right: var(--rt-mobile-content-gutter);
		padding-left: var(--rt-mobile-content-gutter);
	}

	.rt-content > .rt-board,
	.rt-content > .rt-communication-shell--flush {
		padding-right: 0;
		padding-left: 0;
	}

	.rt-content > .xe-widget-wrapper {
		float: none !important;
		width: 100% !important;
	}

	.rt-topbar__inner {
		display: flex;
		align-items: center;
		height: var(--rt-topbar-height);
		gap: 4px;
	}

	.rt-topbar__start {
		flex: 1 1 auto;
		min-width: 0;
		gap: 4px;
	}

	.rt-topbar__mobile-actions {
		display: flex;
		align-items: center;
		flex: none;
		gap: 0;
	}

	.rt-topbar__mobile-button {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 34px;
		height: 34px;
		padding: 0;
		border: 0;
		border-radius: 4px;
		background: transparent;
		color: inherit;
	}

	.rt-topbar__mobile-button:hover,
	.rt-topbar__mobile-button[aria-expanded="true"] {
		background: rgba(255, 255, 255, 0.15);
	}

	.rt-topbar__mobile-button svg {
		width: 21px;
		height: 21px;
		fill: none;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-width: 1.9;
	}

	.rt-topbar__mobile-brand {
		margin-left: 4px;
		display: inline-flex;
		align-items: center;
		justify-content: flex-start;
		flex: 0 1 auto;
		min-width: 0;
		height: 34px;
		padding: 0;
		overflow: hidden;
		border-radius: 4px;
		color: inherit;
	}

	.rt-topbar__mobile-brand-image {
		display: block;
		width: auto;
		height: 16px;
		max-width: 100%;
		filter: brightness(0) invert(1);
	}

	.rt-topbar__mobile-brand:hover {
		background: rgba(255, 255, 255, 0.15);
		color: inherit;
		text-decoration: none;
	}

	.rt-topbar__home,
	.rt-topbar__home-message {
		display: none;
	}

	.rt-login {
		flex: none;
		min-width: 0;
		margin-left: auto;
	}

	.rt-topbar-search {
		display: none;
	}

	.rt-topbar__mobile-search {
		flex: none;
	}

	.rt-member {
		min-width: 0;
		gap: 0;
	}

	.rt-member__identity,
	.rt-member > a {
		display: none;
	}

	.rt-member__tools {
		margin-left: 0;
	}

	.rt-member > .rt-member__tools::before {
		display: none;
	}

	.rt-member-panel {
		position: fixed;
		top: var(--rt-topbar-height);
		right: 12px;
		left: 12px;
		width: auto;
	}

	.rt-member-panel__list {
		max-height: calc(100vh - 190px);
	}

	.rt-header {
		display: none;
	}

	.rt-location {
		align-items: stretch;
		padding: 0;
	}

	.rt-location__left {
		display: none;
	}

	.rt-location__right {
		flex: 1 1 auto;
		width: 100%;
		min-width: 0;
	}

	.rt-popular {
		flex: 1 1 auto;
		min-width: 0;
	}

	.rt-popular__bar,
	.rt-popular__current-link {
		height: 50px;
	}

	.rt-popular__current-link {
		padding: 0 0 0 14px;
		gap: 7px;
	}

	.rt-popular__label {
		padding: 0 10px;
		background: rgba(54, 54, 54, 0.62);
	}

	.rt-popular__current {
		flex: 1;
		font-size: 16px;
		font-weight: 400;
		letter-spacing: -0.5px;
	}

	.rt-location__setting-desktop,
	.rt-location__favorites {
		display: none;
	}

	.rt-location__setting,
	.rt-location__setting-mobile {
		display: none;
	}

	html.rt-popular-panel-open,
	html.rt-popular-panel-open body {
		overflow: hidden;
	}

	.rt-popular-backdrop {
		position: fixed;
		z-index: 1220;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100%;
		padding: 0;
		border: 0;
		background: rgba(0, 0, 0, 0.32);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.2s ease, visibility 0.2s ease;
	}

	.rt-popular-backdrop.is-open {
		opacity: 1;
		visibility: visible;
	}

	.rt-popular-panel {
		position: fixed;
		z-index: 1230;
		top: auto;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		width: 100%;
		max-height: min(78dvh, 620px);
		padding: 10px 16px calc(14px + env(safe-area-inset-bottom));
		overflow: hidden;
		border: 0;
		border-radius: 18px 18px 0 0;
		box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.16);
		flex-direction: column;
		opacity: 1;
		transform: translateY(100%);
		visibility: hidden;
		transition: transform 0.24s cubic-bezier(0.2, 0.75, 0.25, 1), visibility 0.24s ease;
	}

	.rt-popular-panel::before {
		width: 36px;
		height: 4px;
		margin: 0 auto 10px;
		border-radius: 999px;
		background: #d9dcde;
		content: "";
		flex: none;
	}

	.rt-popular-panel.is-open {
		transform: translateY(0);
	}

	.rt-popular-panel__head {
		padding: 2px 2px 12px;
	}

	.rt-popular-panel__head h2 {
		font-size: 18px;
	}

	.rt-popular-panel__head p {
		font-size: 12px;
	}

	.rt-popular-panel__close,
	.rt-popular-panel__close:hover,
	.rt-popular-panel__close:focus-visible {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: none;
		width: 34px;
		height: 34px;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		box-shadow: none;
		color: #55585b;
	}

	.rt-popular-panel__list {
		min-height: 0;
		overflow-y: auto;
	}

	.rt-popular-panel__list a {
		grid-template-columns: 72px minmax(0, 1fr) 18px;
		min-height: 50px;
		padding: 7px 2px;
	}

	.rt-popular-panel__board {
		font-size: 14px;
		font-weight: 400;
		letter-spacing: normal;
	}

	.rt-popular-panel__list strong {
		font-size: 16px;
		font-weight: 400;
		letter-spacing: -0.5px;
	}

	.rt-popular-panel__comment-count {
		font-size: 16px;
		letter-spacing: normal;
	}

	html.rt-mobile-favorites-open,
	html.rt-mobile-favorites-open body {
		overflow: hidden;
	}

	.rt-mobile-favorites-backdrop {
		position: fixed;
		z-index: 1220;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		width: 100%;
		height: 100%;
		padding: 0;
		border: 0;
		background: rgba(0, 0, 0, 0.32);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.2s ease, visibility 0.2s ease;
	}

	.rt-mobile-favorites-backdrop.is-open {
		opacity: 1;
		visibility: visible;
	}

	.rt-mobile-favorites {
		position: fixed;
		z-index: 1230;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		max-height: min(70dvh, 520px);
		padding: 10px 16px calc(14px + env(safe-area-inset-bottom));
		overflow: hidden;
		border-radius: 18px 18px 0 0;
		background: #fff;
		box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.16);
		flex-direction: column;
		transform: translateY(100%);
		visibility: hidden;
		transition: transform 0.24s cubic-bezier(0.2, 0.75, 0.25, 1), visibility 0.24s ease;
	}

	.rt-mobile-favorites::before {
		width: 36px;
		height: 4px;
		margin: 0 auto 10px;
		border-radius: 999px;
		background: #d9dcde;
		content: "";
		flex: none;
	}

	.rt-mobile-favorites.is-open {
		transform: translateY(0);
		visibility: visible;
	}

	.rt-mobile-favorites__head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 2px 2px 12px;
		gap: 16px;
	}

	.rt-mobile-favorites__head h2,
	.rt-mobile-favorites__head p {
		margin: 0;
	}

	.rt-mobile-favorites__head h2 {
		color: #1d1d1f;
		font-size: 18px;
		line-height: 1.35;
	}

	.rt-mobile-favorites__head p {
		margin-top: 3px;
		color: #8d8d8f;
		font-size: 12px;
		line-height: 1.4;
	}

	.rt-mobile-favorites__close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: none;
		width: 34px;
		height: 34px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: #f3f4f5;
		color: #55585b;
	}

	.rt-mobile-favorites__close svg,
	.rt-mobile-favorites__link svg,
	.rt-mobile-favorites__manage svg {
		width: 18px;
		height: 18px;
		fill: none;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-width: 1.8;
	}

	.rt-mobile-favorites__links {
		min-height: 0;
		overflow-y: auto;
		border-top: 1px solid #eceeef;
	}

	.rt-mobile-favorites__link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 48px;
		padding: 0 4px;
		border-bottom: 1px solid #eceeef;
		color: #26282a;
		font-size: 14px;
		font-weight: 600;
		gap: 12px;
		text-decoration: none;
	}

	.rt-mobile-favorites__link span {
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.rt-mobile-favorites__link svg {
		flex: none;
		color: #a1a4a7;
	}

	.rt-mobile-favorites__link:hover,
	.rt-mobile-favorites__link:focus-visible {
		background: #f7f8f8;
		color: #1d1d1f;
		text-decoration: none;
	}

	.rt-mobile-favorites__empty {
		margin: 0;
		padding: 34px 12px;
		border-top: 1px solid #eceeef;
		color: #8d8d8f;
		font-size: 13px;
		text-align: center;
	}

	.rt-mobile-favorites__manage {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex: none;
		min-height: 46px;
		margin-top: 10px;
		padding: 0 12px;
		border: 0;
		border-radius: 9px;
		background: #f1f6f5;
		color: #2f6f6b;
		font-size: 13px;
		font-weight: 700;
		text-align: left;
	}

	.rt-mobile-favorites__manage:hover,
	.rt-mobile-favorites__manage:focus-visible {
		background: #e5efed;
	}

	.rt-favorite-modal__body {
		padding-right: 12px;
		padding-left: 12px;
	}

	.rt-layout {
		display: block;
		padding-bottom: 50px;
	}
	}

	html.rt-mobile-drawer-open,
	html.rt-mobile-drawer-open body {
		overflow: hidden;
	}

	.rt-search-panel__backdrop {
		position: fixed;
		z-index: 1240;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		margin: 0;
		padding: 0;
		border: 0;
		background: rgba(0, 0, 0, 0.46);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.18s ease, visibility 0s linear 0.18s;
		visibility: hidden;
	}

	.rt-search-panel__backdrop.is-open {
		opacity: 1;
		pointer-events: auto;
		transition-delay: 0s;
		visibility: visible;
	}

	.rt-search-panel {
		position: fixed;
		z-index: 1250;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: flex;
		flex-direction: column;
		box-sizing: border-box;
		width: 100%;
		height: 100dvh;
		overflow: hidden;
		background: #fff;
		color: var(--rt-color-text);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
		visibility: hidden;
	}

	.rt-search-panel [hidden] {
		display: none !important;
	}

	.rt-search-panel.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
		transition-delay: 0s;
		visibility: visible;
	}

	.rt-search-panel__head {
		display: grid;
		grid-template-columns: 54px minmax(0, 1fr);
		align-items: center;
		flex: none;
		min-height: calc(56px + env(safe-area-inset-top));
		padding: env(safe-area-inset-top) 8px 0 4px;
		border-bottom: 1px solid #ededed;
		background: #fff;
		gap: 0;
	}

	.rt-search-panel__close,
	.rt-search-panel__submit,
	.rt-search-panel__clear-input {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		border: 0;
		background: transparent;
		color: inherit;
	}

	.rt-search-panel__close {
		width: 54px;
		height: 55px;
		border-radius: 0;
	}

	.rt-search-panel__close:hover,
	.rt-search-panel__close:focus-visible,
	.rt-search-panel__submit:hover,
	.rt-search-panel__submit:focus-visible {
		background: var(--rt-color-background-light);
	}

	.rt-search-panel__close-icon {
		width: 28px;
		height: 28px;
		fill: none;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-width: 2;
	}

	.rt-search-panel__close-icon--desktop {
		display: none;
	}

	.rt-search-panel__form {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 44px;
		align-items: center;
		min-width: 0;
		gap: 0;
	}

	.rt-search-panel__field {
		position: relative;
		display: block;
		min-width: 0;
	}

	.rt-search-panel__input {
		box-sizing: border-box;
		width: 100%;
		height: 55px;
		padding: 0 38px 0 0;
		border: 0;
		border-radius: 0;
		outline: 0;
		background: transparent;
		color: var(--rt-color-text);
		font: inherit;
		font-size: 16px;
	}

	.rt-search-panel__input:focus {
		background: transparent;
		box-shadow: none;
	}

	.rt-search-panel__input::placeholder {
		color: #b7b9bd;
		opacity: 1;
	}

	.rt-search-panel__input::-webkit-search-cancel-button {
		display: none;
	}

	.rt-search-panel__clear-input {
		position: absolute;
		top: 50%;
		right: 4px;
		width: 30px;
		height: 30px;
		border-radius: 50%;
		background: #f2f2f6;
		color: #0d0d0f;
		transform: translateY(-50%);
	}

	.rt-search-panel__clear-input svg {
		width: 18px;
		height: 18px;
		fill: none;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-width: 1.5;
	}

	.rt-search-panel__submit {
		width: 44px;
		height: 55px;
		border-radius: 0;
	}

	.rt-search-panel__submit svg {
		width: 27px;
		height: 27px;
		fill: none;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-linejoin: round;
		stroke-width: 2;
	}

	.rt-search-panel__body {
		flex: 1 1 auto;
		min-height: 0;
		padding: 22px 18px calc(28px + env(safe-area-inset-bottom));
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior: contain;
	}

	.rt-search-panel__section + .rt-search-panel__section {
		margin-top: 30px;
	}

	.rt-search-panel__section-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		min-height: 28px;
		margin-bottom: 12px;
		gap: 12px;
	}

	.rt-search-panel__section-head h3 {
		margin: 0;
		font-size: 18px;
		font-weight: 700;
	}

	.rt-search-panel__section-head button {
		padding: 4px 0;
		border: 0;
		background: transparent;
		color: var(--rt-color-text-light);
		font-size: 14px;
	}

	.rt-search-panel__section-head button:hover,
	.rt-search-panel__section-head button:focus-visible {
		color: var(--rt-color-primary);
		text-decoration: underline;
	}

	.rt-search-panel__keywords,
	.rt-search-panel__documents {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.rt-search-panel__keywords {
		display: flex;
		flex-wrap: wrap;
		gap: 8px;
	}

	.rt-search-panel__keyword {
		display: inline-flex;
		align-items: center;
		max-width: 100%;
		min-height: 40px;
		border: 1px solid #e4e5e7;
		border-radius: 20px;
		background: #fff;
		overflow: hidden;
	}

	.rt-search-panel__keyword-select,
	.rt-search-panel__item-remove,
	.rt-search-panel__document-remove {
		padding: 0;
		border: 0;
		background: transparent;
		color: inherit;
	}

	.rt-search-panel__keyword-select {
		min-width: 0;
		max-width: min(230px, 68vw);
		padding: 0 4px 0 13px;
		overflow: hidden;
		font-size: 16px;
		line-height: 38px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.rt-search-panel__keyword-select:hover,
	.rt-search-panel__keyword-select:focus-visible {
		color: var(--rt-color-primary);
	}

	.rt-search-panel__item-remove {
		width: 34px;
		height: 38px;
		color: #aaa;
		font-size: 20px;
	}

	.rt-search-panel__item-remove:hover,
	.rt-search-panel__item-remove:focus-visible,
	.rt-search-panel__document-remove:hover,
	.rt-search-panel__document-remove:focus-visible {
		color: var(--rt-color-primary);
	}

	.rt-search-panel__documents {
		border-top: 1px solid #ededed;
	}

	.rt-search-panel__document {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 40px;
		align-items: center;
		min-height: 70px;
		border-bottom: 1px solid #ededed;
	}

	.rt-search-panel__document-link {
		display: flex;
		flex-direction: column;
		min-width: 0;
		padding: 12px 8px 12px 0;
		gap: 5px;
		text-decoration: none;
	}

	.rt-search-panel__document-link:hover {
		text-decoration: none;
	}

	.rt-search-panel__document-title {
		overflow: hidden;
		color: var(--rt-color-text);
		font-size: 16px;
		line-height: 1.35;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.rt-search-panel__document-link:hover .rt-search-panel__document-title,
	.rt-search-panel__document-link:focus-visible .rt-search-panel__document-title {
		color: var(--rt-color-primary);
	}

	.rt-search-panel__document-meta {
		overflow: hidden;
		color: var(--rt-color-text-light);
		font-size: 13px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.rt-search-panel__document-remove {
		width: 40px;
		height: 40px;
		color: #aaa;
		font-size: 22px;
	}

	.rt-search-panel__empty {
		margin: 0;
		padding: 24px 0;
		border-top: 1px solid #ededed;
		border-bottom: 1px solid #ededed;
		color: var(--rt-color-text-light);
		font-size: 13px;
		text-align: center;
	}

	@media (min-width: 768px) {
		.rt-search-panel__backdrop {
			display: none;
		}

		.rt-search-panel {
			top: calc(var(--rt-topbar-height) + 8px);
			right: max(20px, calc((100vw - var(--rt-content-width)) / 2));
			bottom: auto;
			left: auto;
			width: min(360px, calc(100% - 40px));
			height: auto;
			max-height: min(600px, calc(100dvh - 78px));
			border: 1px solid rgba(0, 0, 0, 0.08);
			border-radius: 12px;
		box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
			transform: translateY(-12px);
		}

		.rt-search-panel.is-open {
			transform: translateY(0);
		}

		.rt-search-panel__head {
			display: none;
		}

		.rt-search-panel__body {
			padding: 22px 24px 26px;
		}

		.rt-search-panel__section-head h3 {
			font-size: 17px;
		}

		.rt-search-panel__section-head button {
			font-size: 13px;
		}

		.rt-search-panel__keyword-select,
		.rt-search-panel__document-title {
			font-size: 13px;
		}

		.rt-search-panel__document-meta {
			font-size: 12px;
		}

		.rt-search-panel__keyword-select {
			max-width: 320px;
		}
	}

	@media (max-width: 767.99px) {
	html.rt-search-panel-open,
	html.rt-search-panel-open body {
		overflow: hidden;
	}

	.rt-search-panel__backdrop {
		display: none;
	}

	html.rt-mobile-drawer-ready .rt-sidebar {
		position: fixed;
		z-index: 1110;
		top: 0;
		bottom: 0;
		left: 0;
		box-sizing: border-box;
		width: min(86vw, 320px);
		height: 100dvh;
		margin: 0;
		padding: calc(12px + env(safe-area-inset-top)) 12px calc(12px + env(safe-area-inset-bottom));
		overflow: hidden;
		background: #fff;
		box-shadow: 10px 0 28px rgba(0, 0, 0, 0.2);
		overscroll-behavior: contain;
		transform: translateX(-105%);
		transition: transform 0.22s ease, visibility 0s linear 0.22s;
		visibility: hidden;
	}

	html.rt-mobile-drawer-ready .rt-sidebar.is-open {
		transform: translateX(0);
		transition-delay: 0s;
		visibility: visible;
	}

	.rt-sidebar__mobile-head {
		display: flex;
		align-items: center;
		justify-content: space-between;
		order: 0;
		min-height: 42px;
		font-size: 16px;
		padding: 0 2px 8px;
		border-bottom: 1px solid var(--rt-color-line);
		flex: none;
	}

	.rt-sidebar__mobile-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		padding: 0;
		border: 0;
		border-radius: 4px;
		background: transparent;
		color: #555;
	}

	.rt-sidebar__mobile-close:hover {
		background: var(--rt-color-background-light);
	}

	.rt-sidebar__mobile-close svg {
		width: 24px;
		height: 24px;
		fill: none;
		stroke: currentColor;
		stroke-linecap: round;
		stroke-width: 1.8;
	}

	.rt-sidebar__mobile-body {
		flex: 1 1 auto;
		min-height: 0;
		padding: 0 4px 16px 0;
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		overscroll-behavior-y: contain;
		touch-action: pan-y;
	}

	.rt-sidebar__mobile-body > .rt-sidebar-member {
		order: 0;
		flex: none;
		padding: 8px 8px 0;
		border: 0;
		border-radius: 0;
	}

	.rt-sidebar-member__profile {
		grid-template-columns: 50px minmax(0, 1fr) 18px;
		gap: 12px;
	}

	.rt-sidebar-member__avatar {
		width: 50px;
		height: 50px;
	}

	.rt-sidebar-member__identity strong {
		font-size: 16px;
	}

	.rt-sidebar-member__grade {
		font-size: 14px;
	}

	.rt-sidebar-member__name-link strong {
		font-size: 18px;
	}

	.rt-sidebar-member__chevron {
		width: 20px;
		height: 20px;
	}

	.rt-sidebar-member__stats {
		margin-top: 12px;
		padding-top: 10px;
	}

	.rt-sidebar-member__stats a {
		font-size: 15px;
	}

	.rt-sidebar-member__stats strong {
		font-size: 15px;
	}

	.rt-sidebar-member__actions {
		margin-top: 10px;
		padding-top: 10px;
	}

	.rt-sidebar-member__actions a {
		min-height: 32px;
		font-size: 15px;
	}

	.rt-sidebar-member__guest-login {
		height: 48px;
	}

	.rt-sidebar-member__guest-logo {
		height: 14px;
	}

	.rt-sidebar-member__guest-login span {
		font-size: 16px;
	}

	.rt-sidebar__mobile-body > .rt-write {
		order: 1;
		flex: none;
	}

	.rt-sidebar__write {
		font-size: 16px;
	}

	.rt-sidebar__mobile-body > .rt-menu {
		order: 3;
		flex: none;
	}

	.rt-sidebar__mobile-body > .rt-sidebar__recent-comments {
		order: 4;
		flex: none;
	}

	html.rt-mobile-drawer-ready .rt-mobile-drawer-backdrop {
		position: fixed;
		z-index: 1105;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		margin: 0;
		padding: 0;
		border: 0;
		background: rgba(0, 0, 0, 0.42);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.22s ease, visibility 0s linear 0.22s;
		visibility: hidden;
	}

	html.rt-mobile-drawer-ready .rt-mobile-drawer-backdrop.is-open {
		opacity: 1;
		pointer-events: auto;
		transition-delay: 0s;
		visibility: visible;
	}

	.rt-write {
		height: 48px;
	}

	.rt-write-modal {
		width: calc(100% - 24px);
	}

	.rt-write-modal__head {
		padding: 19px 18px 16px;
	}

	.rt-write-modal__list {
		padding: 8px;
	}

	.rt-write-modal__link {
		min-height: 50px;
	}

	.rt-menu {
		display: block;
		border-right: 0;
	}

	.rt-menu__list--depth1 {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
	}

	.rt-menu__item--depth1 {
		min-width: 0;
		border-right: 0;
	}

	.rt-menu__item--depth1:nth-child(2n) {
		border-right: 0;
	}

	.rt-menu__link--depth1 {
		min-height: 42px;
		padding: 0 12px;
		font-size: 16px;
	}

	.rt-menu__list--depth2 {
		padding: 8px 0 10px;
	}

	.rt-menu__link--depth2 {
		min-height: 42px;
		padding: 5px 13px 5px 26px;
		font-size: 16px;
	}

	.rt-menu__link--depth2::before {
		left: 15px;
	}

	.rt-content {
		display: flow-root;
		padding: 24px 0 0;
	}

	.rt-content--mobile-flush {
		padding-top: 0;
	}

	.rt-list-pagination {
		margin-bottom: 20px;
	}

	.rt-list-page--edge,
	.rt-list-page--number {
		display: none;
	}

	.rt-list-page-status {
		display: inline-flex;
	}

	.rt-site .rt-list-search {
		align-items: stretch;
		flex-wrap: wrap;
	}

	.rt-site .rt-list-search select,
	.rt-site .rt-list-search input[type="search"],
	.rt-site .rt-list-search .rt-list-button {
		width: 100%;
	}

	.rt-all-posts {
		margin-bottom: 36px;
	}

	.rt-post-list__item {
		grid-template-columns: minmax(0, 1fr) 70px;
	}

	.rt-post-list__author {
		display: none;
	}

	.rt-latest-item--full {
		grid-template-columns: minmax(0, 1fr) 70px;
	}

	.rt-latest-item__author {
		display: none;
	}

	.rt-board-grid {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 36px;
	}

	.rt-footer__links {
		padding: 12px 0;
		row-gap: 7px;
	}
}

/* iOS Safari의 입력 요소 포커스 확대를 방지합니다. */
@media (hover: none) and (pointer: coarse) {
	#rtown21 input:not([type="hidden"]):not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="file"]),
	#rtown21 textarea,
	#rtown21 select,
	#rtown21 .rx_simpleeditor,
	#rtown21 .rx-ckeditor5 .ck-editor__editable_inline {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.rt-member {
		gap: 11px;
		font-size: 11px;
	}

	.rt-member > * + *::before {
		left: -6px;
	}

	.rt-menu__list--depth1 {
		grid-template-columns: minmax(0, 1fr);
	}

	.rt-menu__item--depth1 {
		border-right: 0;
	}

	.rt-post-list__item {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
		padding: 3px 0;
	}

	.rt-latest-item--full,
	.rt-latest-item--compact {
		grid-template-columns: minmax(0, 1fr);
	}

	.rt-latest-item--full {
		gap: 0;
		padding: 3px 0;
	}

	.rt-home-latest__date,
	.rt-post-list__date,
	.rt-latest-item__date {
		display: none;
	}
}

@media (max-width: 339.99px) {
	.rt-container.rt-topbar__inner {
		padding-right: 8px;
		padding-left: 8px;
	}

	.rt-topbar__inner,
	.rt-topbar__start {
		gap: 2px;
	}

	.rt-topbar__mobile-brand {
		margin-left: 0;
	}

	.rt-topbar__mobile-brand-image {
		height: 14px;
	}

	.rt-login__guest {
		gap: 4px;
	}

	.rt-login__button {
		padding-right: 4px;
		padding-left: 4px;
		font-size: 11px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.rt-quick-nav__item {
		transition: none;
	}

	html.rt-mobile-drawer-ready .rt-sidebar,
	html.rt-mobile-drawer-ready .rt-mobile-drawer-backdrop,
	.rt-search-panel,
	html.rt-topbar-home-reveal-ready.rt-topbar-home-reveal-animated .rt-topbar__home,
	html.rt-topbar-home-reveal-ready.rt-topbar-home-reveal-animated .rt-topbar__home-message {
		transition: none;
	}
}
