@charset "utf-8";

/* =============================================================
 * Under Basic Board ? Modern Card UI
 * Scope: .ub-board  |  No Bootstrap  |  No :root
 * ============================================================= */

/* ?????????????????????????????????????????
   1. ??? ?? (.ub-board ???)
????????????????????????????????????????? */
.ub-board {
	/* ?? */
	--c-primary:        #4f46e5;
	--c-primary-h:      #4338ca;
	--c-primary-light:  #eef2ff;
	--c-accent:         #f43f5e;
	--c-success:        #10b981;
	--c-warning:        #f59e0b;
	--c-info:           #0ea5e9;
	--c-danger:         #ef4444;

	/* ??? */
	--t-base:    #0f172a;
	--t-medium:  #334155;
	--t-muted:   #64748b;
	--t-subtle:  #94a3b8;
	--t-white:   #ffffff;

	/* ?? */
	--s-page:    #f1f5f9;
	--s-card:    #ffffff;
	--s-hover:   #f8fafc;
	--s-active:  #eef2ff;

	/* ??? */
	--b-subtle:  #f1f5f9;
	--b-default: #e2e8f0;
	--b-strong:  #cbd5e1;
	--b-focus:   #a5b4fc;

	/* ??? */
	--sh-xs: 0 1px 2px rgb(15 23 42 / .04);
	--sh-sm: 0 2px 8px -1px rgb(15 23 42 / .06), 0 1px 3px rgb(15 23 42 / .04);
	--sh-md: 0 8px 24px -4px rgb(15 23 42 / .08), 0 2px 6px rgb(15 23 42 / .04);
	--sh-lg: 0 20px 48px -8px rgb(15 23 42 / .12), 0 4px 10px rgb(15 23 42 / .06);
	--sh-inset: inset 0 1px 2px rgb(15 23 42 / .06);

	/* ??? */
	--r-xs: 6px;
	--r-sm: 8px;
	--r-md: 12px;
	--r-lg: 16px;
	--r-xl: 20px;
	--r-full: 9999px;

	/* ?? */
	--sp-1: 0.25rem;
	--sp-2: 0.5rem;
	--sp-3: 0.75rem;
	--sp-4: 1rem;
	--sp-5: 1.25rem;
	--sp-6: 1.5rem;
	--sp-8: 2rem;
	--sp-10: 2.5rem;

	/* ?? */
	--ease: cubic-bezier(.4, 0, .2, 1);
	--dur-fast: 140ms;
	--dur-base: 200ms;
	--dur-slow: 320ms;

	/* ?? ?? ? */
	--head-primary:   #4f46e5;
	--head-secondary: #475569;
	--head-success:   #059669;
	--head-danger:    #dc2626;
	--head-warning:   #d97706;
	--head-info:      #0891b2;
	--head-dark:      #0f172a;
	--head-light:     #e2e8f0;

	box-sizing: border-box;
	color: var(--t-base);
	font-size: 0.9375rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.ub-board *, .ub-board *::before, .ub-board *::after {
	box-sizing: inherit;
}

.ub-board a { color: inherit; text-decoration: none; }


/* ?????????????????????????????????????????
   2. ???? ??
????????????????????????????????????????? */
.ub-board .ub-flex       { display: flex; }
.ub-board .ub-flex-wrap  { flex-wrap: wrap; }
.ub-board .ub-items-center { align-items: center; }
.ub-board .ub-justify-center { justify-content: center; }
.ub-board .ub-justify-end   { justify-content: flex-end; }
.ub-board .ub-grow       { flex-grow: 1; }
.ub-board .ub-shrink-0   { flex-shrink: 0; }
.ub-board .ub-block      { display: block; }
.ub-board .ub-none       { display: none; }
.ub-board .ub-relative   { position: relative; }
.ub-board .ub-absolute   { position: absolute; }
.ub-board .ub-clearfix::after { content: ""; display: block; clear: both; }

/* spacing */
.ub-board .ub-mb-0  { margin-bottom: 0; }
.ub-board .ub-mb-2  { margin-bottom: var(--sp-2); }
.ub-board .ub-mb-3  { margin-bottom: var(--sp-3); }
.ub-board .ub-mb-4  { margin-bottom: var(--sp-4); }
.ub-board .ub-mt-1  { margin-top: var(--sp-1); }
.ub-board .ub-mt-2  { margin-top: var(--sp-2); }
.ub-board .ub-mt-3  { margin-top: var(--sp-3); }
.ub-board .ub-my-1  { margin-top: var(--sp-1); margin-bottom: var(--sp-1); }
.ub-board .ub-mx-auto { margin-left: auto; margin-right: auto; }
.ub-board .ub-p-2   { padding: var(--sp-2); }
.ub-board .ub-p-3   { padding: var(--sp-3); }
.ub-board .ub-px-1  { padding-left: var(--sp-1); padding-right: var(--sp-1); }
.ub-board .ub-px-2  { padding-left: var(--sp-2); padding-right: var(--sp-2); }
.ub-board .ub-px-3  { padding-left: var(--sp-3); padding-right: var(--sp-3); }
.ub-board .ub-py-1  { padding-top: var(--sp-1); padding-bottom: var(--sp-1); }
.ub-board .ub-py-2  { padding-top: var(--sp-2); padding-bottom: var(--sp-2); }
.ub-board .ub-py-4  { padding-top: var(--sp-4); padding-bottom: var(--sp-4); }
.ub-board .ub-pl-2  { padding-left: var(--sp-2); }
.ub-board .ub-pl-3  { padding-left: var(--sp-3); }
.ub-board .ub-pr-2  { padding-right: var(--sp-2); }
.ub-board .ub-pr-3  { padding-right: var(--sp-3); }
.ub-board .ub-pt-2  { padding-top: var(--sp-2); }
.ub-board .ub-pt-3  { padding-top: var(--sp-3); }
.ub-board .ub-pb-3  { padding-bottom: var(--sp-3); }

/* ??? */
.ub-board .ub-text-sm   { font-size: 0.875rem; }
.ub-board .ub-text-xs   { font-size: 0.8125rem; }
.ub-board .ub-text-muted { color: var(--t-muted); }
.ub-board .ub-text-primary { color: var(--c-primary); }
.ub-board .ub-font-normal { font-weight: 400; }
.ub-board .ub-font-bold  { font-weight: 600; }
.ub-board .ub-nowrap     { white-space: nowrap; }
.ub-board .ub-break-all  { word-break: break-all; }
.ub-board .ub-en         { font-variant-numeric: tabular-nums; }
.ub-board .ub-text-center { text-align: center; }
.ub-board .ub-text-left   { text-align: left; }
.ub-board .ub-text-right  { text-align: right; }

/* ?????? */
.ub-board .ub-bg-light   { background: var(--s-hover); }
.ub-board .ub-bg-strong  { background: var(--b-subtle); }
.ub-board .ub-border-top    { border-top: 1px solid var(--b-default); }
.ub-board .ub-border-bottom { border-bottom: 1px solid var(--b-default); }
.ub-board .ub-border-left-0 { border-left: 0; }
.ub-board .ub-accent     { color: var(--c-accent); }

.ub-board .ub-sr-only {
	position: absolute; width: 1px; height: 1px;
	padding: 0; margin: -1px; overflow: hidden;
	clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ?????????????????????????????????????????
   3. ??
????????????????????????????????????????? */
.ub-board .ub-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4em;
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.01em;
	border: 1px solid transparent;
	border-radius: var(--r-sm);
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background var(--dur-fast) var(--ease),
		border-color var(--dur-fast) var(--ease),
		color var(--dur-fast) var(--ease),
		box-shadow var(--dur-fast) var(--ease),
		transform var(--dur-fast) var(--ease);
}
.ub-board .ub-btn:focus-visible {
	outline: 2px solid var(--c-primary);
	outline-offset: 2px;
}
.ub-board .ub-btn:active { transform: translateY(1px); }

/* primary */
.ub-board .ub-btn--primary {
	background: var(--c-primary);
	color: var(--t-white);
	border-color: var(--c-primary);
	box-shadow: 0 1px 3px rgb(79 70 229 / .25);
}
.ub-board .ub-btn--primary:hover {
	background: var(--c-primary-h);
	border-color: var(--c-primary-h);
	color: var(--t-white);
	box-shadow: 0 4px 12px rgb(79 70 229 / .3);
	transform: translateY(-1px);
}

/* basic / outline */
.ub-board .ub-btn--basic {
	background: var(--s-card);
	color: var(--t-medium);
	border-color: var(--b-default);
	box-shadow: var(--sh-xs);
}
.ub-board .ub-btn--basic:hover {
	background: var(--s-hover);
	border-color: var(--b-strong);
	color: var(--t-base);
	box-shadow: var(--sh-sm);
	transform: translateY(-1px);
}

/* ghost */
.ub-board .ub-btn--ghost {
	background: transparent;
	color: var(--t-muted);
	border-color: transparent;
}
.ub-board .ub-btn--ghost:hover {
	background: var(--s-hover);
	color: var(--t-medium);
}

/* sizes */
.ub-board .ub-btn--sm  { padding: 0.35rem 0.75rem; font-size: 0.8125rem; border-radius: var(--r-xs); }
.ub-board .ub-btn--lg  { padding: 0.7rem 1.5rem; font-size: 1rem; border-radius: var(--r-sm); font-weight: 600; }
.ub-board .ub-btn--block { width: 100%; }

/* group */
.ub-board .ub-btn-group { display: inline-flex; flex-wrap: wrap; gap: var(--sp-2); align-items: center; }
.ub-board .ub-btn-group--vertical { flex-direction: column; align-items: stretch; gap: var(--sp-1); }
.ub-board .ub-btn-group--vertical .ub-btn { justify-content: flex-start; }


/* ?????????????????????????????????????????
   4. ? ??
????????????????????????????????????????? */
.ub-board .ub-input,
.ub-board .ub-select,
.ub-board .ub-textarea {
	display: block;
	width: 100%;
	padding: 0.5625rem 0.875rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--t-base);
	background: var(--s-card);
	border: 1.5px solid var(--b-default);
	border-radius: var(--r-sm);
	transition:
		border-color var(--dur-fast) var(--ease),
		box-shadow var(--dur-fast) var(--ease);
}
.ub-board .ub-input:hover,
.ub-board .ub-select:hover,
.ub-board .ub-textarea:hover {
	border-color: var(--b-strong);
}
.ub-board .ub-input:focus,
.ub-board .ub-select:focus,
.ub-board .ub-textarea:focus {
	border-color: var(--c-primary);
	outline: 0;
	box-shadow: 0 0 0 3px rgb(79 70 229 / .12);
}
.ub-board .ub-input::placeholder,
.ub-board .ub-textarea::placeholder { color: var(--t-subtle); }
.ub-board .ub-select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.8rem center;
	padding-right: 2.25rem;
}
.ub-board .ub-textarea { resize: vertical; min-height: 110px; }

/* input-group */
.ub-board .ub-input-group {
	display: flex;
	align-items: stretch;
	border: 1.5px solid var(--b-default);
	border-radius: var(--r-sm);
	overflow: hidden;
	transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.ub-board .ub-input-group:focus-within {
	border-color: var(--c-primary);
	box-shadow: 0 0 0 3px rgb(79 70 229 / .12);
}
.ub-board .ub-input-group .ub-input {
	border: 0; border-radius: 0; flex: 1; min-width: 0;
	box-shadow: none !important;
}
.ub-board .ub-input-group .ub-btn {
	border: 0; border-radius: 0; flex-shrink: 0;
	align-self: flex-end;
	min-width: 72px;
	padding: var(--sp-3) var(--sp-4);
	font-size: 0.875rem;
}
.ub-board .ub-input-group .ub-textarea {
	border: 0; border-radius: 0; flex: 1; min-width: 0;
	box-shadow: none !important;
	min-height: 90px;
	padding: var(--sp-3) var(--sp-4);
	resize: none;
}

.ub-board .ub-input-group-text {
	display: flex; align-items: center;
	padding: 0.5rem 0.75rem;
	background: var(--s-hover);
	color: var(--t-muted);
	font-size: 0.875rem;
	border-right: 1.5px solid var(--b-default);
}

/* ??/??? */
.ub-board .ub-check {
	display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer;
}
.ub-board .ub-check input { width: 1.0625rem; height: 1.0625rem; accent-color: var(--c-primary); }
.ub-board .ub-check-inline { display: inline-flex; margin-right: 1rem; }

/* ? ???? */
.ub-board .ub-label { display: block; margin-bottom: var(--sp-2); font-weight: 500; color: var(--t-medium); }
.ub-board .ub-field { margin-bottom: var(--sp-4); }
.ub-board .ub-field:last-child { margin-bottom: 0; }
.ub-board .ub-form-row { display: flex; flex-wrap: wrap; margin: 0 calc(var(--sp-1) * -1); margin-bottom:20px; }
.ub-board .ub-form-row > * { padding: 0 var(--sp-1); }
.ub-board .ub-form-plain { padding-top: var(--sp-1); padding-bottom: 0; }
/* write form ub-form-plain padding: handled per-context below */

/* ???? ???/?? (??: flexbox, #bo_w ???? Grid? ??????) */
.ub-board .ub-form-row--write {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}
.ub-board .ub-form-label-col {
	flex: 0 0 90px;
	max-width: 90px;
	padding-right: var(--sp-2);
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--t-medium);
}
.ub-board .ub-form-label-col label { margin-bottom: 0; font-weight: 600; color: var(--t-medium); font-size: 0.875rem; }
.ub-board .ub-form-body-col {
	flex: 1;
	min-width: 0;
}
.ub-board .ub-form-row--write .ub-form-body-col     { flex: 1; min-width: 0; max-width: none; }
.ub-board .ub-form-row--write .ub-form-body-col-full { flex: 1; min-width: 0; max-width: none; }


/* ?????????????????????????????????????????
   5. ?? / ??
????????????????????????????????????????? */
.ub-board .ub-card {
	background: var(--s-card);
	border: 1px solid var(--b-default);
	border-radius: var(--r-md);
	box-shadow: var(--sh-sm);
	overflow: hidden;
}
.ub-board .ub-card--flat {
	box-shadow: none;
}

/* ?????????????????????????????????????????
   6. ??? (???????)
????????????????????????????????????????? */
.ub-board .ub-list {
	list-style: none; margin: 0; padding: 0;
	background: var(--s-card);
	border: 1px solid var(--b-default);
	border-radius: var(--r-md);
	box-shadow: var(--sh-sm);
	overflow: hidden;
}
.ub-board .ub-list-item {
	padding: var(--sp-4) var(--sp-6);
	border-bottom: 1px solid var(--b-subtle);
	background: var(--s-card);
}
.ub-board .ub-list-item:last-child { border-bottom: 0; }
.ub-board .ub-list-item--first { border-top: 0; }
.ub-board .ub-list-item--header { background: var(--s-hover); font-weight: 600; }

.ub-board .ub-write-list .ub-list-item { padding: var(--sp-4) var(--sp-6); }


/* ?????????????????????????????????????????
   7. ??? ?? ? Premium Flat List
   Inspired by Linear / Vercel dashboard UI
????????????????????????????????????????? */

/* ??: ?? ??? ?? ??? (2px) */
.ub-board .ublist-bar { height: 2px; }

/* ?? ?? ?? ?? */
.ub-board .ublist-head {
	display: flex;
	align-items: center;
	height: 52px;
	padding: 0 24px;
	background: #f8fafc;
	border-bottom: 1px solid rgba(15,23,42,.06);
	gap: 0;
}
/* ?? ubr__body ? ?? ?? */
.ub-board .ublist-head .ubr__body {
	flex-direction: row;
	align-items: center;
	gap: 8px;
}
.ub-board .ublist-head .ubr__no,
.ub-board .ublist-head .ubr__body span,
.ub-board .ublist-head .ubr__author,
.ub-board .ublist-head .ubr__date,
.ub-board .ublist-head .ubr__hit,
.ub-board .ublist-head .ubr__good,
.ub-board .ublist-head .ubr__nogood {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #8898aa;
}
.ub-board .ublist-head .ubr__date a,
.ub-board .ublist-head .ubr__hit a,
.ub-board .ublist-head .ubr__good a,
.ub-board .ublist-head .ubr__nogood a {
	color: inherit; text-decoration: none;
	transition: color 120ms ease;
}
.ub-board .ublist-head .ubr__date a:hover,
.ub-board .ublist-head .ubr__hit a:hover { color: var(--c-primary); }
/* ?? head ?? ????? ??? ?? ???? */
.ub-board .ublist-head[class*="ub-head-"] {
	background: #f8fafc !important;
	color: #94a3b8 !important;
}

/* ?? ?? ul ?? */
.ub-board .ublist-body { list-style: none; margin: 0; padding: 0; }

/* ?? ? (?? ???) ?? */
.ub-board .ubr {
	display: flex;
	align-items: center;
	padding: 0 24px;
	height: 58px;
	gap: 0;
	border-bottom: 1px solid rgba(15,23,42,.04);
	position: relative;
	z-index: 0;
	/* ?? ? ??? ?? ??? ?? */
	box-shadow: inset 3px 0 0 transparent;
	transition:
		background 130ms ease,
		box-shadow 130ms ease;
}
.ub-board .ubr:last-child { border-bottom: 0; }

/* ?? ? ?? ??? ?? + ??? ?? shadow */
.ub-board .ubr:hover {
	background: #f8f9ff;
	z-index: 1;
	box-shadow:
		inset 3px 0 0 var(--c-primary),
		0 2px 12px rgba(79,70,229,.07),
		0 1px 4px rgba(15,23,42,.05);
}

/* ?? ? ? ??? ??? ?? + ?? ?? ???? ???? ????? ?? */
.ub-board .ubr--notice {
	background: linear-gradient(to right, #eef2ff 0%, #f6f8ff 55%, #f8faff 100%);
	box-shadow: inset 3px 0 0 #818cf8;  /* ?? ??? ??? ??? */
}
.ub-board .ubr--notice:hover {
	background: linear-gradient(to right, #e0e7ff 0%, #eef2ff 55%, #f5f7ff 100%);
	box-shadow:
		inset 3px 0 0 var(--c-primary),
		0 2px 12px rgba(79,70,229,.09),
		0 1px 4px rgba(15,23,42,.05);
}

/* ??? ? */
.ub-board .ubr--current { background: #f0f0fe; }
.ub-board .ubr--current:hover {
	background: #e8e8fd;
	box-shadow:
		inset 3px 0 0 var(--c-primary),
		0 2px 12px rgba(79,70,229,.07),
		0 1px 4px rgba(15,23,42,.05);
}

/* ? ?? ??? ????? */
@keyframes ubRowIn {
	from { opacity: 0; transform: translateY(6px); }
	to   { opacity: 1; transform: none; }
}
.ub-board .ubr { animation: ubRowIn 240ms ease both; }
.ub-board .ubr:nth-child(1)  { animation-delay:   0ms; }
.ub-board .ubr:nth-child(2)  { animation-delay:  30ms; }
.ub-board .ubr:nth-child(3)  { animation-delay:  60ms; }
.ub-board .ubr:nth-child(4)  { animation-delay:  90ms; }
.ub-board .ubr:nth-child(5)  { animation-delay: 120ms; }
.ub-board .ubr:nth-child(6)  { animation-delay: 150ms; }
.ub-board .ubr:nth-child(7)  { animation-delay: 180ms; }
.ub-board .ubr:nth-child(8)  { animation-delay: 210ms; }
.ub-board .ubr:nth-child(9)  { animation-delay: 240ms; }
.ub-board .ubr:nth-child(10) { animation-delay: 270ms; }

/* ?? ?? ? ?? */
.ub-board .ubr__no {
	flex: 0 0 52px;
	text-align: center;
	font-size: 0.75rem;
	color: #d4dbe4;
	font-variant-numeric: tabular-nums;
	font-weight: 400;
}

/* ?? ?? + ??? ?? ?? */
.ub-board .ubr__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 2px;
}
.ub-board .ubr__title {
	display: flex;
	align-items: center;
	gap: 7px;
	flex-wrap: nowrap;
}
/* ?? + ??? ??
   - flex: 1 ? ?? ?? ?? ??
   - overflow: hidden ?? ? ?? ??? ???? ??
*/
.ub-board .ubr__title-text {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 5px;
	overflow: visible;
}
.ub-board .ubr__link {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #0f172a;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	/* flex: 0 1 auto ? ?? ??? ??, ?? ? ???? ellipsis */
	flex: 0 1 auto;
	min-width: 0;
	transition: color 120ms ease;
	letter-spacing: -0.015em;
	line-height: 1.4;
}
.ub-board .ubr__link:hover  { color: var(--c-primary); }
.ub-board .ubr__link:visited { color: #8892a0; }

/* ?? ? ?? */
.ub-board .ubr__cmt {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 20px; height: 20px; padding: 0 7px;
	font-size: 0.6875rem; font-weight: 700;
	color: #fff;
	background: #f43f5e;
	border-radius: 9999px;
	letter-spacing: 0;
	box-shadow: 0 1px 4px rgba(244,63,94,.4);
	position: relative;
	top: -2px;
	align-self: flex-start;
}

/* ??? ?? (?? ??) */
.ub-board .ubr__mobile-meta {
	display: none;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 0.75rem;
	color: #94a3b8;
	line-height: 1;
}
.ub-board .ubr__sep { color: #e2e8f0; font-size: 0.75rem; }

/* ?? ???? ??? ?? */
.ub-board .ubr__cols {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.ub-board .ubr__author {
	width: 90px;
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #475569;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0 4px;
}
.ub-board .ubr__date {
	width: 96px;
	text-align: center;
	font-size: 0.75rem;
	color: #94a3b8;
	font-variant-numeric: tabular-nums;
}
.ub-board .ubr__hit {
	width: 52px;
	text-align: center;
	font-size: 0.75rem;
	color: #94a3b8;
	font-variant-numeric: tabular-nums;
}
.ub-board .ubr__good {
	width: 48px;
	text-align: center;
	font-size: 0.75rem;
	color: var(--c-primary);
	font-variant-numeric: tabular-nums;
}
.ub-board .ubr__nogood {
	width: 48px;
	text-align: center;
	font-size: 0.75rem;
	color: #94a3b8;
	font-variant-numeric: tabular-nums;
}

/* ?? ??/?? ?? (???? pill) ?? */
.ub-board .ubr__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 3px 10px;
	border-radius: 9999px;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	white-space: nowrap;
	line-height: 1.5;
}
.ub-board .ubr__badge--notice {
	background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
	color: #fff;
	box-shadow:
		0 2px 8px rgba(79,70,229,.40),
		0 0 0 2px rgba(99,102,241,.15);
	/* ???? ???? ????? */
	animation: ubNoticePulse 4s ease-in-out infinite;
	transform-origin: center;
}
/* ???? (lub-dub ? ? ?? ? ??) */
@keyframes ubNoticePulse {
	0%   { transform: scale(1);    box-shadow: 0 2px 8px rgba(79,70,229,.40), 0 0 0 2px rgba(99,102,241,.15); }
	8%   { transform: scale(1.07); box-shadow: 0 3px 12px rgba(79,70,229,.50), 0 0 0 3px rgba(99,102,241,.18); }
	16%  { transform: scale(1);    box-shadow: 0 2px 8px rgba(79,70,229,.40), 0 0 0 2px rgba(99,102,241,.15); }
	24%  { transform: scale(1.05); box-shadow: 0 2px 10px rgba(79,70,229,.45), 0 0 0 3px rgba(99,102,241,.16); }
	34%  { transform: scale(1);    box-shadow: 0 2px 8px rgba(79,70,229,.40), 0 0 0 2px rgba(99,102,241,.15); }
	100% { transform: scale(1);    box-shadow: 0 2px 8px rgba(79,70,229,.40), 0 0 0 2px rgba(99,102,241,.15); }
}
.ub-board .ubr__badge--current {
	background: #eef2ff;
	color: #4f46e5;
	border: 1px solid #c7d2fe;
	font-size: 0.6875rem;
}

/* ?? ?? ??? ??? (Font Awesome ??, GIF ???) ?? */
.ub-board .ubr__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 0.6875rem;
	font-weight: 800;
	line-height: 1;
}
/* ?? */
.ub-board .ubr__icon--secret {
	color: #94a3b8;
	font-size: 0.75rem;
}
/* ?? */
.ub-board .ubr__icon--reply {
	color: #94a3b8;
	font-size: 0.6875rem;
}
/* ???? (?? ?? ??) */
.ub-board .ubr__icon--file {
	color: #6366f1;
	font-size: 0.75rem;
}
/* HOT */
.ub-board .ubr__icon--hot {
	color: #fff;
	background: linear-gradient(135deg, #f43f5e, #e11d48);
	padding: 2px 6px;
	border-radius: 9999px;
	letter-spacing: 0.06em;
	box-shadow: 0 1px 4px rgba(244,63,94,.35);
}
/* NEW */
.ub-board .ubr__icon--new {
	color: #fff;
	background: linear-gradient(135deg, #6366f1, #4f46e5);
	padding: 2px 6px;
	border-radius: 9999px;
	box-shadow: 0 1px 4px rgba(79,70,229,.35);
}

/* ??? ?? */
.ub-board .count-plus.orangered {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 18px; height: 18px; padding: 0 5px;
	font-size: 0.5625rem; font-weight: 800;
	color: #f43f5e; background: rgba(244,63,94,.08);
	border-radius: 9999px; margin-left: 4px; vertical-align: middle;
}
.ub-board .orangered { color: #f43f5e; }

/* ?? ? ??? ?? */
.ub-board .ublist-empty {
	padding: 4rem 1.5rem;
	text-align: center;
	font-size: 0.9375rem;
	color: #94a3b8;
}
.ub-board .ublist-empty .fa {
	font-size: 2rem;
	display: block;
	margin-bottom: .75rem;
	opacity: .4;
}
.ub-board .ublist-empty p {
	margin: 0 0 .4rem;
	font-size: .95rem;
	color: #64748b;
}
.ub-board .ublist-empty small {
	font-size: .8rem;
	color: #b0bec5;
	display: block;
	margin-bottom: 20px;
}
.ub-board .ublist-empty__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 8px;
	padding: 9px 22px;
	border-radius: 99px;
	border: 1.5px solid #e2e8f0;
	background: #fff;
	color: #4f46e5;
	font-size: .84rem;
	font-weight: 700;
	text-decoration: none;
	transition: background .18s, border-color .18s, box-shadow .18s, transform .18s;
	box-shadow: 0 2px 8px rgba(99,102,241,.08);
}
.ub-board .ublist-empty__back:hover {
	background: #eef2ff;
	border-color: #a5b4fc;
	box-shadow: 0 4px 14px rgba(99,102,241,.18);
	transform: translateY(-2px);
}

/* ?? ?? ?? ?? (ublist-bar ??, ublist-head? ?? ??) ?? */
.ub-board .ub-head-primary   { background: none; color: inherit; }
.ub-board .ub-head-secondary { background: none; color: inherit; }
.ub-board .ub-head-success   { background: none; color: inherit; }
.ub-board .ub-head-danger    { background: none; color: inherit; }
.ub-board .ub-head-warning   { background: none; color: inherit; }
.ub-board .ub-head-info      { background: none; color: inherit; }
.ub-board .ub-head-dark      { background: none; color: inherit; }
.ub-board .ub-head-light     { background: none; color: inherit; }
/* ublist-bar? ?? ?? */
.ub-board .ub-bar-primary   { box-shadow: 0 2px 8px rgba(15, 23, 42, .06); }
.ub-board .ub-bar-secondary { background: #475569; }
.ub-board .ub-bar-success   { background: #10b981; }
.ub-board .ub-bar-danger    { background: #ef4444; }
.ub-board .ub-bar-warning   { background: #f59e0b; }
.ub-board .ub-bar-info      { background: #0ea5e9; }
.ub-board .ub-bar-dark      { background: #0f172a; }
.ub-board .ub-bar-light     { background: #e2e8f0; }

/* na-bar (?? ???) */
.ub-board .na-bar { color: #cbd5e1; margin: 0 6px; }

/* ??? display:table ?? (view.skin.php ??? ???) ??? */
.ub-board .ub-table       { display: table; width: 100%; border-collapse: collapse; }
.ub-board ul.ub-table     { list-style: none; margin: 0; padding: 0; }
.ub-board .ub-table-row   { display: table-row; }
.ub-board .ub-table-cell  { display: table-cell; vertical-align: middle; padding: var(--sp-3) var(--sp-4); }
.ub-board .ub-d-none       { display: none !important; }
.ub-board .ub-nw-6         { width: 7%; }

/* na-item ?? (view ????? ??) */
.ub-board .na-subject { color: var(--t-base); font-weight: 500; transition: color 120ms ease; }
.ub-board .na-subject:hover { color: var(--c-primary); }
.ub-board .na-title { line-height: 1.5; }
.ub-board .na-item { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ub-board .na-info { margin-left: 4px; }


/* ?????????????????????????????????????????
   8. ?? ?? / ??
????????????????????????????????????????? */
.ub-board .ub-search-box {
	background: var(--s-card);
	border: 1px solid var(--b-default);
	border-radius: var(--r-md);
	box-shadow: var(--sh-sm);
	padding: var(--sp-5);
	margin-bottom: var(--sp-4);
}
.ub-board .ub-alert {
	padding: var(--sp-5);
	border-radius: var(--r-md);
	text-align: center;
}
.ub-board .ub-alert--light {
	background: var(--s-hover);
	border: 1px solid var(--b-default);
}


/* ?????????????????????????????????????????
   9. ????
????????????????????????????????????????? */
.ub-board .ub-dropdown { position: relative; display: inline-block; }
.ub-board .ub-dropdown__menu {
	position: absolute;
	top: calc(100% + 6px);
	right: 0;
	z-index: 200;
	min-width: 100%;
	padding: 4px;
	background: var(--s-card);
	border: 1px solid rgba(15,23,42,.09);
	border-radius: var(--r-md);
	box-shadow:
		0 4px 6px -1px rgba(15,23,42,.07),
		0 10px 28px -4px rgba(15,23,42,.1);
	display: none;
	transform-origin: top right;
	animation: ubDropIn var(--dur-base) var(--ease);
}
.ub-board .ub-dropdown.is-open .ub-dropdown__menu { display: block; }
/* ???? ?? ???? ? ?? ?? */
.ub-board .ub-dropdown__menu .ub-btn-group--vertical {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	gap: 2px;
}
/* ???? ?? ?? ? ??? */
.ub-board .ub-dropdown__menu .ub-btn {
	width: 100%;
	justify-content: flex-start;
	border-radius: var(--r-xs);
	padding: 0.4rem 0.75rem;
	font-size: 0.8125rem;
	font-weight: 500;
	height: auto;
	line-height: 1.5;
	gap: 0.5em;
}
.ub-board .ub-dropdown__menu .ub-btn:hover { background: var(--s-active); color: var(--c-primary); }
/* ??? */
.ub-board .ub-dropdown__divider {
	height: 1px;
	background: rgba(15,23,42,.06);
	margin: 3px 6px;
}

@keyframes ubDropIn {
	from { opacity: 0; transform: scale(.96) translateY(-6px); }
	to   { opacity: 1; transform: none; }
}


/* ?????????????????????????????????????????
   10. ?? (??? ?)
????????????????????????????????????????? */
.ub-board .ub-collapse { display: none; overflow: hidden; }
.ub-board .ub-collapse.is-open { display: block; }

/* ??????????????????????????????????????????????????
   ??? ? ????
   JS(requestAnimationFrame)? ?????? ?? ??.
   CSS? ???????? ??? ??.
???????????????????????????????????????????????????? */
.ub-board #bo_search {
	display: flex !important;  /* .ub-collapse { display:none } ??? */
	position: fixed;
	inset: 0;
	z-index: 9000;
	align-items: flex-end;
	justify-content: center;
	padding: 0;
	/* ??(??) ?? ? JS? ? ? inline style? ?? */
	background: transparent;
	pointer-events: none;
	animation: none !important;
}
/* ?? ?? ??? ? ?????? JS inline style? */
.ub-board #bo_search .ub-search-box {
	position: relative;
	background: #ffffff;
	border: none;
	border-radius: 24px 24px 0 0;
	padding: 10px 32px 44px;
	box-shadow:
		0 -4px 24px rgba(15,23,42,.10),
		0 -1px 6px rgba(15,23,42,.06);
	margin: 0;
	max-width: 720px;
	width: 100%;
	/* ?? ??: ??? ?? (JS? transition?? ??) */
	transform: translateY(110vh);
}
/* ??? ?? ?? */
.ub-board #bo_search .ub-search-box::before {
	content: '';
	display: block;
	width: 40px;
	height: 4px;
	background: #e2e8f0;
	border-radius: 2px;
	margin: 0 auto 20px;
}
/* ?? ?? */
.ub-board .ub-search-modal-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	font-size: 1.0625rem;
	font-weight: 700;
	color: #0f172a;
	letter-spacing: -0.02em;
}
.ub-board .ub-search-modal-icon {
	color: #4f46e5;
	flex-shrink: 0;
}
/* ?? ?? */
.ub-board .ub-search-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 34px;
	height: 34px;
	border: none;
	background: #f1f5f9;
	color: #64748b;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 120ms ease, color 120ms ease, transform 120ms ease;
	line-height: 1;
}
.ub-board .ub-search-close:hover {
	background: #e2e8f0;
	color: #0f172a;
	transform: rotate(90deg);
}


/* ?????????????????????????????????????????
   10-2. ???? iframe ??
????????????????????????????????????????? */
.ub-setup-modal {
	display: none;          /* JS? flex ? ?? */
	position: fixed;
	inset: 0;
	z-index: 9200;
	align-items: center;
	justify-content: center;
	padding: 24px 16px;
}
/* ?? ???? ? ???? CSS?, ????? JS inline style ? ?? */
.ub-setup-modal__backdrop {
	position: fixed;
	inset: 0;
	background: rgba(10, 16, 36, 0.55);
	opacity: 0;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}
/* ????? ?? ? ???? CSS?, ????? JS inline style ? ?? */
.ub-setup-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 760px;
	height: calc(100vh - 100px);
	max-height: 720px;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 28px 72px rgba(10, 16, 36, 0.28);
	overflow: hidden; /* border-radius ?? + ?? iframe ??? */
	opacity: 0;
}
/* ?? ?? ? ????? ?? ???? ?? (naRIya ?? ? ???) */
.ub-setup-modal__close {
	position: absolute;
	top: 6px;
	right: 28px;
	z-index: 20;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: none;
	background: rgba(30, 41, 59, 0.80);
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,.4);
	transition: background 0.15s ease, transform 0.15s ease;
	flex-shrink: 0;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.ub-setup-modal__close:hover {
	background: #ef4444;
	transform: scale(1.12);
}
/* iframe ?? */
.ub-setup-modal__body {
	flex: 1 1 auto;
	min-height: 0;
	overflow: hidden;
	position: relative;
}
.ub-setup-modal__body iframe {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0; left: 0;
	border: none;
	min-height: 540px;
}
@media (max-width: 575px) {
	.ub-setup-modal { padding: 12px 0 0; align-items: flex-end; }
	.ub-setup-modal__dialog {
		max-width: 100%;
		max-height: calc(100vh - 56px);
		border-radius: 20px 20px 0 0;
	}
	.ub-setup-modal__body iframe { min-height: 360px; }
}

/* ?????????????????????????????????????????
   11. ??
????????????????????????????????????????? */
.ub-board .ub-modal {
	position: fixed; inset: 0; z-index: 1050;
	display: none; align-items: center; justify-content: center;
	padding: var(--sp-4);
	background: rgb(15 23 42 / .5);
	backdrop-filter: blur(4px);
}
.ub-board .ub-modal.is-open { display: flex; }
.ub-board .ub-modal__dialog {
	width: 100%; max-width: 380px;
	background: var(--s-card);
	border-radius: var(--r-xl);
	box-shadow: var(--sh-lg);
	overflow: hidden;
	animation: ubModalIn var(--dur-slow) var(--ease);
}
.ub-board .ub-modal__header {
	display: flex; align-items: center; justify-content: space-between;
	padding: var(--sp-4) var(--sp-5);
	background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-h) 100%);
	color: #fff;
}
.ub-board .ub-modal__header h5 { margin: 0; font-size: 0.9375rem; font-weight: 600; }
.ub-board .ub-modal__close {
	background: rgb(255 255 255 / .2); border: 0; color: #fff;
	width: 28px; height: 28px; border-radius: var(--r-full);
	font-size: 1.125rem; line-height: 1; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: background var(--dur-fast) var(--ease);
}
.ub-board .ub-modal__close:hover { background: rgb(255 255 255 / .35); }
.ub-board .ub-modal__body { padding: var(--sp-5); }

@keyframes ubModalIn {
	from { opacity: 0; transform: translateY(16px) scale(.97); }
	to   { opacity: 1; transform: none; }
}


/* ?????????????????????????????????????????
   12. ?????? ? Premium 3-section Card
????????????????????????????????????????? */

/* ?? */
.ub-board .ub-pgn-wrap {
	padding: 8px 0 8px;
}

/* ?? ?? ???? */
.ub-board .ub-pgn-card {
	display: flex;
	align-items: stretch;
	background: #ffffff;
	border: 1px solid rgba(15,23,42,.08);
	border-radius: 10px;
	overflow: hidden;
	box-shadow:
		0 2px 8px -2px rgba(15,23,42,.06),
		0 1px 2px rgba(15,23,42,.04);
}

/* ?? / ?? ?? */
.ub-board .ub-pgn-nav {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 0 22px;
	min-height: 52px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #475569;
	text-decoration: none;
	white-space: nowrap;
	transition: background 130ms ease, color 130ms ease;
	cursor: pointer;
}
.ub-board a.ub-pgn-nav:hover {
	background: #f0f0fe;
	color: #4f46e5;
}
.ub-board .ub-pgn-nav--disabled {
	color: #cbd5e1;
	cursor: default;
}
.ub-board .ub-pgn-nav svg {
	flex-shrink: 0;
	transition: transform 130ms ease;
}
.ub-board .ub-pgn-prev a.ub-pgn-nav:hover svg { transform: translateX(-2px); }
.ub-board .ub-pgn-next a.ub-pgn-nav:hover svg { transform: translateX(2px); }

/* ??? ?? ?? (???) */
.ub-board .ub-pgn-pages {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-left: 1px solid rgba(15,23,42,.06);
	border-right: 1px solid rgba(15,23,42,.06);
	padding: 8px 10px;
	min-width: 0;
}

/* ??? ?? ?? */
.ub-board .ub-pgn-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ub-board .ub-pgn-list .page-item { display: inline-block; }

.ub-board .ub-pgn-list .page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 8px;
	font-size: 0.875rem;
	font-weight: 500;
	color: #64748b;
	text-decoration: none;
	border-radius: 8px;
	background: transparent;
	border: none;
	transition: background 120ms ease, color 120ms ease;
}
.ub-board .ub-pgn-list .page-link:hover {
	background: #eef2ff;
	color: #4f46e5;
}
.ub-board .ub-pgn-list .page-item.active .page-link {
	background: #4f46e5;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 2px 10px rgba(79,70,229,.32);
}

/* ??? ??? ?? (na_paging ??) */
.ub-board .ub-pagination,
.ub-board .pagination {
	display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
	gap: 4px; list-style: none; margin: 20px 0 4px; padding: 0;
}
.ub-board .ub-pagination__item,
.ub-board .pagination .page-item { display: inline-block; }
.ub-board .ub-pagination__link,
.ub-board .pagination .page-link {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 36px; height: 36px; padding: 0 8px;
	font-size: 0.875rem; font-weight: 500;
	color: #64748b; text-decoration: none;
	border: 1px solid rgba(15,23,42,.1); border-radius: 10px;
	background: #ffffff; transition: all 120ms ease;
}
.ub-board .ub-pagination__link:hover,
.ub-board .pagination .page-link:hover { background: #f0f0fe; border-color: #c7d2fe; color: #4f46e5; }
.ub-board .ub-pagination__link.is-active,
.ub-board .pagination .page-item.active .page-link {
	background: #4f46e5; border-color: #4f46e5; color: #fff;
	font-weight: 700; box-shadow: 0 2px 8px rgba(79,70,229,.35);
}


/* ?????????????????????????????????????????
   13. ???? ?
????????????????????????????????????????? */
.ub-board .ub-cate {
	margin-bottom: var(--sp-4);
}
.ub-board .ub-cate__wrap { display: flex; align-items: center; gap: var(--sp-2); }
.ub-board .ub-cate__list { flex: 1; overflow: hidden; }
.ub-board .ub-cate__ul {
	display: flex; flex-wrap: nowrap;
	list-style: none; margin: 0; padding: var(--sp-1);
	background: var(--s-card);
	border: 1px solid var(--b-default);
	border-radius: var(--r-md);
	box-shadow: var(--sh-xs);
	overflow-x: auto; gap: var(--sp-1);
}
.ub-board .ub-cate__ul::-webkit-scrollbar { height: 0; }
.ub-board .ub-cate__ul li { flex-shrink: 0; }
.ub-board .ub-cate__ul a {
	display: block;
	padding: var(--sp-2) var(--sp-4);
	font-size: 0.875rem; font-weight: 500;
	color: var(--t-muted);
	border-radius: var(--r-sm);
	text-decoration: none;
	transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
	white-space: nowrap;
}
.ub-board .ub-cate__ul li.active a {
	background: var(--c-primary);
	color: #fff;
	box-shadow: 0 2px 8px rgb(79 70 229 / .25);
}
.ub-board .ub-cate__ul a:hover:not(.active a) { background: var(--s-active); color: var(--c-primary); }
.ub-board .ub-cate__nav { display: flex; }
.ub-board .ub-cate__nav a {
	display: flex; align-items: center; justify-content: center;
	width: 36px; height: 36px;
	background: var(--s-card);
	border: 1px solid var(--b-default);
	border-radius: var(--r-sm);
	color: var(--t-muted); text-decoration: none;
	transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.ub-board .ub-cate__nav a:hover { background: var(--s-active); color: var(--c-primary); }
.ub-board .ub-cate hr { margin: var(--sp-3) 0; border: 0; border-top: 1px solid var(--b-subtle); }


/* ?????????????????????????????????????????
   14. ??? ??
????????????????????????????????????????? */
/* ??? ??? ?? ??? */
.ub-board #bo_v {
	background: var(--s-card);
	border-radius: var(--r-lg);
	overflow: visible;
}

/* ?? */
.ub-board #bo_v_title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.025em;
	color: var(--t-base);
	margin: 0 0 var(--sp-3);
	word-break: break-word;
}

/* ?? ?? ? */
.ub-board #bo_v_info { font-size: 0.875rem; }
.ub-board #bo_v_info .ub-bg-light { background: var(--s-hover); }

/* ?? */
.ub-board #bo_v_con { min-height: 200px; word-break: break-all; overflow: hidden; }
.ub-board #bo_v_con img { max-width: 100%; height: auto; border-radius: var(--r-sm); }
.ub-board #bo_v_img { width: 100%; text-align: center; overflow: hidden; }
.ub-board #bo_v_img:after { content: ""; display: block; clear: both; }
.ub-board #bo_v_img a.view_image { display: block; }
.ub-board #bo_v_img img { margin-bottom: var(--sp-4); border-radius: var(--r-sm); }
.ub-board #bo_v_sns_icon { margin: -5px auto; }
.ub-board #bo_v_sns_icon img { width: 44px; height: 44px; object-fit: cover; border-radius: 50%; margin: 5px; box-shadow: var(--sh-sm); }

/* ??/??/???/SNS ?? ?? */
.ub-board #bo_v_btn_group {
	display: flex !important;
	justify-content: center;
	align-items: center;
	padding: var(--sp-5) var(--sp-6);
	border-top: 1px solid rgb(226 232 240 / .5);
	background: var(--s-hover);
	gap: var(--sp-2);
}
.ub-board #bo_v_btn_group .ub-btn-group {
	display: flex;
	gap: var(--sp-2);
	background: none;
	padding: 0;
	border: none;
	border-radius: 0;
}
.ub-board #bo_v_btn_group .ub-btn--basic {
	display: inline-flex;
	align-items: center;
	gap: var(--sp-2);
	padding: 9px 20px;
	min-width: 88px;
	border: 1.5px solid var(--b-default);
	border-radius: var(--r-full);
	background: var(--s-card);
	color: var(--t-muted);
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all var(--dur-fast) var(--ease);
}
.ub-board #bo_v_btn_group .ub-btn--basic:hover {
	border-color: var(--c-primary);
	color: var(--c-primary);
	background: var(--c-primary-light);
	transform: translateY(-1px);
	box-shadow: var(--sh-sm);
}
.ub-board #bo_v_btn_group .ub-btn--basic b,
.ub-board #bo_v_btn_group .ub-btn--basic .ub-accent {
	font-weight: 700;
	color: var(--c-accent);
}

/* ?? ?? ?? */
.ub-board .ub-data-list .ub-table-cell {
	border-bottom: 1px solid rgb(226 232 240 / .4);
	padding: 12px 20px;
}
.ub-board .ub-data-list .ub-table-cell:first-child {
	font-size: 0.75rem; font-weight: 600; letter-spacing: 0.03em;
	color: var(--t-subtle); white-space: nowrap;
	background: var(--s-hover);
	border-right: 1px solid rgb(226 232 240 / .4);
}
.ub-board .ub-data-list .ub-table-cell a {
	color: var(--t-medium); text-decoration: none;
	transition: color var(--dur-fast) var(--ease);
	font-size: 0.875rem;
}
.ub-board .ub-data-list .ub-table-cell a:hover { color: var(--c-primary); }
.ub-board .ub-data-list .ub-table-row:last-child .ub-table-cell { border-bottom: 0; }

/* ??/?? ? hover */
.ub-board #bo_v_data .ub-table-row:hover .ub-table-cell { background: var(--s-active); }


/* ?????????????????????????????????????????
   15. ??
????????????????????????????????????????? */
.ub-board #viewcomment { margin-top: var(--sp-2); }
.ub-board #bo_vc { margin-bottom: 20px; }

/* ?? ?? ? */
.ub-board .uvc-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px 14px;
	margin-bottom: 14px;
	border-bottom: 1px solid #e8edf3;
}
.ub-board .uvc-header__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .95rem;
	font-weight: 700;
	color: #1e293b;
}
.ub-board .uvc-header__title .fa {
	color: #6366f1;
	font-size: 1rem;
}
.ub-board .uvc-header__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	background: #6366f1;
	color: #fff;
	font-size: .75rem;
	font-weight: 700;
	border-radius: 20px;
	line-height: 1;
}
.ub-board .uvc-header__page {
	font-size: .8rem;
	font-weight: 400;
	color: #94a3b8;
}

/* ??? ?? ??? SVG */
.ub-board .cmt-article--reply { position: relative; }
.ub-board .cmt-reply-arrow {
	position: absolute;
	top: 2px;
	left: -24px;
	width: 20px;
	height: 28px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	opacity: .9;
	z-index: 1;
}

/* ?? article ?? */
.ub-board .cmt-article { margin-bottom: 10px; }

/* ?? ?? ?? */
.ub-board .cmt-wrap {
	background: #fff;
	border: 1px solid #e8edf3;
	border-radius: 10px;
	box-shadow: 0 1px 4px rgba(15,23,42,.05);
	overflow: hidden;
	transition: box-shadow .18s ease, border-color .18s ease;
}
.ub-board .cmt-wrap:hover {
	box-shadow: 0 3px 10px rgba(15,23,42,.09);
	border-color: #cbd5e1;
}

/* ??? ?? ? ?? ?? ?? + ?? ?? */
.ub-board .cmt-article--reply .cmt-wrap {
	background: #f8f7ff;
	border-color: #c7d2fe;
	border-left: 3px solid #6366f1;
}
.ub-board .cmt-article--reply .cmt-wrap:hover {
	border-color: #a5b4fc;
	border-left-color: #4f46e5;
}

/* ?? ??? */
.ub-board .cmt-wrap header .ub-bg-light {
	background: #f8fafc !important;
	border-top: 0 !important;
	border-bottom: 1px solid #f1f5f9 !important;
}
.ub-board .cmt-article--reply .cmt-wrap header .ub-bg-light {
	background: #ede9fe !important;
	border-bottom-color: #ddd6fe !important;
}
.ub-board .by-writer .cmt-wrap header .ub-bg-light {
	background: rgb(244 63 94 / .05) !important;
	border-top: 0 !important;
}
.ub-board .by-writer {
	background: rgb(244 63 94 / .04) !important;
	border-top: 2px solid var(--c-accent) !important;
}

/* ?? ?? ? ??? */
.ub-board .cmt-content {
	word-break: break-all;
	overflow: hidden;
	padding: 10px 14px 8px;
	font-size: .9rem;
	line-height: 1.7;
	color: #1e293b;
}
.ub-board .cmt-content img { max-width: 100%; height: auto; border-radius: var(--r-xs); }

/* ?? ?? (??/??/??) ? ??? */
.ub-board .cmt-btn ul { list-style: none; margin: 0; padding: 4px 14px 8px; }
.ub-board .cmt-btn ul > li { float: left; font-size: 0.8rem; padding: 0 10px 0 0; }
.ub-board .cmt-btn ul > li::before {
	content: "?"; float: left; color: var(--b-strong);
	margin-right: 10px; display: none;
}
.ub-board .cmt-btn ul > li + li::before { display: block; }
.ub-board .cmt-btn ul > li:last-child { padding-right: 0; }
.ub-board .cmt-btn ul > li.no-bar::before { display: none; }
.ub-board .cmt-btn ul > li > a {
	float: left; color: #94a3b8; white-space: nowrap; text-decoration: none;
	font-weight: 500;
	transition: color .15s;
}
.ub-board .cmt-btn ul > li > a:hover { color: #6366f1; }

/* ?? ??/?? */
.ub-board .cmt-btn .na-cgood,
.ub-board .cmt-btn .na-cnogood {
	display: inline-flex; align-items: center; gap: 4px;
	color: var(--t-muted);
	transition: color var(--dur-fast) var(--ease);
}
.ub-board .cmt-btn .na-cgood:hover { color: var(--c-primary); }
.ub-board .cmt-btn .na-cnogood:hover { color: var(--c-danger); }

/* ?? ??? */
/* ?? textarea ? ???? ??? ???/??? JS ? rows ??
   style.height ? ???? ??? ? ???.
   ? height ? !important ? ??? ??? style.height ? ?????? ?? ?? ?? */
.ub-board #fviewcomment #wr_content {
	flex: none !important;   /* flex ????? ??? ????? ??? */
	height: auto;            /* !important ?? ? JS inline style ? ??? ? ?? */
	resize: none;
}
.ub-board .ub-cmt-box {
	background: var(--s-card);
	border: 1px solid var(--b-default);
	border-radius: var(--r-md);
	box-shadow: var(--sh-sm);
	padding: 20px;
	margin-top: var(--sp-4);
}
/* ?? textarea + ?? ?? ???? */
.ub-board .ub-cmt-box .ub-input-group {
	display: flex;
	flex-direction: column;
	border: 1.5px solid var(--b-default);
	border-radius: var(--r-sm);
	overflow: hidden;
}
.ub-board .ub-cmt-box .ub-input-group .ub-textarea {
	border: 0;
	border-radius: 0;
	/* flex: 1 ?? ? ??? comment_content_resize() ? rows/style.height ?
	   ??? ? flex ????? ??? ????? ??? */
	flex: none;
	align-self: stretch;
	width: 100%;
	min-height: 100px;
	height: auto;
	padding: 14px 16px;
	resize: none;
	box-shadow: none !important;
	font-size: 0.9375rem;
	line-height: 1.7;
}
.ub-board .ub-cmt-box .ub-input-group .ub-btn {
	border: 0;
	border-top: 1px solid rgba(15,23,42,.06);
	border-radius: 0;
	width: 100%;
	height: 44px;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	align-self: auto;
	min-width: unset;
}
.ub-board #bo_vc_opt ol {
	margin: 0; padding: 0; list-style: none;
	background: var(--b-strong); border-radius: var(--r-xs); overflow: hidden;
}
.ub-board #bo_vc_opt ol:after { content: ""; display: block; clear: both; }
.ub-board #bo_vc_opt ol li { float: left; margin: 0; }
.ub-board #bo_vc_send_sns ul { margin: 0; padding: 0; list-style: none; }
.ub-board #bo_vc_send_sns ul:after { content: ""; display: block; clear: both; }
.ub-board #bo_vc_send_sns ul li { float: left; margin: 0 var(--sp-4) 0 0; }
.ub-board #bo_vc_send_sns input { margin: 0 0 0 var(--sp-2); }

/* ????? */
.ub-board .cmt-wrap .fa-gift { color: var(--c-warning); }


/* ?????????????????????????????????????????
   16. ??? ? (#bo_w)
????????????????????????????????????????? */
.ub-board #bo_w {
	background: var(--s-card);
	border: 1px solid var(--b-default);
	border-radius: var(--r-lg);
	box-shadow: var(--sh-sm);
	overflow: visible;
	padding: 0;
}
/* ??? ? ?? list: ?? card ?? #bo_w ?? ?? ?? */
.ub-board #bo_w .ub-list {
	box-shadow: none;
	border: 0;
	border-radius: 0;
	overflow: visible;
	margin-bottom: 0;
}

/* ?? ? ? ? ?? */
.ub-board #bo_w .ub-list-item {
	padding: 14px 24px;
	background: var(--s-card);
	border-bottom: 1px solid var(--b-default);
	overflow: visible;
}
.ub-board #bo_w .ub-list-item:last-of-type {
	border-bottom: 0;
}

/* ?? ??? ? ? ???? ?? */
.ub-board #bo_w .ub-form-row--write {
	display: flex !important;
	flex-wrap: nowrap;
	align-items: stretch;
	width: 100%;
	box-sizing: border-box;
}

/* ??? ?? */
.ub-board #bo_w .ub-form-label-col {
	flex: 0 0 90px;
	max-width: 90px;
	padding: 0;
	display: flex;
	align-items: center;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--t-medium);
	line-height: 1.4;
}

/* ?? ?? (??: ?? ?) ? ??? ?? ?? ?? */
.ub-board #bo_w .ub-form-body-col,
.ub-board #bo_w .ub-form-body-col-full {
	flex: 1;
	min-width: 0;
	max-width: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
}

/* ?? ?? ? ?? ??: ? 100% ?? */
.ub-board #bo_w .ub-form-body-col > .ub-input,
.ub-board #bo_w .ub-form-body-col-full > .ub-input,
.ub-board #bo_w .ub-form-body-col > .ub-select,
.ub-board #bo_w .ub-form-body-col-full > .ub-select {
	width: 100%;
	flex: 1 1 100%;
}

/* ??? ? ?(?????????): ?? ??? block?? ??, ??? ?? */
.ub-board #bo_w .ub-form-row--tall > .ub-form-label-col {
	align-items: flex-start;
	padding-top: 11px;
}
.ub-board #bo_w .ub-form-row--tall > .ub-form-body-col,
.ub-board #bo_w .ub-form-row--tall > .ub-form-body-col-full {
	display: block;
}

/* ub-form-plain: ??? ? ??? ?? ?? */
.ub-board #bo_w .ub-form-plain {
	padding-top: 0;
}

/* ?? ?? ?: JS ?? div? ?? ?? ?? */
.ub-board #variableFiles .ub-px-2 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* ?? ??? / ??????? ? ?? */
.ub-board #bo_w #wr_content {
	margin-bottom: var(--sp-3) !important;
	border-radius: var(--r-sm);
	border: 1px solid var(--b-default);
	padding: 12px 14px;
	font-size: 0.9375rem;
	line-height: 1.7;
	width: 100%;
	box-sizing: border-box;
}

/* ?? btn_write.php ?? (????????????????) ?? */
.ub-board #bo_w .uw-editor-toolbar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 0 4px;
	border-top: 1px solid var(--b-subtle);
	flex-wrap: wrap;
}
/* btn_write.php ? div.btn-group ?? ??? ?? ? Bootstrap ?? ?? ? ??? */
.ub-board #bo_w .uw-editor-toolbar .btn-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 0 !important;
	padding: 0 !important;
}
.ub-board #bo_w .uw-editor-toolbar a,
.ub-board #bo_w .uw-editor-toolbar button,
.ub-board #bo_w .uw-editor-toolbar .btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 38px;
	height: 36px;
	padding: 0 14px;
	border: 1px solid var(--b-default) !important;
	border-radius: var(--r-xs) !important;
	background: var(--s-card) !important;
	color: var(--t-muted) !important;
	font-size: 0.875rem;
	text-decoration: none;
	transition: all var(--dur-fast) var(--ease);
	white-space: nowrap;
	margin: 0 !important;
	float: none !important;
	position: static !important;
}
.ub-board #bo_w .uw-editor-toolbar a:hover,
.ub-board #bo_w .uw-editor-toolbar button:hover,
.ub-board #bo_w .uw-editor-toolbar .btn:hover {
	border-color: var(--c-primary) !important;
	color: var(--c-primary) !important;
	background: var(--c-primary-light) !important;
}

/* ?? ?? ?? ?? ?? ?? */
.ub-board #bo_w .uw-submit-bar {
	display: flex;
	gap: 10px;
	padding: 18px 24px;
	background: var(--s-hover);
	border-top: 1px solid var(--b-default);
	border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.ub-board #bo_w .uw-submit-bar .ub-btn {
	flex: 1;
	height: 48px;
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: var(--r-sm);
}
.ub-board #bo_w .uw-btn-cancel {
	background: #ffffff;
	border-color: var(--b-strong);
	color: var(--t-medium);
}
.ub-board #bo_w .uw-btn-cancel:hover {
	background: var(--s-hover);
	border-color: var(--t-medium);
}
/* legacy selector */
.ub-board #bo_w > .ub-px-3 {
	padding: 18px 24px;
	background: var(--s-hover);
	border-top: 1px solid var(--b-default);
	border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.ub-board #bo_w .ub-btn--lg {
	font-size: 0.9375rem;
	padding: 0.8rem 1.5rem;
	border-radius: var(--r-sm);
	height: 48px;
	font-weight: 600;
}

/* ?? ?? */
.ub-board #variableFiles { width: 100%; }
.ub-board #variableFiles .ub-input { font-size: 0.875rem; }

/* ?? ??? */
.ub-board .ub-table-setup {
	width: 100%; border-collapse: collapse;
	font-size: 0.875rem;
}
.ub-board .ub-table-setup th,
.ub-board .ub-table-setup td {
	padding: var(--sp-3) var(--sp-4);
	border: 1px solid var(--b-default);
	text-align: center; vertical-align: middle;
}
.ub-board .ub-table-setup th {
	background: var(--s-hover);
	font-weight: 600; color: var(--t-medium);
}
.ub-board .ub-table-setup .ub-nw-c1 { width: 20%; }
.ub-board .ub-table-setup .ub-nw-c2 { width: 30%; }


/* ?????????????????????????????????????????
   17. ?? ?? + ?? (?? ???? ???)
????????????????????????????????????????? */

/* ?? ? ?? ?? ?? */
.ub-board #bo_btn_top {
	background: #ffffff;
	border: 1px solid rgba(15,23,42,.08);
	border-bottom-color: rgba(15,23,42,.05);
	border-radius: 10px 10px 0 0;
	box-shadow: 0 2px 8px rgba(15, 23, 42, .06);
	padding: 11px 20px;
	margin-bottom: 0 !important;
	animation: ubFadeUp var(--dur-slow) var(--ease) both;
	position: relative;
	z-index: 12;
}
/* ?? ?? flex ???? */
.ub-board #bo_btn_top .ub-toolbar-inner {
	display: flex;
	align-items: center;
	gap: var(--sp-3);
	width: 100%;
}
.ub-board #bo_btn_top #bo_list_total {
	flex: 1;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--t-muted);
	letter-spacing: -0.01em;
}
.ub-board #bo_btn_top #bo_list_total b {
	color: var(--t-base);
	font-weight: 500;
	font-size: 0.875rem;
}

/* ??? ??? ?? */
.ub-board #bo_btn_top .ub-d-flex-sm {
	display: flex !important;
	align-items: center;
	gap: var(--sp-2);
	width: 100%;
}
.ub-board #bo_btn_top .ub-grow-sm { flex-grow: 1; }
.ub-board #bo_btn_top .ub-px-3   { padding: 0; }
.ub-board #bo_btn_top .ub-d-block-sm { display: none !important; }

/* ?? ?? ?? */
.ub-board #bo_btn_top .ub-toolbar-actions,
.ub-board #bo_btn_top .ub-text-right-sm {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-shrink: 0;
}
.ub-board #bo_btn_top .ub-btn--basic.ub-btn--sm {
	width: 30px;
	height: 30px;
	padding: 0;
	border-radius: var(--r-xs);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--b-default);
	background: var(--s-card);
	color: var(--t-muted);
	font-size: 0.8125rem;
	transition: all var(--dur-fast) var(--ease);
}
.ub-board #bo_btn_top .ub-btn--basic.ub-btn--sm:hover {
	border-color: var(--c-primary);
	color: var(--c-primary);
	background: var(--c-primary-light);
}
.ub-board #bo_btn_top .ub-btn--primary.ub-btn--sm {
	height: 30px;
	padding: 0 13px;
	border-radius: var(--r-xs);
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.8125rem;
	font-weight: 600;
}

/* ?? ?? ? ?? ??? */
.ub-board #bo_list {
	background: #ffffff;
	border: 1px solid rgba(15,23,42,.08);
	border-top: 0;
	border-radius: 0 0 16px 16px;
	/* ?? ?? shadow ?? ? ? hover shadow? ???? overflow: visible */
	box-shadow: none;
	overflow: visible;
	margin-bottom: 12px;
	animation: ubFadeUp var(--dur-slow) var(--ease) both;
	animation-delay: 40ms;
}
/* ??? ? ? ?? ?? ?? ??? ?? */
.ub-board .ublist-body > .ubr:last-child {
	border-radius: 0 0 16px 16px;
	border-bottom: 0;
}
/* ? ??? ? */
.ub-board .ublist-empty { border-radius: 0 0 16px 16px; }

/* ?????????????????????????????????????????
   18-a. ?? ?? ? ?? ?????
????????????????????????????????????????? */

/* ?? ?? */
.ub-board#bo_list_wrap,
.ub-board.ub-mb-4 { margin-bottom: var(--sp-8); }

/* ?? ???? */
/* #bo_v / #bo_w ? animation? ?? fill-mode:both ? ??
   transform:translateY(0) ? ???? stacking context ? ????.
   ???? ??(???????) backdrop ? ? stacking context ?? ???
   popup ? backdrop ?? ??? ??? ????? animation ? ???? ???. */

/* ?? ? ??? ?? ?? */
.ub-board.uv-view-page {
	margin-bottom: var(--sp-8);
}
@keyframes ubFadeUp {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: none; }
}

/* ?? collapse ?? ????? ? #bo_search ? ???? ????? ?? ?? */
.ub-board .ub-collapse.is-open:not(#bo_search) {
	animation: ubSlideDown var(--dur-base) var(--ease);
}
@keyframes ubSlideDown {
	from { opacity: 0; transform: translateY(-8px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ?????????????????????????????????????????
   18-b. ??? ?? ???? (???? ???)
????????????????????????????????????????? */

/* ?? ?? ?? ?? */
.ub-board #bo_v {
	background: #ffffff;
	border: 1px solid #dde4ee;
	border-radius: 14px;
	/* overflow: hidden ?? ? ????? ?? ??? ??? ? */
	overflow: visible;
	margin-bottom: 0;
}
/* ? ?? ?? ? ?? ??? radius */
.ub-board #bo_v > :first-child {
	border-top-left-radius: 13px;
	border-top-right-radius: 13px;
}
/* ??? ?? ? ?? ??? radius */
.ub-board #bo_v > :last-child {
	border-bottom-left-radius: 13px;
	border-bottom-right-radius: 13px;
}

/* ?? ?? ?? ? ? ?? ?? */
.ub-board #bo_v header {
	padding: 28px 28px 22px;
	background: #ffffff;
}
/* ???? ?? */
.ub-board #bo_v header .ub-text-sm.ub-text-muted {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	background: #eef2ff;
	color: #4f46e5;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	margin-bottom: 10px;
}
.ub-board #bo_v_title {
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.4;
	letter-spacing: -0.03em;
	color: #0f172a;
	margin: 0;
	word-break: break-word;
}

/* ?? ?? ?? ?? */
.ub-board #bo_v_info {
	font-size: 0.8125rem;
	color: #64748b;
}
/* uv-* ???? ?? (?? ?? ?? ??) */

/* ?? ?? ?? ?? */
.ub-board #bo_v #bo_v_con {
	padding: 28px;
	line-height: 1.9;
	font-size: 0.9375rem;
	color: #1e293b;
	min-height: 160px;
	background: #ffffff;
	border-top: 1px solid #edf0f5;
	border-bottom: 1px solid #edf0f5;
}

/* ?? ??/??? ?? ?? ?? */
.ub-board #bo_v_btn_group {
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 20px 28px;
	background: #f8fafc;
	border-bottom: 1px solid #edf0f5;
}
.ub-board #bo_v_btn_group .ub-btn-group {
	display: flex;
	gap: 8px;
}
.ub-board #bo_v_btn_group .ub-btn--basic {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 22px;
	min-width: 80px;
	border: 1.5px solid rgba(15,23,42,.1);
	border-radius: 9999px;
	background: #ffffff;
	color: #64748b;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 130ms ease;
	box-shadow: 0 1px 3px rgba(15,23,42,.05);
}
.ub-board #bo_v_btn_group .ub-btn--basic:hover {
	border-color: #6366f1;
	color: #4f46e5;
	background: #eef2ff;
	transform: translateY(-1px);
	box-shadow: 0 3px 8px rgba(79,70,229,.12);
}
.ub-board #bo_v_btn_group .ub-btn--basic b,
.ub-board #bo_v_btn_group .ub-btn--basic .ub-accent {
	font-weight: 700;
	color: var(--c-accent);
}

/* ?? ??? ?? (????? ?) ?? */
.ub-board #bo_v #bo_v_data {
	background: #ffffff;
	border-top: 1px solid #edf0f5;
}

/* ?? ??/?? ? ????? ?? */
.ub-board .ub-data-list .ub-table-row {
	transition: background 120ms ease;
}
.ub-board .ub-data-list .ub-table-cell {
	padding: 12px 20px;
	border-bottom: 1px solid rgba(15,23,42,.05);
	vertical-align: middle;
}
.ub-board .ub-data-list .ub-table-cell:first-child {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #94a3b8;
	white-space: nowrap;
	background: #f8fafc;
	border-right: 1px solid rgba(15,23,42,.05);
	width: 56px;
	text-align: center;
}
.ub-board .ub-data-list .ub-table-cell a {
	color: #334155;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 120ms ease;
}
.ub-board .ub-data-list .ub-table-cell a:hover { color: #4f46e5; }
.ub-board .ub-data-list .ub-table-row:last-child .ub-table-cell { border-bottom: 0; }
.ub-board #bo_v_data .ub-table-row:hover .ub-table-cell {
	background: #f5f7ff;
}
.ub-board #bo_v_data .ub-table-row:hover .ub-table-cell:first-child {
	background: #e4eaf8;
}

/* ?? ?? ??? ? .uv-btn-bar ? ?? ?? */

/* ??? ??? */
.ub-board #bo_v #bo_v_info .fa-eye { margin-right: 3px; color: #94a3b8; }

/* ?? ?? ?? ??? (uv-*) ?? */
.ub-board #bo_v_info { font-size: 0.8125rem; color: #64748b; }

.ub-board .uv-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 13px 28px;
	background: #f8fafc;
	border-top: 1px solid rgba(15,23,42,.08);
	border-bottom: 1px solid rgba(15,23,42,.05);
	gap: 12px;
}
.ub-board .uv-meta-left {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #334155;
}
.ub-board .uv-sep {
	color: rgba(15,23,42,.2);
	font-weight: 400;
}
.ub-board .uv-ip {
	font-size: 0.8rem;
	color: #94a3b8;
	font-weight: 400;
}
.ub-board .uv-meta-right { display: flex; align-items: center; }
.ub-board .uv-date {
	font-size: 0.8125rem;
	color: #94a3b8;
	font-variant-numeric: tabular-nums;
	letter-spacing: 0.01em;
}

.ub-board .uv-stat-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 28px;
	background: #f8fafc;
	border-bottom: 1px solid rgba(15,23,42,.06);
	gap: 12px;
}
.ub-board .uv-stat-left {
	display: flex;
	align-items: center;
	gap: 16px;
}
.ub-board .uv-stat-item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 0.8125rem;
	color: #94a3b8;
}
.ub-board .uv-stat-right {
	display: flex;
	align-items: center;
	gap: 6px;
}
/* ?? ?? ??? */
.ub-board .uv-stat-right .ub-btn--sm {
	height: 30px;
	padding: 0 12px;
	font-size: 0.8rem;
	border-radius: var(--r-xs);
}

/* ?? ??/?? ? ????? (uv-nav-*) ?? */
.ub-board .uv-nav-row {
	transition: background 120ms ease;
}
.ub-board .uv-nav-row:hover .uv-nav-label { background: #eff3fb; }
.ub-board .uv-nav-row:hover .uv-nav-cell  { background: #f8f9ff; }
/* ?? ? (??/??) */
.ub-board .uv-nav-label {
	white-space: nowrap;
	width: 70px;
	text-align: center;
	padding: 13px 10px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #94a3b8;
	background: #f8fafc;
	border-right: 1px solid #edf0f5;
	border-bottom: 1px solid #edf0f5;
	vertical-align: middle;
	line-height: 1.4;
}
.ub-board .uv-nav-label .fa {
	display: block;
	font-size: 0.875rem;
	margin-bottom: 3px;
	color: #cbd5e1;
}
.ub-board .uv-nav-label--prev .fa { color: #818cf8; }
.ub-board .uv-nav-label--next .fa { color: #a5b4fc; }
/* ?? ? */
.ub-board .uv-nav-cell {
	padding: 13px 20px;
	border-bottom: 1px solid #edf0f5;
	vertical-align: middle;
	background: #ffffff;
}
/* ?? flex ?? ? ub-table-cell ??? justify ?? */
.ub-board .uv-nav-cell .uv-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.ub-board .uv-nav-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #334155;
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 120ms ease;
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ub-board .uv-nav-icon {
	color: #94a3b8;
	flex-shrink: 0;
	font-size: 0.8rem;
	transition: color 120ms ease;
}
.ub-board .uv-nav-link:hover { color: #4f46e5; }
.ub-board .uv-nav-link:hover .uv-nav-icon { color: #6366f1; }
.ub-board .uv-nav-date {
	font-size: 0.8rem;
	color: #b0bec5;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	flex-shrink: 0;
}
.ub-board .ub-data-list .uv-nav-row:last-child .uv-nav-label,
.ub-board .ub-data-list .uv-nav-row:last-child .uv-nav-cell {
	border-bottom: 0;
}

/* ?? ?? ??? ??? ?? (?????) ?? */
.ub-board .uv-btn-inline { display: none; }

/* ?? ?? ??? (uv-btn-bar) ?? */
.ub-board .uv-btn-bar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 8px;
	padding: 20px 15px;
	background: #f8fafc;
	border-top: 1px solid #edf0f5;
}
.ub-board .uv-btn-bar .ub-btn {
	border-radius: var(--r-xs);
	font-size: 0.8125rem;
	height: 34px;
	padding: 0 14px;
	font-weight: 500;
}
.ub-board .uv-btn-bar .ub-btn--primary {
	padding: 0 16px;
}
.ub-board .uv-btn-bar .ub-btn--basic {
	border: 1px solid rgba(15,23,42,.12);
	color: #475569;
	background: #ffffff;
}
.ub-board .uv-btn-bar .ub-btn--basic:hover {
	border-color: #6366f1;
	color: #4f46e5;
	background: #eef2ff;
}
.ub-board .uv-btn-bar .ub-dropdown { display: inline-flex; }

/* ??? ?? (??? ??, ? .ub-pgn-wrap? ?? ?? ???) */
.ub-board #bo_list_wrap > form > div:last-child { padding: 0; }

/* ?? ?? ?? ?? */
.ub-board #bo_btn_top .ub-btn-group { gap: var(--sp-1); }
.ub-board #bo_btn_top .ub-dropdown { vertical-align: middle; }

/* ?? ???? ?? ?? ??? ??? ??? */
.ub-board .ub-dropdown__menu .ub-bg-strong {
	background: transparent !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 0 !important;
	width: 100%;
}

/* ??? ? ? ?? */
.ub-board #bo_w .ub-list-item { padding: var(--sp-4) var(--sp-5); }
.ub-board #bo_w .ub-list-item .ub-form-label-col { min-height: 42px; }

/* SNS ?? ??? */
.ub-board #bo_v_sns_icon { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--sp-2); }
.ub-board #bo_v_sns_icon img { transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease); }
.ub-board #bo_v_sns_icon img:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

/* ?? ? ?? */
.ub-board #bo_vc_empty {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #f8fafc;
	border: 1px dashed rgba(15,23,42,.1);
	border-radius: var(--r-md);
	margin: 8px 0 12px;
	padding: 28px 20px;
	color: #94a3b8;
	font-size: 0.875rem;
}
.ub-board #bo_vc_empty .fa {
	font-size: 1rem;
	color: #cbd5e1;
}

/* ?? ???? ?? */
.ub-board .view_file_download { color: var(--c-primary); font-weight: 500; }
.ub-board .view_file_download:hover { text-decoration: underline; }

/* tag */
.ub-board .uv-tag-area {
	padding: 12px 28px 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	background: #ffffff;
}
.ub-board .uv-tag-area a,
.ub-board #bo_v .ub-text-sm.ub-p-3 a {
	display: inline-flex; align-items: center;
	padding: 0.25rem 0.75rem;
	border: 1px solid var(--b-default);
	border-radius: var(--r-full);
	font-size: 0.8125rem;
	color: var(--t-muted);
	background: var(--s-hover);
	margin: 0.2rem;
	transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.ub-board #bo_v .ub-text-sm.ub-p-3 a:hover { border-color: var(--c-primary); color: var(--c-primary); background: var(--c-primary-light); }

/* ?????????????????????????????????????????
   18. ???
????????????????????????????????????????? */
@media (max-width: 767px) {
	.ub-board #bo_btn_top { border-radius: var(--r-md) var(--r-md) 0 0; padding: 15px 16px 12px; }
	.ub-board #bo_list { border-radius: 0 0 var(--r-md) var(--r-md); }
	.ub-board.uv-view-page { padding: 0; }
	.ub-board #bo_v    { border-radius: 10px; }
	.ub-board #bo_w    { border-radius: var(--r-md); }
	.ub-board #bo_v header { padding: 20px 16px 16px; }
	.ub-board #bo_v #bo_v_con  { padding: 16px; }
	.ub-board #bo_v #bo_v_btn_group { padding: var(--sp-4); flex-wrap: wrap; }
	.ub-board #bo_v #bo_v_btn_group .ub-btn--basic { min-width: 70px; padding: 8px 14px; font-size: 0.8125rem; }
	.ub-board .uv-meta-row  { padding: 11px 16px; }
	.ub-board .uv-stat-row  { padding: 9px 16px; }
	.ub-board .uv-btn-bar   { padding: 10px 16px; gap: 6px; }
	.ub-board .uv-btn-bar .ub-btn { height: 32px; padding: 0 12px; font-size: 0.8125rem; }
	.ub-board .uv-nav-label { padding: 10px 12px; width: 48px; }
	.ub-board .uv-nav-cell  { padding: 10px 14px; }
	.ub-board #bo_vc, .ub-board #bo_vc_w { padding-left: 16px; padding-right: 16px; }
	.ub-board #viewcomment > .ub-board { padding-left: 16px; padding-right: 16px; }
	/* ??? ?? ? */
	.ub-board .ublist-head      { display: none; }
	.ub-board .ubr       { height: auto; padding: 14px 16px; box-shadow: none !important; }
	.ub-board .ubr:hover { background: #f8f9ff; box-shadow: inset 3px 0 0 var(--c-primary) !important; }
	.ub-board .ubr__no          { display: none; }
	.ub-board .ubr__cols        { display: none; }
	.ub-board .ubr__mobile-meta { display: flex; }
	.ub-board .ubr__link        { white-space: normal; overflow: visible; text-overflow: clip; font-size: 0.9375rem; }
	.ub-board #bo_btn_top       { border-radius: 12px 12px 0 0; padding: 15px 16px 12px; }
	.ub-board #bo_list          { border-radius: 0 0 12px 12px; }

	.ub-board #bo_v_title { font-size: 1.25rem; line-height: 1.45; }
	.ub-board #bo_v_con  { min-height: 140px; }

	.ub-board .ub-d-none-sm    { display: none !important; }
	.ub-board .ub-d-block-sm   { display: block !important; }
	.ub-board .ub-flex-sm      { display: flex !important; }
	.ub-board .ub-flex-sm-wrap { flex-wrap: wrap; }
	.ub-board .ub-w-100-sm     { width: 100% !important; }

	.ub-board #bo_search .ub-search-box { padding: 10px 20px 36px; border-radius: 20px 20px 0 0; }
	.ub-board .ub-pgn-nav { padding: 0 14px; min-height: 46px; font-size: 0.8125rem; }
	.ub-board .ub-pgn-list .page-link { min-width: 32px; height: 32px; font-size: 0.8125rem; }

	/* ??? ??? */
	.ub-board .ub-form-row--search > * { flex: 0 0 100%; max-width: 100%; padding-top: var(--sp-2); }
	.ub-board .ub-form-row--search > *:first-child  { flex: 0 0 50%; max-width: 50%; padding-top: 0; }
	.ub-board .ub-form-row--search > *:nth-child(2) { flex: 0 0 50%; max-width: 50%; padding-top: 0; }
	.ub-board .ub-form-row--search > *:last-child   { padding-top: var(--sp-2); }

	/* ?? ? */
	.ub-board .ub-cmt-box { border-radius: var(--r-md); padding: 16px; }
	.ub-board #bo_vc_login { border-radius: var(--r-md); }
	.ub-board .uv-nav-label { width: 52px; padding: 12px 8px; }
	.ub-board .uv-nav-cell { padding: 12px 14px; }

	/* ??? */
	.ub-board #bo_w .ub-list-item,
	.ub-board #bo_w .ub-write-list .ub-list-item { padding: 12px 16px; }
	.ub-board #bo_w > .ub-px-3 { padding: var(--sp-4); }
	.ub-board #bo_w #wr_content { max-height: 160px !important; }
	.ub-board .ub-form-label-col {
		flex: 0 0 100%; max-width: 100%;
		padding-right: 0; padding-top: 0; padding-bottom: var(--sp-2);
	}
	.ub-board #bo_w .ub-form-label-col {
		flex: 0 0 100%; max-width: 100%;
		align-self: auto; padding-top: 0;
	}
	.ub-board .ub-form-body-col  { flex: 1; min-width: 0; }
	.ub-board .ub-form-row--write .ub-form-body-col,
	.ub-board .ub-form-row--write .ub-form-body-col-full { flex: 1; min-width: 0; }
}

@media (min-width: 576px) {
	.ub-board .ub-d-flex-sm       { display: flex; }
	.ub-board .ub-align-center-sm { align-items: center; }
	.ub-board .ub-grow-sm         { flex-grow: 1; }
	.ub-board .ub-text-right-sm   { text-align: right; }
	.ub-board .ub-form-row--search > *:last-child { padding-top: 0; }
}

@media (min-width: 768px) {
	.ub-board .ub-d-none-md       { display: none !important; }
	.ub-board .ub-d-block-md      { display: block !important; }
	.ub-board .ub-text-center-md  { text-align: center; }
	.ub-board .ub-border-top-md   { border-top: 1px solid var(--b-default); }
	.ub-board .ub-justify-start-md { justify-content: flex-start; }
	.ub-board .ub-pagination--left { justify-content: flex-start; }
}

@media (min-width: 992px) {
	.ub-board .ub-d-flex-lg       { display: flex; }
	.ub-board .ub-d-none-lg       { display: none; }
	.ub-board .ub-d-block-lg      { display: block; }
	.ub-board .ub-d-table-cell-lg { display: table-cell !important; }
}

/* ???????????????????????????????????????????????????????
   ??? ? ? ???? ?? ???
??????????????????????????????????????????????????????? */

/* ?? ? ?? ?? ?? ?? */
.ub-board .ub-view-toggle {
	display: flex;
	gap: 2px;
	background: var(--s-hover);
	border: 1px solid var(--b-default);
	border-radius: var(--r-xs);
	padding: 2px;
}
.ub-board .ub-view-toggle-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: none;
	border-radius: 4px;
	background: transparent;
	color: var(--t-muted);
	cursor: pointer;
	transition: background 130ms ease, color 130ms ease;
}
.ub-board .ub-view-toggle-btn.is-active {
	background: var(--c-primary);
	color: #fff;
	box-shadow: 0 1px 4px rgba(79,70,229,.35);
}
.ub-board .ub-view-toggle-btn:not(.is-active):hover {
	background: var(--b-default);
	color: var(--t-base);
}

/* ?? ??? ?? ? #bo_list ? ??? ?? ??? ?? */
.ub-board #bo_gallery {
	background: #ffffff;
	border: 1px solid rgba(15,23,42,.08);
	border-top: 0;
	border-radius: 0 0 16px 16px;
	overflow: visible;
	margin-bottom: 12px;
}

/* ?? ??? ??? ???? ?? */
.ub-board .ubg {
	padding: 16px 16px 20px;
}
.ub-board .ubg-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ?? ??? ?? ?? */
.ub-board .ubg-card {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(15,23,42,.07);
	box-shadow: 0 1px 3px rgba(15,23,42,.05), 0 4px 12px rgba(15,23,42,.04);
	transition:
		transform 200ms cubic-bezier(.16,1,.3,1),
		box-shadow 200ms cubic-bezier(.16,1,.3,1),
		border-color 200ms ease;
	animation: ubRowIn 280ms ease both;
}
.ub-board .ubg-card:hover {
	transform: translateY(-4px) scale(1.01);
	box-shadow:
		0 8px 24px rgba(79,70,229,.12),
		0 2px 8px rgba(15,23,42,.08);
	border-color: rgba(99,102,241,.3);
}
.ub-board .ubg-card--notice {
	border-color: rgba(99,102,241,.25);
	background: linear-gradient(160deg, #f5f3ff 0%, #fff 60%);
}

/* ?? ?? ?? ?? ?? ?? */
.ub-board .ubg-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
}

/* ?? ??? ?? ?? */
.ub-board .ubg-card__thumb {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 50%, #ddd6fe 100%);
	flex-shrink: 0;
}
.ub-board .ubg-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 360ms cubic-bezier(.16,1,.3,1);
}
.ub-board .ubg-card:hover .ubg-card__thumb img {
	transform: scale(1.06);
}
.ub-board .ubg-card__thumb-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 40%, #ede9fe 100%);
}

/* ??? ? ??/??? */
.ub-board .ubg-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: .06em;
	padding: 3px 8px;
	border-radius: 9999px;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	line-height: 1.5;
}
.ub-board .ubg-badge--notice {
	background: rgba(79,70,229,.85);
	color: #fff;
}
.ub-board .ubg-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 0.625rem;
	font-weight: 800;
	padding: 3px 7px;
	border-radius: 9999px;
	line-height: 1.5;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.ub-board .ubg-icon--hot  { background: rgba(244,63,94,.85); color: #fff; letter-spacing: .05em; }
.ub-board .ubg-icon--new  { background: rgba(99,102,241,.85); color: #fff; }
.ub-board .ubg-icon--secret { background: rgba(100,116,139,.75); color: #fff; }

/* ?? ? ???? */
.ub-board .ubg-card__cmt-overlay {
	position: absolute;
	bottom: 8px;
	right: 10px;
	font-size: 0.6875rem;
	color: #fff;
	background: rgba(15,23,42,.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	padding: 2px 8px;
	border-radius: 9999px;
	line-height: 1.6;
}

/* ?? ?? ?? ?? */
.ub-board .ubg-card__body {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 14px 16px 14px;
	gap: 6px;
}
.ub-board .ubg-card__title {
	font-size: 0.875rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.45;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	letter-spacing: -0.015em;
	transition: color 130ms ease;
}
.ub-board .ubg-card:hover .ubg-card__title {
	color: var(--c-primary);
}
.ub-board .ubg-card__meta {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 0.75rem;
	color: #94a3b8;
}
.ub-board .ubg-card__author { font-weight: 600; color: #64748b; }
.ub-board .ubg-card__sep    { color: #e2e8f0; }
.ub-board .ubg-card__stats  {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.6875rem;
	color: #94a3b8;
	margin-top: auto;
	padding-top: 8px;
	border-top: 1px solid rgba(15,23,42,.05);
}
.ub-board .ubg-card__stats i { margin-right: 3px; }

/* ?? ?? ????? ??? ?? */
.ub-board .ubg-card:nth-child(1)  { animation-delay:   0ms; }
.ub-board .ubg-card:nth-child(2)  { animation-delay:  40ms; }
.ub-board .ubg-card:nth-child(3)  { animation-delay:  80ms; }
.ub-board .ubg-card:nth-child(4)  { animation-delay: 120ms; }
.ub-board .ubg-card:nth-child(5)  { animation-delay: 160ms; }
.ub-board .ubg-card:nth-child(6)  { animation-delay: 200ms; }
.ub-board .ubg-card:nth-child(7)  { animation-delay: 240ms; }
.ub-board .ubg-card:nth-child(8)  { animation-delay: 280ms; }
.ub-board .ubg-card:nth-child(9)  { animation-delay: 320ms; }
.ub-board .ubg-card:nth-child(10) { animation-delay: 360ms; }
.ub-board .ubg-card:nth-child(11) { animation-delay: 400ms; }
.ub-board .ubg-card:nth-child(12) { animation-delay: 440ms; }

/* ?? ??? ?? */
@media (max-width: 1199px) {
	.ub-board .ubg-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 767px) {
	.ub-board .ubg-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.ub-board .ubg { padding: 12px 12px 16px; }
	.ub-board .ubg-card__body { padding: 11px 12px; }
	.ub-board .ubg-card__title { font-size: 0.8125rem; }
	.ub-board #bo_gallery { border-radius: 0 0 12px 12px; }
}
@media (max-width: 479px) {
	.ub-board .ubg-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* ???????????????????????????????????????????????????????
   ??(???) ? ? ??? + ??? + ?? ???
??????????????????????????????????????????????????????? */

/* ?? ?? ?? ?? ?? */
.ub-board #bo_webzine {
	background: #ffffff;
	border: 1px solid rgba(15,23,42,.08);
	border-top: 0;
	border-radius: 0 0 16px 16px;
	overflow: visible;
	margin-bottom: 12px;
}
.ub-board .ubwz {
	padding: 16px 16px 20px;
}

/* ?? ?? ?? ?? */
.ub-board .ubwz-badge {
	display: inline-block;
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: .07em;
	padding: 2px 8px;
	border-radius: 9999px;
	line-height: 1.6;
	margin-bottom: 6px;
}
.ub-board .ubwz-badge--notice { background: rgba(79,70,229,.9); color: #fff; }

/* ?? ?? ?? ??? (NEW / HOT / SECRET) ?? */
.ub-board .ubwz-icon {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	font-size: 0.625rem;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: 9999px;
	line-height: 1.5;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.ub-board .ubwz-icon--new    { background: rgba(99,102,241,.85); color: #fff; letter-spacing: .04em; }
.ub-board .ubwz-icon--hot    { background: rgba(244,63,94,.85);  color: #fff; letter-spacing: .05em; }
.ub-board .ubwz-icon--secret { background: rgba(100,116,139,.75); color: #fff; }
/* ??????? ?? ?? ???? ????? ?? */
.ub-board .ubwz-side-card__body .ubwz-icon,
.ub-board .ubwz-card__body .ubwz-icon {
	position: static;
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	margin-bottom: 2px;
}

.ub-board .ubwz-badge--topleft {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 2;
	font-size: 0.6875rem;
	padding: 4px 11px;
	box-shadow: 0 2px 8px rgba(79,70,229,.4);
	letter-spacing: .05em;
}
.ub-board .ubwz-sep { color: rgba(255,255,255,.5); margin: 0 3px; }

/* ??? ? ?? ??? ?? ??? */
.ub-board .ubwz-hero {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 14px;
	margin-bottom: 14px;
}

/* ?? ??? ?? ?? */
.ub-board .ubwz-featured {
	position: relative;
	display: block;
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	text-decoration: none;
	background: linear-gradient(135deg, #4338ca, #7c3aed);
	box-shadow: 0 4px 20px rgba(79,70,229,.18);
	transition: transform 220ms cubic-bezier(.16,1,.3,1), box-shadow 220ms ease;
}
.ub-board .ubwz-featured:hover {
	transform: translateY(-3px) scale(1.005);
	box-shadow: 0 12px 36px rgba(79,70,229,.22);
}
.ub-board .ubwz-featured__img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 400ms cubic-bezier(.16,1,.3,1);
}
.ub-board .ubwz-featured:hover .ubwz-featured__img { transform: scale(1.04); }
.ub-board .ubwz-featured__placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, #4338ca 0%, #7c3aed 60%, #a78bfa 100%);
	color: #fff;
}

/* ??? ??? ???? */
.ub-board .ubwz-featured__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px 22px 20px;
	background: linear-gradient(
		to top,
		rgba(7,3,28,.82) 0%,
		rgba(7,3,28,.45) 50%,
		transparent 100%
	);
}
.ub-board .ubwz-featured__title {
	font-size: 1.1875rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.4;
	margin: 0 0 8px;
	letter-spacing: -0.02em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.ub-board .ubwz-featured__meta {
	font-size: 0.75rem;
	color: rgba(255,255,255,.8);
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px;
}

/* ?? ??? ?? 3? ?? */
.ub-board .ubwz-side {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.ub-board .ubwz-side-card {
	display: flex;
	gap: 12px;
	align-items: center;
	border-radius: 12px;
	overflow: hidden;
	background: #f8fafc;
	border: 1px solid rgba(15,23,42,.06);
	text-decoration: none;
	color: inherit;
	padding: 10px;
	flex: 1;
	transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}
.ub-board .ubwz-side-card:hover {
	background: #f0f0fe;
	border-color: rgba(99,102,241,.3);
	transform: translateX(3px);
}
.ub-board .ubwz-side-card__thumb {
	flex: 0 0 78px;
	height: 58px;
	border-radius: 8px;
	overflow: hidden;
	background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}
.ub-board .ubwz-side-card__thumb img {
	width: 100%; height: 100%;
	object-fit: cover; display: block;
}
.ub-board .ubwz-side-card__placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}
.ub-board .ubwz-side-card__body {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ub-board .ubwz-side-card__title {
	font-size: 0.8125rem;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	letter-spacing: -0.01em;
	transition: color 130ms ease;
}
.ub-board .ubwz-side-card:hover .ubwz-side-card__title { color: var(--c-primary); }
.ub-board .ubwz-side-card__meta {
	font-size: 0.6875rem;
	color: #94a3b8;
	display: flex;
	align-items: center;
	gap: 2px;
}

/* ??? ? ?? ??? ??? */
.ub-board .ubwz-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ub-board .ubwz-card {
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(15,23,42,.07);
	transition: transform 200ms cubic-bezier(.16,1,.3,1), box-shadow 200ms ease, border-color 200ms ease;
}
.ub-board .ubwz-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(79,70,229,.1);
	border-color: rgba(99,102,241,.28);
}
.ub-board .ubwz-card--notice { background: linear-gradient(160deg, #f5f3ff, #fff); }
.ub-board .ubwz-card__link {
	display: flex; flex-direction: column;
	height: 100%; text-decoration: none; color: inherit;
}
.ub-board .ubwz-card__thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}
.ub-board .ubwz-card__thumb img {
	width: 100%; height: 100%;
	object-fit: cover; display: block;
	transition: transform 360ms cubic-bezier(.16,1,.3,1);
}
.ub-board .ubwz-card:hover .ubwz-card__thumb img { transform: scale(1.06); }
.ub-board .ubwz-card__placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
}
.ub-board .ubwz-card__body {
	flex: 1;
	display: flex; flex-direction: column;
	padding: 12px 14px;
	gap: 5px;
}
.ub-board .ubwz-card__title {
	font-size: 0.8125rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.45;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	letter-spacing: -0.01em;
	transition: color 130ms ease;
}
.ub-board .ubwz-card:hover .ubwz-card__title { color: var(--c-primary); }
.ub-board .ubwz-card__meta {
	font-size: 0.6875rem;
	color: #94a3b8;
	display: flex; align-items: center; gap: 3px;
}
.ub-board .ubwz-card__stats {
	display: flex; gap: 8px;
	font-size: 0.6563rem;
	color: #94a3b8;
	margin-top: auto;
	padding-top: 7px;
	border-top: 1px solid rgba(15,23,42,.05);
}
.ub-board .ubwz-card__stats i { margin-right: 2px; }
.ub-board .ubwz-sep { margin: 0 2px; }

/* ?? ?? ??? ?? */
@media (max-width: 1199px) {
	.ub-board .ubwz-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
	.ub-board .ubwz-hero { grid-template-columns: 1fr; }
	.ub-board .ubwz-featured { aspect-ratio: 16 / 7; }
	.ub-board .ubwz-side { flex-direction: row; flex-wrap: wrap; }
	.ub-board .ubwz-side-card { flex: 1 1 calc(50% - 5px); }
	.ub-board .ubwz-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
	.ub-board .ubwz { padding: 12px 12px 16px; }
	.ub-board .ubwz-hero { gap: 10px; }
	.ub-board .ubwz-side-card { flex: 1 1 100%; }
	.ub-board .ubwz-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.ub-board .ubwz-featured__title { font-size: 1rem; }
	.ub-board #bo_webzine { border-radius: 0 0 12px 12px; }
}

/* ?? ???? ? (gv-cate) ?? */
#bo_cate.gv-cate {
	margin: 0 0 10px;
	padding: 0;
	background: transparent;
	border: none;
}

.gv-cate__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.gv-cate__list li a {
	display: inline-flex;
	align-items: center;
	padding: 6px 18px;
	border-radius: 20px;
	font-size: .83rem;
	font-weight: 600;
	color: #64748b;
	text-decoration: none;
	border: 1.5px solid #e2e8f0;
	background: #fff;
	transition: background .18s, color .18s, border-color .18s;
	white-space: nowrap;
	line-height: 1.5;
}

.gv-cate__list li a:hover {
	border-color: #a5b4fc;
	color: #4f46e5;
	background: #eef2ff;
}

.gv-cate__list li.active a {
	background: linear-gradient(135deg, #6366f1 0%, #818cf8 100%);
	border-color: transparent;
	color: #fff;
	box-shadow: none;
}

/* ?? ? ??? ?? ?? ?? ?? */
.ub-board .uv-info-card {
	margin: 0;
	padding: 0 28px;
	background: #f8fafc;
	border-bottom: 1px solid rgba(15,23,42,.06);
}

/* ?? ?? ??? */
.ub-board .uv-info-card__header {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin: 16px 0 10px;
	padding: 3px 10px 3px 8px;
	background: #eef2ff;
	color: #4f46e5;
	border-radius: 9999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.ub-board .uv-info-card__icon {
	color: #6366f1;
	flex-shrink: 0;
}

/* 4? ??? */
.ub-board .uv-info-card__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
	padding-bottom: 18px;
}

/* ?? ?? ?? */
.ub-board .uv-info-item {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 14px 16px;
	background: #f8fafc;
	border: 1px solid rgba(15,23,42,.07);
	border-radius: 10px;
	border-top: 3px solid #c7d2fe;
	transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
	overflow: hidden;
}
.ub-board .uv-info-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(99,102,241,.03) 0%, transparent 60%);
	pointer-events: none;
}
.ub-board .uv-info-item:hover {
	box-shadow: 0 4px 16px -4px rgba(79,70,229,.13);
	transform: translateY(-1px);
	border-color: rgba(99,102,241,.25);
	border-top-color: #818cf8;
}

/* ?? ?? ? ?? */
.ub-board .uv-info-item--money {
	border-top-color: #6ee7b7;
	background: linear-gradient(135deg, #f0fdf9 0%, #f8fafc 100%);
}
.ub-board .uv-info-item--money:hover {
	border-top-color: #34d399;
	box-shadow: 0 4px 16px -4px rgba(16,185,129,.14);
}

/* ?? */
.ub-board .uv-info-item__label {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.72rem;
	font-weight: 600;
	color: #94a3b8;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	white-space: nowrap;
}
.ub-board .uv-info-item__label svg {
	color: #a5b4fc;
	flex-shrink: 0;
}
.ub-board .uv-info-item--money .uv-info-item__label svg {
	color: #6ee7b7;
}

/* ? */
.ub-board .uv-info-item__value {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #1e293b;
	word-break: break-all;
	line-height: 1.4;
}
.ub-board .uv-info-item__value em {
	font-style: normal;
	color: #cbd5e1;
	font-weight: 400;
}
.ub-board .uv-info-item--money .uv-info-item__value {
	font-size: 1.0625rem;
	color: #059669;
	letter-spacing: -0.02em;
}

/* ?? ?? */
.ub-board .uv-info-item--status {
	border-top-color: #a5b4fc;
	background: linear-gradient(135deg, #f5f3ff 0%, #f8fafc 100%);
}
.ub-board .uv-info-item--status:hover {
	border-top-color: #818cf8;
	box-shadow: 0 4px 16px -4px rgba(99,102,241,.14);
}
.ub-board .uv-info-item--status .uv-info-item__label svg {
	color: #a5b4fc;
}
.ub-board .uv-info-item--status .uv-info-item__value {
	font-size: 0.875rem;
}

/* ??? ? ??? */
@media (max-width: 767px) {
	.ub-board .uv-info-card {
		padding: 0 16px;
	}
	.ub-board .uv-info-card__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}
}
/* ??? ? ??? */
@media (max-width: 479px) {
	.ub-board .uv-info-card__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 6px;
		padding-bottom: 14px;
	}
	.ub-board .uv-info-item {
		padding: 11px 12px;
	}
	.ub-board .uv-info-item__label {
		font-size: 0.68rem;
	}
	.ub-board .uv-info-item__value {
		font-size: 0.875rem;
	}
	.ub-board .uv-info-item--money .uv-info-item__value {
		font-size: 0.9375rem;
	}
}

/* ?? ?? */
.ubr__status {
	display: inline-block;
	padding: 2px 8px;
	border-radius: var(--ub-radius-sm, 4px);
	font-size: .75rem;
	font-weight: 600;
	line-height: 1.6;
	white-space: nowrap;
}
.ubr__status--done {
	background: #dcfce7;
	color: #15803d;
}
.ubr__status--fail {
	background: #fee2e2;
	color: #b91c1c;
}
.ubr__status--wait {
	background: #fff7ed;
	color: #c2410c;
}

/* ???????????????????????????????????????????????????????
   ??? ?? ??? ? ?? ?? ???
   (board-company / board-apply ??)
??????????????????????????????????????????????????????? */

/* ??????????????????????????????????
   ??? ?? ? ? ????
?????????????????????????????????? */
.me-total-hero {
	background: linear-gradient(135deg, #1e1b4b 0%, #4f46e5 55%, #7c3aed 100%);
	border-radius: 0;
	padding: 22px 24px 20px;
	margin-bottom: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: nowrap;
}
.me-total-hero__left {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}
.me-total-hero__label {
	font-size: 0.75rem;
	font-weight: 700;
	color: rgba(255,255,255,.6);
	letter-spacing: 0.07em;
	text-transform: uppercase;
}
.me-total-hero__amount {
	font-size: 2rem;
	font-weight: 900;
	color: #86efac;
	letter-spacing: -0.03em;
	font-variant-numeric: tabular-nums;
	line-height: 1.1;
	white-space: nowrap;
}
.me-total-hero__sub {
	font-size: 0.75rem;
	color: rgba(255,255,255,.45);
	margin-top: 2px;
}
.me-total-hero__chips {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}
.me-total-hero__chip {
	background: rgba(255,255,255,.13);
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 10px;
	padding: 8px 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	min-width: 66px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.me-total-hero__chip-label {
	font-size: 0.625rem;
	color: rgba(255,255,255,.55);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.me-total-hero__chip-value {
	font-size: 1.0625rem;
	font-weight: 800;
	color: #fff;
	font-variant-numeric: tabular-nums;
	line-height: 1.2;
}
@media (max-width: 767px) {
	.me-total-hero { padding: 16px 16px 14px; border-radius: 0 !important; flex-wrap: wrap; }
	.me-total-hero__amount { font-size: 1.625rem; }
	.me-total-hero__chip { padding: 6px 10px; min-width: 54px; }
	.me-total-hero__chip-value { font-size: 0.9375rem; }
}

/* ?? ????????? ?? ?? ?? */

/* 1) ?? ?? ??? ?? (???? ?? ????? ???) */
.ub-board #bo_btn_top { border-bottom: none; }

/* 3) ?????? ?? ublist-bar ?? */
/* ?? ?? ?? ?: ??? ? ??? ?? ?? (?? ??? ??) ?? */
.me-total-hero + section { margin-top: 0; }
.me-total-hero + section .ublist-bar { display: none; }

/* ?? ?? ?? ?: ? ??? ??? ??? ?? ?? */
/* ???: ?? ??? */
.me-total-hero:has(+ .me-pending-alert) {
    border-radius: 0 0 10px 10px;
}
/* ??: ??? ?? ? ??? ??? ?? (PHP ??? ???? ???? ??) */
.ub-board #bo_list.bo-list--card,
#bo_list.bo-list--card {
    border-top: 1px solid rgba(15,23,42,.08) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
}
/* ??? ?? ? ??? margin-bottom ?? (?? ?? margin-top?? ?? ??) */
.me-total-hero:has(+ .me-pending-alert) {
    margin-bottom: 0;
}

/* 4) ???? ?? ?? ?? ? 30px ??? ?? */
.ub-board #bo_btn_top a.ub-btn--basic.ub-btn--sm {
	width: auto !important;
	padding: 0 11px !important;
	white-space: nowrap;
}

/* ??????????????????????????????????
   ?? ?? ?? ?? ?
?????????????????????????????????? */
.me-card-stats-row {
	display: flex;
	gap: 6px;
	padding: 10px 0 8px;
	border-top: 1px solid #f1f5f9;
	margin-bottom: 8px;
}
.me-stat-chip {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 7px 4px;
	background: #f8fafc;
	border-radius: 8px;
	border: 1px solid rgba(15,23,42,.05);
}
.me-stat-chip__label {
	font-size: 0.5625rem;
	font-weight: 700;
	color: #94a3b8;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.me-stat-chip__value {
	font-size: 0.875rem;
	font-weight: 700;
	color: #1e293b;
	font-variant-numeric: tabular-nums;
}
.me-stat-chip--done .me-stat-chip__value  { color: #059669; }
.me-stat-chip--wait .me-stat-chip__value  { color: #d97706; }

/* ???? ?? ? */
.me-card-amount-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 7px 10px;
	background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%);
	border-radius: 8px;
	border: 1px solid rgba(99,102,241,.12);
	margin-bottom: 12px;
}
.me-card-amount-row__label {
	font-size: 0.6875rem;
	font-weight: 600;
	color: #6366f1;
	display: flex;
	align-items: center;
	gap: 4px;
}
.me-card-amount-row__value {
	font-size: 0.9375rem;
	font-weight: 800;
	color: #4f46e5;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.01em;
}

/* ???? ?? */
.me-apply-btn {
	display: flex !important;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 100%;
	padding: 11px 12px;
	background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%) !important;
	color: #fff !important;
	font-size: 0.875rem;
	font-weight: 700;
	border-radius: 9px;
	text-decoration: none !important;
	transition: all 160ms ease;
	box-shadow: 0 2px 10px rgba(79,70,229,.3);
	border: none;
	cursor: pointer;
	letter-spacing: 0.01em;
}
.me-apply-btn:hover, .me-apply-btn:focus {
	background: linear-gradient(135deg, #4338ca 0%, #4f46e5 100%) !important;
	color: #fff !important;
	box-shadow: 0 6px 20px rgba(79,70,229,.4);
	transform: translateY(-1px);
	text-decoration: none !important;
}
.me-apply-btn i { color: #fff !important; }
.me-apply-btn--disabled {
	background: #e2e8f0 !important;
	color: #94a3b8 !important;
	box-shadow: none;
	cursor: not-allowed;
	transform: none !important;
}
.me-apply-btn--disabled i { color: #94a3b8 !important; }
.me-apply-btn--disabled:hover { transform: none !important; background: #e2e8f0 !important; }

/* ?? ?? ?? ??? ?? */
.me-company-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding: 20px;
}
@media (max-width: 1199px) { .me-company-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .me-company-grid { grid-template-columns: 1fr; gap: 14px; padding: 14px; } }

/* ?? ?? ?? ?? */
.me-company-card {
	background: #ffffff;
	border: 1px solid rgba(15,23,42,.08);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(15,23,42,.06);
	transition: transform 200ms cubic-bezier(.16,1,.3,1), box-shadow 200ms ease, border-color 200ms ease;
	animation: ubRowIn 280ms ease both;
}
.me-company-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(79,70,229,.14), 0 2px 8px rgba(15,23,42,.06);
	border-color: rgba(99,102,241,.3);
}
.me-company-card--inactive { opacity: .55; }

/* ?? ?? ?? ?? */
.me-company-card__logo-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 7;
	overflow: hidden;
	background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
}
.me-company-card__logo-wrap img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 360ms cubic-bezier(.16,1,.3,1);
}
.me-company-card:hover .me-company-card__logo-wrap img { transform: scale(1.05); }
.me-company-card__logo-placeholder {
	width: 100%; height: 100%;
	display: flex; align-items: center; justify-content: center;
}
.me-company-card__status-badge {
	position: absolute; top: 10px; right: 10px;
	padding: 3px 10px;
	border-radius: 9999px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.me-company-card__status-badge--active   { background: rgba(16,185,129,.85); color: #fff; }
.me-company-card__status-badge--inactive { background: rgba(100,116,139,.75); color: #fff; }

/* ?? ?? */
.me-company-card__body { padding: 16px 18px 18px; }
.me-company-card__name {
	font-size: 1rem; font-weight: 800; color: #0f172a;
	letter-spacing: -0.02em; margin: 0 0 6px;
}
.me-company-card__rolling {
	font-size: 0.8125rem; color: #64748b; margin-bottom: 14px;
	line-height: 1.5;
}
.me-company-card__rolling .me-rolling-tag {
	display: inline-flex; align-items: center; gap: 3px;
	padding: 2px 8px;
	background: #eef2ff; color: #4f46e5;
	border-radius: 9999px; font-size: 0.6875rem; font-weight: 600;
	margin: 2px 2px 2px 0;
}

/* ?? ? ? ? me-card-stats-row / me-card-amount-row / me-apply-btn ?? ?? */
.me-company-card__stats { display: none; }

/* ?? ?? ? ??? ?? */
.me-view-company-panel {
	display: flex; gap: 28px; align-items: flex-start;
	padding: 24px 28px;
	background: #fff;
	border-bottom: 1px solid #edf0f5;
}
.me-view-company-logo {
	flex: 0 0 140px;
	height: 100px;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, #1e1b4b, #4338ca);
	box-shadow: 0 4px 16px rgba(79,70,229,.2);
}
.me-view-company-logo img {
	width: 100%; height: 100%; object-fit: cover; display: block;
}
.me-view-company-info { flex: 1; min-width: 0; }
.me-view-company-name {
	font-size: 1.375rem; font-weight: 800;
	color: #0f172a; letter-spacing: -0.025em;
	margin: 0 0 8px;
}
.me-view-company-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.me-view-meta-tag {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 4px 12px;
	background: #f1f5f9; color: #475569;
	border-radius: 9999px; font-size: 0.8125rem; font-weight: 500;
	border: 1px solid rgba(15,23,42,.07);
}
.me-view-meta-tag--active { background: #d1fae5; color: #065f46; border-color: rgba(16,185,129,.2); }
.me-view-meta-tag--inactive { background: #fee2e2; color: #991b1b; border-color: rgba(239,68,68,.2); }
.me-view-company-rolling {
	font-size: 0.875rem; color: #64748b; line-height: 1.6;
}
@media (max-width: 767px) {
	.me-view-company-panel { flex-direction: column; gap: 16px; padding: 16px; }
	.me-view-company-logo { flex: none; width: 100%; height: 130px; }
}

/* ?? ?? ?? ??? ?? */
.me-apply-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 16px 28px;
	background: #f8fafc;
	border-bottom: 1px solid #edf0f5;
}
.me-apply-stat-item {
	display: flex; flex-direction: column; align-items: center; gap: 4px;
	padding: 12px 8px;
	background: #fff;
	border: 1px solid rgba(15,23,42,.07);
	border-radius: 10px;
}
.me-apply-stat-item__icon { font-size: 1.125rem; color: #94a3b8; }
.me-apply-stat-item__value {
	font-size: 1.1875rem; font-weight: 800;
	color: #0f172a; font-variant-numeric: tabular-nums;
}
.me-apply-stat-item__label { font-size: 0.6875rem; color: #94a3b8; font-weight: 600; letter-spacing: 0.03em; }
.me-apply-stat-item--done   .me-apply-stat-item__value  { color: #059669; }
.me-apply-stat-item--wait   .me-apply-stat-item__value  { color: #d97706; }
.me-apply-stat-item--reject .me-apply-stat-item__value  { color: #dc2626; }
.me-apply-stat-item--amount .me-apply-stat-item__value  { color: #4f46e5; font-size: 0.9375rem; }
@media (max-width: 767px) {
	.me-apply-stats { grid-template-columns: repeat(2, 1fr); padding: 12px 16px; gap: 8px; }
	.me-apply-stat-item--amount { grid-column: 1 / -1; flex-direction: row; justify-content: center; gap: 8px; }
}

/* ?? ?? ?? ??? (? ??? ???) ?? */
.me-apply-list-section {
	padding: 0 28px 24px;
	background: #fff;
}
.me-apply-list-header {
	display: flex; align-items: center; justify-content: space-between;
	padding: 16px 0 12px;
	border-bottom: 2px solid #f1f5f9;
	margin-bottom: 14px;
}
.me-apply-list-title {
	display: flex; align-items: center; gap: 8px;
	font-size: 0.9375rem; font-weight: 700; color: #0f172a;
}
.me-apply-list-title .me-list-count {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 22px; height: 22px; padding: 0 6px;
	background: #4f46e5; color: #fff;
	font-size: 0.75rem; font-weight: 700;
	border-radius: 20px;
}
.me-date-filter { display: flex; align-items: center; gap: 6px; }
.me-date-filter input[type="date"] {
	padding: 5px 10px; font-size: 0.8125rem;
	border: 1px solid #e2e8f0; border-radius: 6px;
	color: #334155; background: #fff;
}
.me-date-filter button {
	padding: 5px 14px; font-size: 0.8125rem; font-weight: 600;
	background: #4f46e5; color: #fff;
	border: none; border-radius: 6px; cursor: pointer;
	transition: background 130ms ease;
}
.me-date-filter button:hover { background: #4338ca; }

.me-apply-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.me-apply-table th {
	padding: 10px 14px; background: #f8fafc;
	font-size: 0.75rem; font-weight: 700; color: #64748b;
	letter-spacing: 0.03em; text-align: center;
	border-bottom: 1px solid #e2e8f0;
}
.me-apply-table td {
	padding: 11px 14px;
	border-bottom: 1px solid #f1f5f9;
	text-align: center; color: #334155;
	vertical-align: middle;
}
.me-apply-table tbody tr:hover td { background: #f8f9ff; }
.me-apply-table .me-amount { font-weight: 700; font-variant-numeric: tabular-nums; color: #059669; }
.me-apply-table .me-member { font-weight: 600; color: #334155; }

/* ?? ?? ?? ?? ?? */
.me-status {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 3px 10px; border-radius: 9999px;
	font-size: 0.75rem; font-weight: 700;
	white-space: nowrap;
}
.me-status--wait   { background: #fff7ed; color: #c2410c; border: 1px solid rgba(194,65,12,.15); }
.me-status--done   { background: #d1fae5; color: #065f46; border: 1px solid rgba(6,95,70,.15); }
.me-status--reject { background: #fee2e2; color: #991b1b; border: 1px solid rgba(153,27,27,.15); }
.me-status--hold   { background: #fef9c3; color: #854d0e; border: 1px solid rgba(133,77,14,.15); }

/* ??? ?? ?? */
.me-admin-actions { display: flex; gap: 4px; justify-content: center; flex-wrap: wrap; }
.me-action-btn {
	padding: 3px 10px; border-radius: 6px;
	font-size: 0.75rem; font-weight: 600; cursor: pointer;
	border: 1px solid transparent;
	transition: all 120ms ease;
}
.me-action-btn--done   { background: #d1fae5; color: #065f46; border-color: rgba(6,95,70,.2); }
.me-action-btn--done:hover   { background: #059669; color: #fff; }
.me-action-btn--reject { background: #fee2e2; color: #991b1b; border-color: rgba(153,27,27,.2); }
.me-action-btn--reject:hover { background: #dc2626; color: #fff; }
.me-action-btn--hold   { background: #fef9c3; color: #854d0e; border-color: rgba(133,77,14,.2); }
.me-action-btn--hold:hover   { background: #eab308; color: #fff; }
.me-action-btn--wait   { background: #fff7ed; color: #c2410c; border-color: rgba(194,65,12,.2); }
.me-action-btn--wait:hover   { background: #d97706; color: #fff; }

/* ?? ?? ? ?? ?? ?? */
.me-company-select-card {
	display: flex; align-items: center; gap: 14px;
	padding: 14px 16px;
	background: #f8fafc;
	border: 1.5px solid #e2e8f0;
	border-radius: 10px; margin-bottom: 8px;
	cursor: pointer; transition: border-color 130ms ease, background 130ms ease;
}
.me-company-select-card.is-selected {
	background: #eef2ff; border-color: #6366f1;
	box-shadow: 0 0 0 3px rgba(99,102,241,.12);
}
.me-company-select-card__logo {
	flex: 0 0 52px; height: 38px; border-radius: 7px;
	overflow: hidden; background: linear-gradient(135deg, #1e1b4b, #4338ca);
}
.me-company-select-card__logo img { width: 100%; height: 100%; object-fit: cover; }
.me-company-select-card__name { font-weight: 700; color: #0f172a; font-size: 0.9375rem; }
.me-company-select-card__sub  { font-size: 0.8125rem; color: #94a3b8; }

/* ?? ?? ? ?? ?? ?? */
.me-view-apply-panel {
	padding: 20px 28px;
	background: #fff;
	border-bottom: 1px solid #edf0f5;
}
.me-view-apply-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
@media (max-width: 767px) { .me-view-apply-grid { grid-template-columns: repeat(2, 1fr); } }

/* ??????????????????????????????????
   ?? ?? ??
?????????????????????????????????? */
.me-rank-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.me-rank-modal.is-open { display: flex; }
.me-rank-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10,8,30,.72);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}
.me-rank-modal__dialog {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 460px;
	max-height: 88vh;
	overflow-y: auto;
	border-radius: 20px;
	background: #0f0d2a;
	box-shadow: 0 32px 80px rgba(0,0,0,.65), 0 0 0 1px rgba(255,255,255,.06);
	animation: meRankIn .28s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes meRankIn {
	from { transform: translateY(40px) scale(.92); opacity: 0; }
	to   { transform: translateY(0) scale(1);     opacity: 1; }
}
/* ?? */
.me-rank-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 20px 16px;
	background: linear-gradient(135deg, #1e1b4b 0%, #4f46e5 60%, #7c3aed 100%);
	border-radius: 20px 20px 0 0;
	position: sticky;
	top: 0;
	z-index: 2;
}
.me-rank-modal__header-inner {
	display: flex;
	align-items: center;
	gap: 10px;
}
.me-rank-modal__icon {
	font-size: 1.25rem;
	color: #fbbf24;
	text-shadow: 0 0 10px rgba(251,191,36,.6);
}
.me-rank-modal__title {
	font-size: 1.0625rem;
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
}
.me-rank-modal__close {
	background: rgba(255,255,255,.15);
	border: none;
	border-radius: 50%;
	width: 32px; height: 32px;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	color: #fff;
	transition: background .15s;
	flex-shrink: 0;
}
.me-rank-modal__close:hover { background: rgba(255,255,255,.3); }
/* ?? */
.me-rank-modal__body { padding-bottom: 4px; }
/* ??? */
.me-rank-podium {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	gap: 8px;
	padding: 24px 20px 0;
	background: linear-gradient(180deg, rgba(79,70,229,.15) 0%, transparent 100%);
}
.me-rank-podium__col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 130px;
}
.me-rank-podium__col--empty { visibility: hidden; }
/* ??? ??? ??? */
.me-rank-podium__medal {
	margin-bottom: 8px;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.me-rank-podium__medal .fa { font-size: 2rem; }
.me-rank-podium__col--1st .me-rank-podium__medal .fa { font-size: 2.6rem; }
/* 1?: ? */
.me-rank-podium__medal--1st .fa {
	color: #fbbf24;
	filter: drop-shadow(0 2px 8px rgba(251,191,36,.55));
}
/* 2?: ? */
.me-rank-podium__medal--2nd .fa {
	color: #94a3b8;
	filter: drop-shadow(0 2px 6px rgba(148,163,184,.4));
}
/* 3?: ? */
.me-rank-podium__medal--3rd .fa {
	color: #cd7f32;
	filter: drop-shadow(0 2px 6px rgba(205,127,50,.4));
}
.me-rank-podium__nick {
	font-size: 0.8rem;
	font-weight: 700;
	color: #cbd5e1;
	text-align: center;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0 4px;
	margin-bottom: 4px;
}
.me-rank-podium__col--1st .me-rank-podium__nick {
	font-size: 0.9375rem;
	color: #fff;
}
.me-rank-podium__val {
	font-size: 0.7rem;
	color: #86efac;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	margin-bottom: 8px;
	text-align: center;
}
.me-rank-podium__col--1st .me-rank-podium__val {
	font-size: 0.8125rem;
	color: #4ade80;
}
.me-rank-podium__block {
	width: 100%;
	border-radius: 6px 6px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 0.8125rem;
	color: #fff;
	letter-spacing: 0.02em;
}
.me-rank-podium__block--1st { background: linear-gradient(180deg,#fbbf24 0%,#d97706 100%); height: 72px; }
.me-rank-podium__block--2nd { background: linear-gradient(180deg,#94a3b8 0%,#475569 100%); height: 52px; }
.me-rank-podium__block--3rd { background: linear-gradient(180deg,#cd7f32 0%,#92400e 100%); height: 40px; }
/* 4?~ ?? */
.me-rank-list { padding: 14px 16px 4px; }
.me-rank-list__row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-radius: 10px;
	margin-bottom: 4px;
	background: rgba(255,255,255,.04);
	transition: background .12s;
}
.me-rank-list__row:hover { background: rgba(255,255,255,.08); }
.me-rank-list__no {
	min-width: 34px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #64748b;
}
.me-rank-list__nick {
	flex: 1;
	font-size: 0.875rem;
	font-weight: 600;
	color: #e2e8f0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.me-rank-list__amount {
	font-size: 0.875rem;
	font-weight: 700;
	color: #86efac;
	font-variant-numeric: tabular-nums;
}
.me-rank-list__cnt {
	font-size: 0.75rem;
	color: #475569;
	min-width: 30px;
	text-align: right;
}
/* ???? ? */
.me-rank-empty {
	text-align: center;
	padding: 44px 20px;
	color: #94a3b8;
	font-size: 0.9375rem;
	line-height: 1.6;
}
.me-rank-empty__icon {
	font-size: 3rem;
	color: #334155;
	display: block;
	margin-bottom: 14px;
}
.me-rank-empty small { color: #4b5563; font-size: 0.8125rem; }
/* ?? */
.me-rank-modal__footer {
	padding: 12px 20px 16px;
	text-align: center;
	font-size: 0.6875rem;
	color: #334155;
	border-top: 1px solid rgba(255,255,255,.06);
}
/* ?? ?? ?? */
.me-rank-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	height: 30px;
	padding: 0 12px;
	border-radius: 6px;
	border: none;
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
	color: #fff !important;
	font-size: 0.8125rem;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(99,102,241,.35);
	transition: filter .15s, box-shadow .15s;
}
.me-rank-btn:hover {
	filter: brightness(1.12);
	box-shadow: 0 4px 14px rgba(99,102,241,.45);
}
@media (max-width: 767px) {
	.me-rank-modal__dialog { max-width: 100%; border-radius: 16px; }
	.me-rank-podium { padding: 18px 12px 0; }
	.me-rank-podium__block--1st { height: 58px; }
	.me-rank-podium__block--2nd { height: 42px; }
	.me-rank-podium__block--3rd { height: 32px; }
	.me-rank-list { padding: 10px 12px 4px; }
}

/* ??????????????????????????????????
   ??? ???? ? ??/?? ??
?????????????????????????????????? */
.me-act-btn {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	height: 26px;
	padding: 0 9px;
	border-radius: 5px;
	border: none;
	font-size: 0.75rem;
	font-weight: 700;
	cursor: pointer;
	transition: filter .12s;
}
.me-act-btn + .me-act-btn { margin-left: 4px; }
.me-act-btn--approve {
	background: #10b981;
	color: #fff;
}
.me-act-btn--reject {
	background: #ef4444;
	color: #fff;
}
.me-act-btn:disabled { opacity: .5; cursor: not-allowed; }
.me-act-btn:not(:disabled):hover { filter: brightness(1.1); }

/* ??????????????????????????????????????????????
   ??? ?? ?????? ? ?? ?????? (???? ????? ???)
?????????????????????????????????????????????? */
.me-co-view { max-width:860px; margin:0 auto; padding:0 0 40px; }

/* ???? ??? */
.me-co-panel {
	display: flex;
	gap: 0;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 28px;
	background: #fff;
}
.me-co-panel__img {
	flex-shrink: 0;
	width: 50%;
	min-height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.me-co-panel__img img { width:100%; height:100%; padding: 40px 0px 40px; object-fit:cover; }
.me-co-panel__img-placeholder { opacity:.5; }
.me-co-panel__info { flex:1; padding:0; }

/* ???? ????? */
.me-co-info-table { width:100%; border-collapse:collapse; }
@media ( max-width: 576px ) { .me-co-info-table { border-top: 1px solid #f1f5f9; } }
.me-co-info-table tr { border-bottom:1px solid #f1f5f9; }
.me-co-info-table tr:last-child { border-bottom:none; }
.me-co-info-table th {
	width: 88px;
	padding: 14px 16px;
	background: #f8fafc;
	color: #64748b;
	font-size: .8125rem;
	font-weight: 600;
	text-align: left;
	white-space: nowrap;
}
.me-co-info-table td {
	padding: 14px 16px;
	font-size: .875rem;
	color: #1e293b;
}
.me-co-tag {
	display: inline-flex;
	padding: 2px 10px;
	background: #eef2ff;
	color: #4f46e5;
	border-radius: 999px;
	font-size: .8125rem;
	font-weight: 600;
}
.me-co-stat-inline { font-size:.875rem; font-weight:700; }
.me-co-stat-inline--done { color:#10b981; }
.me-co-stat-inline--wait { color:#f59e0b; }
.me-co-amount { color:#e53e3e; font-size:1.0625rem; font-weight:800; }

/* ????? ???? */
.me-co-list-section { background:#fff; border:1px solid #e2e8f0; border-radius:10px; overflow:hidden; }

/* ????? ??? */
.me-co-list-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border-bottom: 1px solid #e2e8f0;
	flex-wrap: wrap;
}
.me-co-list-title {
	font-size: .9375rem;
	font-weight: 700;
	color: #1e293b;
	display: flex;
	align-items: center;
	gap: 6px;
}
.me-co-list-title .fa { color:#4f46e5; }

/* ??? ??????? */
.me-co-list-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 auto;
}
.me-co-nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	background: #fff;
	color: #475569;
	font-size: .8125rem;
	text-decoration: none;
	transition: background .12s;
}
.me-co-nav-btn:hover { background:#f1f5f9; }
.me-co-nav-btn--disabled { pointer-events:none; }
.me-co-nav-label {
	font-size: .875rem;
	color: #475569;
	white-space: nowrap;
}
.me-co-nav-label b { color:#1e293b; }
.me-co-nav-label em { color:#4f46e5; font-style:normal; font-weight:600; }

/* ??? ??? */
.me-co-list-actions { display:flex; gap:6px; margin-left:auto; }
.me-co-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	height: 32px;
	padding: 0 12px;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	background: #fff;
	color: #475569;
	font-size: .8125rem;
	font-weight: 600;
	text-decoration: none;
	transition: background .12s;
}
.me-co-action-btn:hover { background:#f1f5f9; color:#1e293b; }
.me-co-action-btn--primary {
	background: #4f46e5;
	border-color: #4f46e5;
	color: #fff;
}
.me-co-action-btn--primary:hover { background:#4338ca; border-color:#4338ca; color:#fff; }

/* ? ?? ?? ?? */
.me-co-my-status {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.me-co-my-badge {
	display: inline-flex;
	align-items: center;
	padding: 1px 7px;
	border-radius: 999px;
	font-size: .75rem;
	font-weight: 700;
	line-height: 1.6;
}
.me-co-my-status--wait   { border-color: #fde68a !important; color: #92400e !important; }
.me-co-my-status--wait   .me-co-my-badge { background: #fef9c3; color: #92400e; }
.me-co-my-status--wait:hover { background: #fef9c3 !important; }
.me-co-my-status--done   { border-color: #6ee7b7 !important; color: #065f46 !important; }
.me-co-my-status--done   .me-co-my-badge { background: #d1fae5; color: #065f46; }
.me-co-my-status--done:hover { background: #d1fae5 !important; }
.me-co-my-status--reject { border-color: #fca5a5 !important; color: #991b1b !important; }
.me-co-my-status--reject .me-co-my-badge { background: #fee2e2; color: #991b1b; }
.me-co-my-status--reject:hover { background: #fee2e2 !important; }
.me-co-my-status--hold   { border-color: #fde68a !important; color: #92400e !important; }
.me-co-my-status--hold   .me-co-my-badge { background: #fef9c3; color: #92400e; }
.me-co-my-status--hold:hover { background: #fef9c3 !important; }

/* ??? ????? */
.me-co-table-wrap { overflow: visible; }
.me-co-table { width:100%; border-collapse:collapse; font-size:.875rem; }
.me-co-table thead tr { background:#f1f5f9; }
.me-co-table thead th {
	padding: 10px 14px;
	color: #475569;
	font-weight: 600;
	text-align: left;
	font-size: .8125rem;
	white-space: nowrap;
	border-bottom: 2px solid #e2e8f0;
}
.me-co-table tbody tr { border-bottom:1px solid #f1f5f9; transition:background .1s; }
.me-co-table tbody tr:hover { background:#f8fafc; }
.me-co-table tbody td { padding:12px 14px; color:#334155; }
.me-co-td-amount { font-weight:800; color:#4f46e5; }
.me-co-td-date { color:#94a3b8; font-size:.8125rem; }
/* ??ID: ?? ??? ?? ???? */
.me-co-td-id { font-size:.8125rem; color:#475569; font-weight:500; }

/* ???? ?: ?? ?? + ?? */
/* ???? ? - ??? ??? ? ?(row)? ?? */
.me-status-cell {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 6px;
	flex-wrap: nowrap;
}
/* ?? ?? ? me-status ? ??? ??? ??, ??? ???? ?? */
.me-reason-btn {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 10px;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 700;
	white-space: nowrap;
	cursor: pointer;
	background: #e0e7ff;
	color: #3730a3;
	border: 1px solid rgba(55,48,163,.2);
	transition: opacity .15s;
}
.me-reason-btn:hover { opacity: .75; }
.me-co-empty {
	text-align: center;
	padding: 40px 20px;
	color: #94a3b8;
	font-size: .875rem;
}

/* ???? ??? */
.me-admin-actions { display:flex; gap:4px; }
.me-action-btn {
	height: 26px;
	padding: 0 8px;
	border: none;
	border-radius: 5px;
	font-size: .75rem;
	font-weight: 700;
	cursor: pointer;
	transition: filter .12s;
}
.me-action-btn--done  { background:#10b981; color:#fff; }
.me-action-btn--reject { background:#ef4444; color:#fff; }
.me-action-btn--wait  { background:#f59e0b; color:#fff; }
.me-action-btn:hover  { filter:brightness(1.1); }
.me-action-btn:disabled { opacity:.5; cursor:not-allowed; }

/* ????? */
.me-co-paging { display:flex; justify-content:center; gap:4px; padding:14px; }
.me-co-paging__item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	height: 32px;
	padding: 0 8px;
	border-radius: 6px;
	font-size: .875rem;
	font-weight: 500;
	text-decoration: none;
	color: #64748b;
	border: 1px solid #e2e8f0;
}
.me-co-paging__item.is-active { background:#4f46e5; border-color:#4f46e5; color:#fff; }

/* ?????? ???? */
.me-co-apply-full-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: calc(100% - 32px);
	margin: 0 16px 16px;
	height: 46px;
	background: linear-gradient(135deg, #4f46e5, #7c3aed);
	color: #fff;
	border-radius: 8px;
	font-size: .9375rem;
	font-weight: 700;
	text-decoration: none;
	transition: filter .15s;
}
.me-co-apply-full-btn:hover { filter:brightness(1.08); color:#fff; }

/* ??? ??? */
.me-co-footer-btns {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 20px;
	padding: 12px 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
}

/* ?????? ?? ?? ?? ?? ?????? */
.me-pending-alert {
	margin: 10px 0;
	background: #fffbeb;
	border: 1px solid #fcd34d;
	border-left: 4px solid #f59e0b;
	border-radius: 10px;
	padding: 14px 16px;
}
.me-pending-alert__header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}
.me-pending-alert__icon {
	display: flex;
	color: #d97706;
	flex-shrink: 0;
}
.me-pending-alert__title {
	font-size: .875rem;
	font-weight: 700;
	color: #92400e;
}
.me-pending-alert__items {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.me-pending-alert__item {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px 4px 12px;
	background: #fff;
	border: 1px solid #fcd34d;
	border-radius: 20px;
	text-decoration: none;
	transition: background .15s, border-color .15s;
}
.me-pending-alert__item:hover {
	background: #fef3c7;
	border-color: #f59e0b;
}
.me-pending-alert__item-name {
	font-size: .8125rem;
	font-weight: 600;
	color: #1e293b;
}
.me-pending-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 18px;
	padding: 0 5px;
	background: #f59e0b;
	color: #fff;
	font-size: .6875rem;
	font-weight: 700;
	border-radius: 99px;
}

/* ?????? ?? ? (ublist-bar ?? ??, ?? ?) ?????? */
/* ublist-bar ? filter-tabs ?? ??? ?? (?? ??) */
.ublist-bar:has(+ .me-filter-tabs) { display: none; }
/* pending-alert ? section ????? bar ?? */
.me-pending-alert + section .ublist-bar { display: none; }

.me-filter-tabs {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: #f8fafc;
	border-top: none;
	border-bottom: 1px solid rgba(15,23,42,.06);
	border-left: none;
	border-right: none;
	margin: 0;
}
.me-filter-tab {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 13px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	font-size: .8125rem;
	font-weight: 600;
	color: #64748b;
	cursor: pointer;
	transition: background .15s, color .15s, border-color .15s;
}
.me-filter-tab:hover {
	background: #f1f5f9;
	color: #334155;
}
.me-filter-tab.is-active {
	background: #4f46e5;
	border-color: #4f46e5;
	color: #fff;
}
.me-filter-tab__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 16px;
	padding: 0 4px;
	background: rgba(255,255,255,.3);
	border-radius: 99px;
	font-size: .625rem;
	font-weight: 700;
}
.me-filter-tab.is-active .me-filter-tab__badge {
	background: rgba(255,255,255,.35);
}

/* ?????? ?? ?? ? ????? ?????? */
.ubr--pending {
	border-left: 3px solid #f59e0b;
	background: linear-gradient(to right, #fffbeb 0%, transparent 60%);
}
/* hover ? ?? inset box-shadow ??, ??? ?? ?? */
.ub-board .ubr--pending:hover {
	background: linear-gradient(to right, #fef3c7 0%, #f8fafc 100%);
	box-shadow:
		0 2px 10px rgba(245,158,11,.12),
		0 1px 3px rgba(15,23,42,.04);
}

/* ?????? ??? ?? ?? ?????? */
.me-pending-count-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	padding: 2px 7px;
	background: #fef3c7;
	border: 1px solid #fcd34d;
	border-radius: 99px;
	color: #d97706;
	font-size: .8125rem;
	font-weight: 700;
	text-decoration: none;
	transition: background .15s;
}
.me-pending-count-link:hover {
	background: #fde68a;
	color: #b45309;
}

/* ?????? */
@media (max-width: 640px) {
	.me-co-panel { flex-direction:column; }
	.me-co-panel__img { width:100%; height:100%; }
	.me-co-list-header { flex-direction:column; align-items:flex-start; }
	.me-co-list-nav { margin:0; }
	.me-co-list-actions { margin-left:0; }
}
