@charset "utf-8";

/* =============================================================
 * Under Basic Board — 보조 스타일 (board.css 이후 로드)
 * 테마 .responsive 호환 · 세부 튜닝
 * ============================================================= */

/* ─── 목록 / 제목 줄 세부 ─────────────────────────── */

/* 읽은 글 처리 */
.ub-board .ubr__link:visited { color: #0d0c1e; }

/* 공지·열람 행 제목은 항상 진하게 */
.ub-board .ubr--notice .ubr__link {
	color: #3730a3;   /* 인디고 계열 진한 색으로 공지 강조 */
	font-weight: 500;
}
.ub-board .ubr--current .ubr__link { color: #0f172a; font-weight: 600; }

/* 데스크탑 제목 말줄임 */
@media (min-width: 768px) {
	.ub-board .ubr__link {
		max-width: 520px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

/* ─── 게시글 보기 세부 ────────────────────────────── */

/* 뷰 페이지 레이아웃 이탈 방지 + Avata 스타일 상단 메타 */
.ub-board.uv-view-page,
.ub-board.uv-view-page #bo_v {
	max-width: 100%;
	box-sizing: border-box;
}

.ub-board #bo_v_info.attv24-view-info {
	padding: 0 !important;
	font-size: 0.875rem;
	max-width: 100%;
	overflow: visible;
	box-sizing: border-box;
}

.ub-board #bo_v_info.attv24-view-info .attv24-author-ip {
	font-size: 0.8125rem;
	color: #94a3b8;
	line-height: 1.2;
	margin-top: 2px;
	font-variant-numeric: tabular-nums;
}

.ub-board #bo_v_info.attv24-view-info .attv24-view-mini-metrics {
	display: inline-flex;
	align-items: center;
	gap: 0;
}

.ub-board #bo_v_info.attv24-view-info .attv24-view-mini-metric {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-width: 56px;
	padding: 0 10px;
	text-align: center;
}

.ub-board #bo_v_info.attv24-view-info .attv24-view-mini-metric + .attv24-view-mini-metric {
	border-left: 1px solid #e2e8f0;
}

.ub-board #bo_v_info.attv24-view-info .attv24-view-mini-metric i {
	color: #94a3b8;
	font-size: 0.8rem;
	margin-bottom: 2px;
}

.ub-board #bo_v_info.attv24-view-info .attv24-view-mini-num {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #64748b;
	line-height: 1.2;
}

/* 뷰 페이지 작성자 오른쪽 — pill형 조회/댓글 박스, 아이콘·숫자 수평 정렬 */
.ub-board #bo_v_info .ub-view-meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 0;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 9999px;
	padding: 8px 16px;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
	line-height: 1;
}
.ub-board #bo_v_info .ub-view-meta-pill-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #64748b;
	padding: 0 12px;
	line-height: 1;
}
.ub-board #bo_v_info .ub-view-meta-pill-item:not(:last-child) {
	border-right: 1px solid #e2e8f0;
}
.ub-board #bo_v_info .ub-view-meta-pill-item i {
	color: #94a3b8;
	font-size: 0.85rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
}

.ub-board.uv-view-page #bo_v_info .uv-btn-inline {
	display: flex !important;
}

.ub-board.uv-view-page #bo_v_info .uv-meta-row,
.ub-board.uv-view-page #bo_v_info .uv-stat-row {
	overflow: visible;
	position: relative;
	z-index: 12;
}

.ub-board.uv-view-page #bo_v_info .ub-dropdown__menu {
	z-index: 2000;
}

.ub-board #bo_v_info .attv24-author-block {
	display: flex !important;
	align-items: center;
	gap: 10px;
	min-width: 0;
	flex-shrink: 0;
	justify-content: flex-start;
}

.ub-board #bo_v_info .attv24-author-avatar-wrap {
	align-items: center;
}

.ub-board #bo_v_info .attv24-author-meta {
	justify-content: center;
	min-height: 0;
}

/* 본문 산문 스타일 */
.ub-board #bo_v_con .view-content {
	font-size: 1rem;
	line-height: 1.85;
	color: #1e293b;
	word-break: break-word;
}
.ub-board #bo_v_con .view-content p { margin: 0 0 1em; }
.ub-board #bo_v_con .view-content h2,
.ub-board #bo_v_con .view-content h3 { margin-top: 1.5em; font-weight: 700; }
.ub-board #bo_v_con .view-content blockquote {
	margin: 1.25em 0;
	padding: 0.75em 1.25em;
	border-left: 3px solid #4f46e5;
	background: #eef2ff;
	border-radius: 0 8px 8px 0;
	color: #334155;
}
.ub-board #bo_v_con .view-content a { color: #4f46e5; text-decoration: underline; }
.ub-board #bo_v_con .view-content pre,
.ub-board #bo_v_con .view-content code {
	background: #f1f5f9;
	border-radius: 6px;
	font-family: 'JetBrains Mono', 'Consolas', monospace;
	font-size: 0.875em;
}
.ub-board #bo_v_con .view-content pre { padding: 1em; overflow-x: auto; }
.ub-board #bo_v_con .view-content code { padding: 0.15em 0.4em; }

/* ─── 게시글 보기 하단 버튼 ──────────────────────── */
.ub-board .clearfix.ub-pt-2.ub-border-top {
	padding: 1rem 1.5rem;
	background: #f8fafc;
}

/* ─── 댓글 영역 간격 ─────────────────────────────── */
.ub-board #viewcomment {
	border-top: 1px solid #edf0f5;
	padding: 20px 0 0;
	margin-top: 0;
	background: #ffffff;
}
/* 댓글 count 헤더 */
.ub-board #viewcomment > .ub-board {
	padding-left: 24px;
	padding-right: 24px;
}
.ub-board #bo_vc {
	padding: 0 24px;
}
.ub-board #bo_vc_w {
	padding: 0 24px 24px;
}

/* 대댓글 들여쓰기 가이드선 */
.ub-board article[id^="c_"] .cmt-reply {
	top: 14px; left: -14px;
	width: 18px; height: 18px;
	opacity: .5;
}

/* 댓글 작성자 이름 */
.ub-board .cmt-wrap header a { font-weight: 600; color: #0f172a; }
.ub-board .cmt-wrap header time { color: #94a3b8; font-size: 0.8125rem; }

/* ─── 글쓰기 폼 헤더 ────────────────────────────── */
.ub-board #bo_w .ub-list-item:first-child {
	padding: 20px 28px;
	background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
	border-radius: 12px 12px 0 0;
	border-bottom: 0;
}
.ub-board #bo_w .ub-list-item:first-child h5 {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin: 0;
	letter-spacing: -0.02em;
}

/* ─── 페이징 구역 ────────────────────────────────── */
.ub-board #bo_list_wrap > .ub-font-normal {
	padding: 0.25rem 0 0;
}

/* ─── 글쓰기 제출 버튼 반응형 ───────────────────────── */
@media (max-width: 575px) {
	.ub-board #bo_w .uw-submit-bar { padding: 14px 16px; gap: 8px; }
	.ub-board #bo_w .uw-submit-bar .ub-btn { height: 44px; font-size: 0.875rem; }
}

/* ─── .responsive 호환 (테마 스코프) ─────────────── */
@media (max-width: 575px) {
	.responsive .ub-cmt-box         { border-radius: var(--r-md); }
	.responsive #bo_vc_w .ub-cmt-box { border-radius: var(--r-md); }
}

/* =============================================================
 * Under-Basic-Blog — 블로그 카드형 목록 (Vikinger 스타일 참고)
 * ============================================================= */

/* 블로그 카드 전체 박스 — 프리미엄 라운드·배경 (쉐도우는 .ub-blog-feed-item에서) */
.ub-board .ub-widget-box {
	padding: 0;
	border-radius: 10px;
	background-color: #fff;
	position: relative;
	overflow: visible; /* 상단 툴팁이 잘리지 않도록 */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.ub-board .ub-widget-box.no-padding { padding: 0; }

/* 작성자 행 오른쪽 그룹 — 읽음 뱃지·조회/댓글·더보기 수평 정렬 */
.ub-board .ub-blog-author-right {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	min-height: 36px;
}
.ub-board .ub-blog-author-right .ub-badge--read,
.ub-board .ub-blog-author-right .ub-blog-meta-box,
.ub-board .ub-blog-author-right .ub-widget-box-settings {
	display: inline-flex;
	align-items: center;
	align-self: center;
}
/* 더보기 버튼 — 작성자 행 안에 있어서 행과 자연 정렬, 툴팁 기준 영역=버튼만 */
.ub-board .ub-blog-author-row .ub-widget-box-settings {
	position: static !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	z-index: 5;
	flex: 0 0 auto;
	width: fit-content;
	min-width: 0;
	align-self: center;
}
/* 내부 ub-tooltip-wrap이 버튼만 감싸서 툴팁 기준이 버튼 너비로 한정됨 */
.ub-board .ub-blog-author-row .ub-widget-box-settings .ub-tooltip-wrap {
	display: inline-block;
	position: relative;
}

/* 더보기 — 프리미엄 아이콘 버튼 */
.ub-board .ub-post-settings {
	width: 34px;
	height: 34px;
	min-width: 34px;
	min-height: 34px;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: #fff;
	border: 1px solid rgba(15,23,42,.08);
	color: #64748b;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(15,23,42,.04);
	transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.ub-board .ub-post-settings:hover {
	background: #f8fafc;
	border-color: rgba(15,23,42,.12);
	color: #334155;
	box-shadow: 0 2px 6px rgba(15,23,42,.06);
}

/* 상단 ... 툴팁 — 버튼과 같은 위치(오른쪽)에서 버튼 바로 위에 표시 */
.ub-board .ub-tooltip-wrap {
	position: relative;
	display: inline-block;
}
.ub-board .ub-tooltip {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 8px);
	bottom: 100%;
	margin-bottom: 6px;
	padding: 6px 10px;
	border-radius: 8px;
	background: rgba(15,23,42,.92);
	color: #e5e7eb;
	font-size: 0.75rem;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: opacity .18s ease, transform .18s ease;
	pointer-events: none;
}
.ub-board .ub-tooltip--top-right::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	border-width: 5px 5px 0 5px;
	border-style: solid;
	border-color: rgba(15,23,42,.92) transparent transparent transparent;
}
.ub-board .ub-tooltip-wrap:hover .ub-tooltip {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

/* 카드 본문 영역 — 라운드 카드 상단과 맞춤 */
.ub-board .ub-widget-box-status-content {
	background-color: #fff;
	border-radius: 20px 20px 0 0;
	padding: 26px 28px 16px;
}

/* 작성자 + 히트/댓글 한 줄 (작성자 왼쪽, 통계 박스 오른쪽) */
.ub-board .ub-blog-author-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
	flex-wrap: nowrap;
}
/* 작성자 블록은 내용만큼만 차지 (전체 너비 X) → 메타 박스가 오른쪽에 나란히 */
.ub-board .ub-blog-author-row .attv24-author-block {
	width: auto;
	flex-shrink: 0;
}
.ub-board .ub-blog-author-row .ub-blog-meta-box {
	flex-shrink: 0;
}
/* 읽음·히트·댓글·더보기 — 프리미엄 필 스타일 */
.ub-board .ub-blog-meta-box {
	display: inline-flex;
	align-items: center;
	gap: 0;
	height: 34px;
	min-height: 34px;
	box-sizing: border-box;
	background: #fff;
	border: 1px solid rgba(15,23,42,.08);
	border-radius: 10px;
	padding: 0 12px;
	box-shadow: 0 1px 2px rgba(15,23,42,.04);
	line-height: 1;
	transition: box-shadow var(--dur-fast), border-color var(--dur-fast);
}
.ub-board .ub-blog-feed-item:hover .ub-blog-meta-box {
	box-shadow: 0 2px 6px rgba(15,23,42,.06);
	border-color: rgba(15,23,42,.1);
}
.ub-board .ub-blog-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	font-weight: 600;
	color: #64748b;
	padding: 0 10px;
	line-height: 1;
}
.ub-board .ub-blog-meta-item:not(:last-child) {
	border-right: 1px solid #e2e8f0;
}
.ub-board .ub-blog-meta-item i {
	color: #94a3b8;
	font-size: 0.85rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
}

/* 상단 작성자 정보 - Avata 리스트 작성자 CSS 그대로 이식 */
/* 블로그 카드 안에서만 살짝 여백만 추가 */
.ub-board .ub-blog-author-block {
	margin-bottom: 0;
}

/* 목록 카드 게시물 번호 — 프리미엄 시안 뱃지 */
.ub-board .ub-blog-item-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.75rem;
	height: 1.75rem;
	margin-right: 8px;
	padding: 0 6px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #fff;
	background: #23d2e2;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(20, 184, 166, 0.12);
	flex-shrink: 0;
	transition: box-shadow var(--dur-fast), transform var(--dur-fast);
}

.ub-board .attv24-author-block {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	text-align: left;
	gap: 10px;
	width: 100%;
}

.ub-board .attv24-author-avatar-wrap {
	position: relative;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	flex-shrink: 0;
	z-index: 0;
}
.ub-board .attv24-author-avatar-wrap .attv24-author-avatar {
	z-index: 1;
}
.ub-board .attv24-author-avatar-wrap .attv24-level-box {
	z-index: 2;
	position: relative;
	margin-top: -8px !important;
}

.ub-board .attv24-author-avatar.attv24-avatar-box {
	display: inline-block;
	width: 40px;
	height: 40px;
	position: relative;
	line-height: 0;
	border-radius: 6px;
	background: #e2e8f0;
	overflow: hidden;
}
.ub-board .attv24-author-avatar.attv24-avatar-box > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
}
.ub-board .attv24-author-avatar.attv24-avatar-box img,
.ub-board .attv24-author-avatar.attv24-avatar-box .na_photo img {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 6px;
}
/* 아바타 안에 이름이 같이 나오면 숨김 — 아래 .attv24-author-name으로만 표시 */
.ub-board .attv24-author-avatar .na_name,
.ub-board .attv24-author-avatar span:not(.attv24-level-box):not(.na_photo) {
	display: none !important;
}

.ub-board .attv24-level-box {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 18px;
	padding: 0 6px;
	background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
	color: #fff !important;
	font-size: 0.5625rem;
	font-weight: 700;
	line-height: 1;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(79, 70, 229, 0.4);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 56px;
}

.ub-board .attv24-author-meta {
	display: flex !important;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 2px;
	min-width: 0;
	flex: 1;
}

.ub-board .attv24-author-name {
	display: block !important;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #1e293b !important;
	letter-spacing: -0.01em;
	line-height: 1.25;
}

.ub-board .attv24-author-date {
	display: block !important;
	font-size: 0.75rem;
	color: #94a3b8 !important;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.02em;
	line-height: 1.25;
}

/* 공지 배지 */
.ub-board .ub-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 20px;
	padding: 0 10px;
	border-radius: 9999px;
	font-size: 0.7rem;
	font-weight: 700;
}

.ub-board .ub-badge--notice {
	background: #23d2e2;
	color: #fff;
}

/* 상단 인삿말/짧은 텍스트 */
.ub-board .ub-widget-box-status-text {
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.6;
	color: #3e3f5e;
	margin-bottom: 14px;
}

/* 메인 콘텐츠 카드 (이미지 + 제목 + 설명) */
/* 목록 카드 삭제용 체크박스 — 썸네일(목록 이미지) 영역 좌상단 */
.ub-board .ub-blog-card-thumb-wrap {
	position: relative;
}
.ub-board .ub-blog-card-chk {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: #fff;
	border: 1px solid #e2e8f0;
	box-shadow: 0 1px 3px rgba(15,23,42,.12);
	cursor: pointer;
	pointer-events: auto;
}
.ub-board .ub-blog-card-chk:hover {
	border-color: #6366f1;
	background: #f8fafc;
}
.ub-board .ub-blog-card-chk-input {
	width: 14px;
	height: 14px;
	margin: 0;
	cursor: pointer;
	accent-color: #6366f1;
}
.ub-board .ub-video-status {
	display: block;
	border-radius: 20px;
	background-color: #fff;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 3px 5px 40px 0 rgba(94, 92, 154, .1);
	transition: opacity var(--dur-fast, 0.14s) var(--ease);
}
.ub-board .ub-blog-feed-item:hover .ub-video-status {
	opacity: 1;
}

/* 카드 본문 — 좌측 이미지 + 우측 제목·내용, 경계 뚜렷하게 구분 */
.ub-board .ub-video-status.small {
	display: flex;
	flex-direction: row;
	position: relative;
	overflow: visible;
}

/* 좌측 이미지 영역 — 고정 크기, 오른쪽 구분선으로 경계 명확히 */
.ub-board .ub-video-status-image {
	width: 280px;
	min-width: 280px;
	height: 200px;
	object-fit: cover;
	display: block;
	flex-shrink: 0;
	border-radius: 10px 0 0 10px;
	border-right: 1px solid rgba(15, 23, 42, 0.08);
	transition: opacity var(--dur-fast);
}
/* 데스크탑: 좌측 이미지 표시 (같은 img에 .mobile 클래스 있음) */
.ub-board .ub-video-status.small .ub-video-status-image.mobile {
	display: block;
}
.ub-board .ub-blog-feed-item:hover .ub-video-status-image {
	opacity: 0.96;
}

/* 썸네일 없을 때 — 좌측 영역 동일 크기·구분선 */
.ub-board .ub-no-thumb {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 280px;
	min-width: 280px;
	height: 200px;
	flex-shrink: 0;
	background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
	border: 1px dashed #cbd5e1;
	border-right: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 14px 0 0 14px;
	color: #64748b;
}
.ub-board .ub-no-thumb__icon {
	width: 36px;
	height: 36px;
	opacity: 0.6;
}
.ub-board .ub-no-thumb__text {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #64748b;
}

/* 우측 제목·내용 영역 — 이미지와 왼쪽은 붙이고, 오른쪽 라운드 보더 아주 연하게 */
.ub-board .ub-video-status-info {
	flex: 1;
	min-width: 0;
	padding: 20px 22px;
	background: #fff;
	position: relative;
	border-radius: 0 10px 10px 0;
	transition: border-color var(--dur-base), box-shadow var(--dur-base), background var(--dur-base);
}
.ub-board .ub-blog-feed-item:hover .ub-video-status-info {
	border-top-color: rgba(15, 23, 42, 0.12);
	border-right-color: rgba(15, 23, 42, 0.12);
	border-bottom-color: rgba(15, 23, 42, 0.12);
	border-left: none;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
	background: #fefefe;
}

/* 카드 제목 — 크고 강렬하게 */
.ub-board .ub-video-status-title {
	font-size: 1.25rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.35;
	margin: 0 0 10px;
	color: #0f172a;
}

.ub-board .ub-video-status-title .bold {
	font-weight: 800;
	letter-spacing: -0.03em;
}

.ub-board .ub-video-status-text {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #475569;
	margin: 0 0 12px;
	letter-spacing: 0.01em;
}

.ub-board .ub-video-status-meta {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #94a3b8;
}

/* 태그(카테고리) — 경계선·배경 없이 자연스럽게 */
.ub-board .ub-tag-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	min-height: 24px;
	margin-top: 12px;
	gap: 8px;
}
.ub-board .ub-tag-list:has(.ub-tag-empty) {
	justify-content: center;
}

/* 태그 없음 — 프리미엄 중성 톤 */
.ub-board .ub-tag-empty {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 0 14px;
	line-height: 1;
	border-radius: 10px;
	background: #fff;
	border: 1px solid rgba(15,23,42,.08);
	color: #64748b;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	box-shadow: 0 1px 2px rgba(15,23,42,.04);
}

.ub-board .ub-tag-item {
	display: inline-block;
	height: 26px;
	padding: 0 12px;
	border-radius: 6px;
	background: #615dfa;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 26px;
	transition: background var(--dur-fast), transform var(--dur-fast);
}
.ub-board .ub-tag-item:hover {
	background: #00c7d9;
	transform: translateY(-1px);
}

.ub-board .ub-tag-item.secondary {
	background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
	box-shadow: 0 1px 3px rgba(79, 70, 229, 0.25);
}
.ub-board .ub-tag-item.secondary:hover {
	background: linear-gradient(135deg, #818cf8 0%, #6366f1 100%);
	box-shadow: 0 2px 8px rgba(79, 70, 229, 0.3);
}

/* 하단 메타(추천·비추천·별점) — 프리미엄 구분선·간격 */
.ub-board .ub-content-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 20px;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
	padding-top: 14px;
}

.ub-board .ub-content-action {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.ub-board .ub-meta-line {
	display: flex;
	align-items: center;
}

.ub-board .ub-meta-line + .ub-meta-line {
	margin-left: 18px;
}

.ub-board .ub-meta-line-text,
.ub-board .ub-meta-line-link {
	font-size: 0.78rem;
	font-weight: 700;
}

.ub-board .ub-meta-line-text i,
.ub-board .ub-meta-line-link i {
	color: #adafca;
	margin-right: 6px;
}

.ub-board .ub-meta-line-link {
	cursor: pointer;
	color: #adafca;
}

.ub-board .ub-meta-line-link:hover {
	color: #00c7d9;
}

/* 이모지 리액션 (이미지 대신) */
.ub-board .ub-reaction-item-list {
	display: flex;
	flex-direction: row-reverse;
}

.ub-board .ub-reaction-item {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: -6px;
	box-shadow: 0 1px 4px rgba(15,23,42,.12);
}

.ub-board .ub-reaction-emoji {
	font-size: 0.9rem;
}

/* 카드 하단 정보바 — 프리미엄 (카드 하단 라운드와 일치) */
.ub-board .ub-post-options {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	gap: 18px;
	padding: 16px 28px 18px;
	border-top: 1px solid rgba(15, 23, 42, 0.06);
	background: #fefefe;
	border-radius: 0 0 20px 20px;
	position: relative;
	z-index: 2;
}

.ub-board .ub-post-option {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	min-width: 160px;
	height: 44px;
	flex: 0 0 auto;
	border-radius: 12px;
	padding: 0 18px;
	cursor: pointer;
	border: 0;
	background: transparent;
	transition: box-shadow .2s ease-in-out, background-color .2s ease-in-out;
	white-space: nowrap;
}
.ub-board .ub-post-option i {
	margin-right: 8px;
	font-size: 0.9rem;
}

/* 추천/비추천 아이콘 배지 */
.ub-board .ub-post-option--reaction {
	min-width: 0;
	justify-content: center;
	gap: 6px;
	padding: 0 8px;
	cursor: pointer;
}
.ub-board .ub-post-option--reaction:hover {
	background: transparent;
	box-shadow: none;
}
.ub-board .ub-post-reaction-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 12px;
	border-radius: 9999px;
	background: #eef2ff;
	color: #4f46e5;
	font-size: 0.78rem;
	font-weight: 800;
	box-shadow: 0 2px 10px rgba(79,70,229,.18);
}
.ub-board .ub-post-reaction-pill--negative {
	background: #fef2f2;
	color: #ef4444;
	box-shadow: 0 2px 10px rgba(239,68,68,.16);
}
.ub-board .ub-post-reaction-pill i {
	font-size: 0.9rem;
}

/* 별점용 배지 */
.ub-board .ub-post-reaction-pill--rating {
	background: #fef3c7;
	color: #f59e0b;
	box-shadow: 0 2px 10px rgba(245,158,11,.18);
}
.ub-board .ub-post-reaction-pill--rating i {
	color: #f59e0b;
}
.ub-board .ub-post-rating-text {
	font-size: 0.8rem;
	font-weight: 800;
}

/* 하단 버튼 공통 텍스트 */
.ub-board .ub-post-option-text {
	font-size: 0.8rem;
	font-weight: 600;
	color: #9ca3af;
}
.ub-board .ub-post-count {
	margin-left: 6px;
	font-size: 0.8rem;
	font-weight: 700;
	color: #6b7280;
}
.ub-board .ub-post-count--rating {
	color: #f59e0b;
}

/* 목록 별점 링크 — 버튼과 동일한 스타일 */
.ub-board a.ub-post-option--rating {
	text-decoration: none;
	color: inherit;
}
.ub-board .ub-star-inline {
	display: inline-flex;
	align-items: center;
	gap: 1px;
}
.ub-board .ub-star-inline .fa-star {
	color: #f59e0b;
}
.ub-board .ub-star-inline .fa-star-o {
	color: #e5e7eb;
}

/* 목록 별점: 5개 별 버튼(게이지) — 호버 쉐도우가 출력 전체를 덮도록 */
.ub-board .ub-post-option--rating.ub-list-rating-box {
	width: max-content;
	min-width: 160px;
	max-width: 100%;
	padding: 0 18px;
	box-sizing: border-box;
}
.ub-board .ub-list-rating-box {
	cursor: default;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
	position: relative;
	z-index: 3;
	pointer-events: auto;
}
.ub-board .ub-list-rating-stars {
	display: inline-flex;
	align-items: center;
	gap: 0;
}
.ub-board .ub-list-rating-box .ub-list-star-btn {
	width: 24px;
	height: 24px;
	min-width: 24px;
	padding: 0;
	border: none;
	background: transparent;
	color: #e5e7eb;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 4;
	pointer-events: auto;
	transition: color .15s ease, transform .08s ease;
}
.ub-board .ub-list-rating-box .ub-list-star-btn:hover {
	color: #fbbf24;
	transform: scale(1.15);
}
.ub-board .ub-list-rating-box .ub-list-star-btn i.fa-star {
	color: #f59e0b;
}

/* 글보기 액션 바: 추천/비추천/스크랩/별점 — 한 줄에 매끄럽게 통일 */
.ub-board .ub-view-action-bar {
	border-top: 1px solid rgba(15, 23, 42, 0.08);
	background: #f8fafc;
	padding: 14px 28px 16px !important;
}
.ub-board .ub-view-action-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

/* 버튼 그룹과 별점 카드 시각적 통일 (같은 높이·테두리·배경 톤) */
.ub-board #bo_v_btn_group .ub-btn-group {
	gap: 10px;
}
/* 액션 바 버튼·별점 공통 쉐도우 (통일) */
.ub-board #bo_v_btn_group .ub-btn--basic {
	min-width: 80px;
	padding: 10px 18px;
	border-radius: 9999px;
	background: #fff;
	border: 1.5px solid #e2e8f0;
	color: #64748b;
	font-size: 0.8125rem;
	font-weight: 600;
	height: 44px;
	box-sizing: border-box;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.ub-board #bo_v_btn_group .ub-btn--basic:hover {
	border-color: #c7d2fe;
	background: #eef2ff;
	color: #4f46e5;
	box-shadow: 0 3px 10px rgba(15, 23, 42, 0.1);
}

/* 별점 카드 — 버튼과 동일한 쉐도우 */
.ub-board .ub-view-star-card {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	height: 44px;
	padding: 0 18px 0 14px;
	background: #fff;
	border: 1.5px solid #e2e8f0;
	border-radius: 9999px;
	box-sizing: border-box;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.ub-board .ub-view-star-card:hover {
	border-color: #fde68a;
	background: #fffbeb;
	box-shadow: 0 3px 10px rgba(15, 23, 42, 0.1);
}
.ub-board .ub-view-star-card .ub-star-rating-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
}
.ub-board .ub-view-star-card .ub-star-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	padding: 0;
	border: none;
	background: transparent;
	color: #e2e8f0;
	cursor: pointer;
	transition: color .15s ease, transform .1s ease;
}
.ub-board .ub-view-star-card .ub-star-btn:hover {
	color: #f59e0b;
	transform: scale(1.1);
}
.ub-board .ub-view-star-card .ub-star-btn i.fa-star {
	color: #f59e0b;
}
.ub-board .ub-view-star-text {
	font-size: 0.8125rem;
	font-weight: 700;
	color: #64748b;
	white-space: nowrap;
}
.ub-board .ub-view-star-card:hover .ub-view-star-text {
	color: #b45309;
}

/* (리스트 등) 기존 별점 래퍼/라벨/텍스트 */
.ub-board .ub-star-rating-wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}
.ub-board .ub-star-rating-label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #6b7280;
}
.ub-board .ub-star-rating-stars {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.ub-board .ub-star-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	background: transparent;
	color: #e5e7eb;
	cursor: pointer;
	transition: color .15s ease, transform .1s ease;
}
.ub-board .ub-star-btn:hover {
	color: #fbbf24;
	transform: scale(1.1);
}
.ub-board .ub-star-btn i.fa-star {
	color: #f59e0b;
}
.ub-board .ub-star-rating-text {
	font-size: 0.875rem;
	font-weight: 600;
	color: #6b7280;
}

/* Vikinger .post-option 스타일 이식 */
.ub-board .ub-post-option i {
	color: #adafca;
	opacity: .6;
	transition: color .2s ease-in-out, opacity .2s ease-in-out;
}
.ub-board .ub-post-option:hover,
.ub-board .ub-post-option.ub-post-option--active {
	background-color: #ffffff;
	box-shadow: 3px 5px 20px 0 rgba(94, 92, 154, 0.1);
}
.ub-board .ub-post-option:hover i,
.ub-board .ub-post-option.ub-post-option--active i {
	color: #23d2e2;
	opacity: 1;
}
.ub-board .ub-post-option:hover .ub-post-option-text,
.ub-board .ub-post-option.ub-post-option--active .ub-post-option-text {
	color: #3e3f5e;
}

.ub-board .ub-post-option:hover {
	background: #fff;
	box-shadow: 3px 5px 20px rgba(94, 92, 154, 0.1);
}

.ub-board .ub-post-option-text {
	font-size: 0.78rem;
	font-weight: 700;
	color: #adafca;
}

.ub-board .ub-post-option:hover .ub-post-option-text {
	color: #3e3f5e;
}

/* 목록 래퍼 — 배경·여백·카드 간격 (프리미엄) */
.ub-board #bo_blog_feed {
	padding: 24px 0 8px;
}
.ub-board .ub-blog-feed-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* 카드 — 프리미엄 엘리베이션 + 호버 리프트, 로드 애니메이션 */
.ub-board .ub-blog-feed-item {
	animation: ubFadeUp var(--dur-slow, 0.4s) var(--ease, ease) both;
}
.ub-board .ub-blog-feed-item .ub-widget-box {
	bbox-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	transition: transform var(--dur-base, 0.2s) var(--ease), box-shadow var(--dur-base, 0.2s) var(--ease), border-color var(--dur-base, 0.2s);
}
.ub-board .ub-blog-feed-item:hover .ub-widget-box {
	transform: translateY(-2px);
	box-shadow: var(--sh-card-hover, 0 4px 12px rgb(15 23 42 / .06), 0 16px 40px -8px rgb(15 23 42 / .08));
	border-color: rgba(15, 23, 42, 0.08);
}
.ub-board .ub-blog-feed-item:nth-child(1) { animation-delay: 50ms; }
.ub-board .ub-blog-feed-item:nth-child(2) { animation-delay: 100ms; }
.ub-board .ub-blog-feed-item:nth-child(3) { animation-delay: 150ms; }
.ub-board .ub-blog-feed-item:nth-child(4) { animation-delay: 200ms; }
.ub-board .ub-blog-feed-item:nth-child(5) { animation-delay: 250ms; }
.ub-board .ub-blog-feed-item:nth-child(6) { animation-delay: 300ms; }
.ub-board .ub-blog-feed-item:nth-child(7) { animation-delay: 350ms; }
.ub-board .ub-blog-feed-item:nth-child(8) { animation-delay: 400ms; }
.ub-board .ub-blog-feed-item:nth-child(9) { animation-delay: 450ms; }
.ub-board .ub-blog-feed-item:nth-child(10) { animation-delay: 500ms; }
.ub-board .ub-blog-feed-item:nth-child(n+11) { animation-delay: 550ms; }

.ub-board .ub-blog-feed-item--notice .ub-widget-box-status-content {
	background: linear-gradient(135deg,#f5f3ff,#fff);
}

/* 목록 하단 페이징 — 프리미엄 카드 톤 */
.ub-board .ub-pgn-wrap {
	margin-top: 28px;
}
.ub-board .ub-pgn-card {
	border-radius: 14px;
	box-shadow: 0 1px 3px rgba(15,23,42,.04), 0 6px 20px -4px rgba(15,23,42,.06);
	border: 1px solid rgba(15,23,42,.06);
}

/* PC 전용 — 하단 정보바 가로폭 넓게 퍼지게 (추천·비추천·별점이 왼쪽에 몰리지 않도록) */
@media (min-width: 768px) {
	.ub-board .ub-post-options {
		flex-wrap: nowrap;
		align-items: center;
		justify-content: space-between;
		gap: 16px;
	}
	.ub-board .ub-post-option {
		flex: 1 1 0;
		min-width: 140px;
		max-width: none;
		width: auto;
	}
	.ub-board .ub-post-option--rating.ub-list-rating-box {
		flex: 1 1 0;
		min-width: 140px;
		width: auto;
	}
}

/* 목록 하단 옵션 3개(추천/비추천/별점) 폭 균등 고정 */
.ub-board .ub-post-options {
	display: flex;
}
.ub-board .ub-post-options > * {
	flex: 1 1 0;
	min-width: 0;
}
.ub-board .ub-post-options .ub-post-option--rating.ub-list-rating-box {
	justify-content: center;
	/* 기존 max-content/고정폭 설정을 무력화해서 호버 쉐도우가 박스 전체를 꽉 채우도록 */
	width: 100% !important;
	max-width: none !important;
}
.ub-board .ub-post-options .ub-list-rating-avg {
	white-space: nowrap;
}
.ub-board .ub-post-options .ub-list-rating-count {
	white-space: nowrap;
}

/* 별점 미선택 안내 툴팁(말풍선) — 텍스트로 폭을 깨지 않게 별점 박스 위에 표시 */
.ub-board .ub-list-rating-box {
	position: relative;
}
.ub-board .ub-list-rating-box.ub-list-rating--needs::before {
	content: "별점을 선택해 주세요.";
	position: absolute;
	left: 50%;
	bottom: calc(100% + 8px);
	transform: translateX(-50%);
	background: #23d2e2;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 10px;
	border-radius: 10px;
	white-space: nowrap;
	box-shadow: 0 8px 20px rgba(35, 210, 226, 0.22);
	pointer-events: none;
	opacity: 1;
	animation: ubRatingHintFloat 1.25s ease-in-out infinite;
	z-index: 6;
}
.ub-board .ub-list-rating-box.ub-list-rating--needs::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: calc(100% + 3px);
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #23d2e2;
	pointer-events: none;
	z-index: 6;
}
@keyframes ubRatingHintFloat {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(-4px); }
}

/* 선택 완료 시 툴팁 숨김(명시) */
.ub-board .ub-list-rating-box.ub-list-rating--done::before,
.ub-board .ub-list-rating-box.ub-list-rating--done::after {
	display: none;
}

/* 반응형 조정 — 모바일: 이미지 상단 풀폭 */
@media (max-width: 767px) {
	.ub-board .ub-widget-box-status-content {
		padding: 18px 16px 12px;
	}
	.ub-board .ub-video-status.small {
		flex-direction: column;
	}
	.ub-board .ub-video-status-image,
	.ub-board .ub-video-status-image.mobile {
		width: 100%;
		min-width: 0;
		height: 200px;
		border-radius: 10px 10px 0 0;
		border-right: none;
	}
	.ub-board .ub-no-thumb {
		width: 100%;
		min-width: 0;
		height: 200px;
		border-radius: 20px 20px 0 0;
		border-right: none;
	}
	.ub-board .ub-video-status-info {
		padding: 16px 16px 18px;
		border-radius: 10px;
	}
	.ub-board .ub-blog-feed-item:hover .ub-video-status-info {
		border-color: rgba(15, 23, 42, 0.12);
		box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
	}
	/* 모바일 하단 정보바 — 카드 하단 라운드 일치 */
	.ub-board .ub-post-options {
		padding: 14px 20px 16px;
		padding-left: 24px;
		padding-right: 24px;
		gap: 12px;
		border-radius: 0 0 20px 20px;
		align-items: center;
		min-height: 52px;
		flex-wrap: nowrap;
	}
	.ub-board .ub-post-option {
		width: auto;
		min-width: 100px;
		height: 44px;
		min-height: 44px;
		flex: 1 1 0;
		max-width: none;
		align-items: center;
		justify-content: center;
	}
	/* 모바일에서도 3개 버튼(추천/비추천/별점) 동일 비율 유지 */
	.ub-board .ub-post-option--rating.ub-list-rating-box {
		flex: 1 1 0 !important;
		width: auto !important;
		min-width: 100px;
		height: 44px;
		min-height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}
}

/* ── 예상 읽기 시간 ── */
.ub-board .ub-reading-time {
	color: var(--ub-muted, #64748b);
	font-size: 0.8125rem;
}

/* ── 목차(TOC) ── */
.ub-board .ub-toc {
	margin-bottom: 1.25rem;
	padding: 12px 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	font-size: 0.875rem;
}
.ub-board .ub-toc__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.ub-board .ub-toc__item { margin: 4px 0; }
.ub-board .ub-toc__item--h3 { padding-left: 12px; }
.ub-board .ub-toc__link {
	color: #475569;
	text-decoration: none;
}
.ub-board .ub-toc__link:hover { color: #0f172a; text-decoration: underline; }

/* ── 목록: 자신의 글 별점 영역 (비활성 문구) ── */
.ub-board .ub-list-rating-own {
	color: var(--ub-muted, #94a3b8);
	font-size: 0.8125rem;
	cursor: default;
}

/* ── 읽음 표시 ── */
.ub-board .ub-blog-feed-item--read .ub-video-status-title { opacity: 0.85; }
/* 읽음 뱃지 — 프리미엄 시안 톤 */
.ub-board .ub-badge--read {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	min-height: 34px;
	box-sizing: border-box;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1;
	background: linear-gradient(180deg, #f0fdfa 0%, #ccfbf1 100%);
	color: #0f766e;
	border: 1px solid rgba(20, 184, 166, 0.35);
	border-radius: 10px;
	padding: 0 12px;
	margin-left: 0;
	box-shadow: 0 1px 2px rgba(20, 184, 166, 0.12);
	transition: box-shadow var(--dur-fast), border-color var(--dur-fast);
}
/* 읽음 뱃지 — 뱃지 자체에만 호버 적용(더보기 호버 시 같이 반응하지 않도록) */
.ub-board .ub-badge--read:hover {
	background: #a5f3fc;
	border-color: #23d2e2;
	color: #0f766e;
}

/* ── 더 보기 — 프리미엄 버튼 ── */
.ub-board .ub-load-more-wrap .ub-load-more-btn {
	min-width: 160px;
	padding: 12px 28px;
	border-radius: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
	transition: transform var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast), border-color var(--dur-fast);
}
.ub-board .ub-load-more-wrap .ub-load-more-btn:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}
.ub-board .ub-load-more-wrap .ub-load-more-btn:disabled { opacity: 0.7; }
.ub-board .ub-load-more-wrap .ub-load-more-btn.ub-load-more-btn--loading { cursor: wait; }

/* ── 목록에서 댓글 패널 (ub_comment_view) ── */
.ub-board .ub-list-cmt-wrap {
	border-top: 1px solid var(--ub-border, #e2e8f0);
	padding: 14px 12px 16px;
	background: var(--s-page, #f8fafc);
	margin: 0 -2px;
	border-radius: 0 0 12px 12px;
}
.ub-board .ub-list-cmt-body {
	/* 내부 스크롤바(사이드바) 제거: 댓글 수가 많아도 페이지 자체가 자연스럽게 늘어나게 */
	max-height: none;
	overflow: visible;
}
.ub-board .ub-list-cmt-body #viewcomment { margin-top: 0; }
.ub-board .ub-list-cmt-toggle.ub-list-cmt-toggle--loading { opacity: 0.65; pointer-events: none; }

/* 목록 인라인 댓글: 기본 레이아웃 깨짐 방지 (뷰 페이지용 패딩/폭을 목록에 맞게 리셋) */
.ub-board .ub-list-cmt-wrap #viewcomment {
	border-top: 0;
	padding: 0;
	background: transparent;
}
.ub-board .ub-list-cmt-wrap #viewcomment > .ub-board,
.ub-board .ub-list-cmt-wrap #bo_vc,
.ub-board .ub-list-cmt-wrap #bo_vc_w {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.ub-board .ub-list-cmt-wrap #bo_vc {
	padding-top: 8px !important;
}
.ub-board .ub-list-cmt-wrap .ub-cmt-box {
	margin-top: 10px;
	padding: 14px;
}
.ub-board .ub-list-cmt-wrap .uvc-header {
	padding-left: 0;
	padding-right: 0;
	margin-bottom: 10px;
}
.ub-board .ub-list-cmt-wrap .ub-input-group .ub-btn {
	border-top: 1px solid rgba(15,23,42,.06);
}
.ub-board .ub-list-cmt-skeleton {
	border: 1px dashed rgba(15,23,42,.12);
	border-radius: 10px;
	background: rgba(255,255,255,.7);
}

/* 목록 댓글: 더보기(예제 이미지와 유사) */
.ub-board .ub-cmt-collapse-outer {
	border-radius: 0 0 8px 8px;
}
.ub-board .ub-cmt-collapse-fade {
	pointer-events: none;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 48px;
	background: linear-gradient(to bottom, rgba(248,250,252,0), rgba(248,250,252,0.95) 55%, #f8fafc);
}
.ub-board .ub-cmt-load-more-bar {
	text-align: center;
	padding: 10px 8px 6px;
	border-bottom: 1px solid var(--ub-border, #e2e8f0);
	background: #fff;
}
.ub-board .ub-cmt-load-more-btn {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: #0d9488;
	letter-spacing: 0.02em;
	padding: 8px 16px;
	border-radius: 999px;
	transition: background 0.15s, color 0.15s;
}
.ub-board .ub-cmt-load-more-btn:hover {
	background: rgba(13, 148, 136, 0.08);
	color: #0f766e;
}
.ub-board .ub-cmt-load-more-badge {
	font-weight: 700;
	margin-left: 2px;
}

/* ── 인쇄용 스타일 ── */
@media print {
	.ub-board #bo_btn_top,
	.ub-board #bo_search,
	.ub-board .ub-dropdown,
	.ub-board .ub-btn,
	.ub-board .ub-pgn-wrap,
	.ub-board .ub-load-more-wrap,
	.ub-board .ub-toc,
	.ub-board .ub-view-action-bar,
	.ub-board .uv-btn-bar,
	#viewcomment,
	.ub-list-cmt-wrap,
	.ub-setup-modal { display: none !important; }
	.ub-board .ub-widget-box,
	.ub-board .ub-blog-feed-item { break-inside: avoid; }
	.ub-board { background: #fff; color: #000; }
}
