/* ============================================
   구인구직 게시판 스킨 (job-recruit)
   ============================================ */

/* --- 공통 --- */
.jr-wrap {
	font-size: 14px;
	background: #fff;
	border-radius: 0 0 16px 16px;
	padding: 0;
}

/* 서브메뉴 네비바: custom-main.css에서 글로벌 관리 */

/* ============================================
   분류탭 (카테고리 칩)
   ============================================ */
.jr-wrap #bo_cate {
	margin: 0 !important;
	padding: 16px 20px 4px !important;
	border: none !important;
	background: transparent !important;
	overflow: visible !important;
}
.jr-wrap #bo_cate.sly-tab {
	border: none !important;
}
.jr-wrap #bo_cate .d-flex {
	border: none !important;
	border-left: none !important;
}
.jr-wrap #bo_cate hr {
	display: none !important;
}
.jr-wrap #bo_cate .px-3,
.jr-wrap #bo_cate .px-sm-0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
.jr-wrap #bo_cate #bo_cate_ul {
	display: flex !important;
	flex-wrap: nowrap !important;
	gap: 8px !important;
	align-items: center !important;
	border: none !important;
	border-left: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.jr-wrap #bo_cate #bo_cate_ul > li {
	list-style: none !important;
	flex-shrink: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	border: none !important;
}
.jr-wrap #bo_cate #bo_cate_ul > li > a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	height: 34px !important;
	padding: 0 16px !important;
	margin: 0 !important;
	border: none !important;
	border-radius: 8px !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	line-height: 34px !important;
	color: #4e5968 !important;
	background: #f2f4f6 !important;
	text-decoration: none !important;
	white-space: nowrap !important;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s !important;
	cursor: pointer !important;
}
.jr-wrap #bo_cate #bo_cate_ul > li > a:hover {
	background: #e5e8eb !important;
	color: #191f28 !important;
	text-decoration: none !important;
}
.jr-wrap #bo_cate #bo_cate_ul > li.active > a {
	background: #191f28 !important;
	color: #fff !important;
	font-weight: 600 !important;
	box-shadow: 0 1px 3px rgba(25, 31, 40, 0.18) !important;
}
.jr-wrap #bo_cate .sly-btn {
	display: none !important;
}
.jr-wrap #bo_cate.sly-overflow .sly-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 28px !important;
	height: 34px !important;
	padding: 0 !important;
	border: none !important;
	border-radius: 8px !important;
	background: transparent !important;
	color: #8b95a1 !important;
	font-size: 15px !important;
	cursor: pointer !important;
}
.jr-wrap #bo_cate.sly-overflow .sly-btn:hover {
	background: #f2f4f6 !important;
	color: #4e5968 !important;
}
.jr-btn {
	display: inline-block;
	padding: 6px 16px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	line-height: 1.5;
	text-align: center;
}
.jr-btn-primary {
	background: #3b82f6;
	color: #fff;
}
.jr-btn-primary:hover {
	background: #2563eb;
	color: #fff;
	text-decoration: none;
}
.jr-btn-outline {
	background: transparent;
	color: #6b7280;
	border: 1px solid #d1d5db;
}
.jr-btn-outline:hover {
	background: #f3f4f6;
	color: #374151;
	text-decoration: none;
}
.jr-btn-lg {
	padding: 10px 32px;
	font-size: 15px;
}

/* ============================================
   배너
   ============================================ */
.jr-banner {
	padding: 0;
	background: transparent;
	border: none;
	margin-bottom: 8px;
	margin-top: -6px;
}
.jr-banner-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 60%, #0f4baf 100%);
	border-radius: 16px;
	padding: 28px 32px;
	overflow: hidden;
	min-height: 120px;
}
.jr-banner-inner::before {
	content: '';
	position: absolute;
	top: -40px;
	right: -40px;
	width: 200px;
	height: 200px;
	background: rgba(255,255,255,0.05);
	border-radius: 50%;
}
.jr-banner-inner::after {
	content: '';
	position: absolute;
	bottom: -60px;
	left: 30%;
	width: 160px;
	height: 160px;
	background: rgba(255,255,255,0.03);
	border-radius: 50%;
}
.jr-banner-content {
	position: relative;
	z-index: 1;
}
.jr-banner-badge {
	display: inline-block;
	padding: 3px 10px;
	background: rgba(255,255,255,0.15);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	border-radius: 4px;
	letter-spacing: 0.5px;
	margin-bottom: 10px;
	backdrop-filter: blur(4px);
}
.jr-banner-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 6px;
	line-height: 1.4;
}
.jr-banner-desc {
	font-size: 13px;
	color: rgba(255,255,255,0.7);
	margin: 0 0 12px;
	line-height: 1.4;
}
.jr-banner-tags {
	display: flex;
	gap: 8px;
}
.jr-banner-tag {
	display: inline-block;
	padding: 4px 12px;
	background: rgba(255,255,255,0.12);
	color: #fff;
	font-size: 12px;
	font-weight: 600;
	border-radius: 20px;
	backdrop-filter: blur(4px);
}
.jr-banner-tag--accent {
	background: rgba(59,130,246,0.4);
	border: 1px solid rgba(255,255,255,0.2);
}
.jr-banner-icon {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.1);
	border-radius: 16px;
	margin-left: 24px;
}
.jr-banner-icon i {
	font-size: 28px;
	color: rgba(255,255,255,0.8);
}

/* --- 검색창 (collapse) --- */
.jr-search-box {
	background: #f7f8fa;
	border-bottom: 1px solid #e5e7eb;
	padding: 12px 16px;
}
.jr-search-row {
	display: flex;
	gap: 8px;
	align-items: center;
}
.jr-search-input-group {
	flex: 1;
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
	transition: border-color 0.15s;
}
.jr-search-input-group:focus-within {
	border-color: #3b82f6;
}
.jr-search-input {
	flex: 1;
	border: none;
	background: transparent;
	padding: 9px 12px;
	font-size: 14px;
	color: #191f28;
	outline: none;
}
.jr-search-input::placeholder {
	color: #8b95a1;
}
.jr-search-submit {
	border: none;
	background: #3b82f6;
	color: #fff;
	padding: 9px 14px;
	cursor: pointer;
	transition: background 0.15s;
	font-size: 14px;
}
.jr-search-submit:hover {
	background: #2563eb;
}

/* --- 툴바 --- */
.jr-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 16px;
}
.jr-toolbar-left,
.jr-toolbar-right {
	display: flex;
	align-items: center;
	gap: 6px;
}
.jr-total-label {
	font-size: 13px;
	font-weight: 600;
	color: #4e5968;
}
.jr-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 8px;
	border: 1px solid #e5e7eb;
	background: #fff;
	color: #8b95a1;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.15s;
	text-decoration: none;
	padding: 0;
}
.jr-icon-btn:hover {
	border-color: #3b82f6;
	color: #3b82f6;
	text-decoration: none;
}
.jr-icon-btn.dropdown-toggle::after {
	display: none;
}
.jr-admin-dropdown {
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	padding: 4px 0;
	min-width: 140px;
}
.jr-admin-dropdown .dropdown-item {
	font-size: 13px;
	padding: 8px 16px;
	color: #4e5968;
}
.jr-admin-dropdown .dropdown-item:hover {
	background: #e8f3ff;
	color: #3b82f6;
}
.jr-write-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #3b82f6;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 7px 16px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s;
	text-decoration: none;
	white-space: nowrap;
}
.jr-write-btn:hover {
	background: #2563eb;
	color: #fff;
	text-decoration: none;
}

/* --- 섹션 --- */
.jr-section {
	padding: 0 16px;
	margin-bottom: 16px;
}
.jr-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0 10px;
	margin-bottom: 0;
}
.jr-section-title {
	font-size: 15px;
	font-weight: 700;
	margin: 0;
	color: #1f2937;
	letter-spacing: -0.01em;
}
.jr-section-title i {
	color: #3b82f6;
	margin-right: 5px;
	font-size: 13px;
}
.jr-total-count {
	font-size: 13px;
	color: #6b7280;
}

/* --- 프리미엄 카드 그리드 --- */
.jr-premium-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	overflow: hidden;
}
.jr-premium-card {
	position: relative;
	display: flex;
	align-items: stretch;
	background: #f9fafb;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	transition: box-shadow 0.2s;
	overflow: hidden;
	min-width: 0;
}
.jr-premium-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.jr-premium-link {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 0;
	padding: 14px 30px 14px 12px;
	text-decoration: none;
	color: inherit;
	gap: 12px;
}
.jr-premium-link:hover {
	text-decoration: none;
	color: inherit;
}

/* 로고 */
.jr-premium-logo {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	border-radius: 8px;
	overflow: hidden;
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
}
.jr-premium-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.jr-premium-logo i {
	font-size: 22px;
	color: #d1d5db;
}

/* 중앙 텍스트 */
.jr-premium-body {
	flex: 1;
	min-width: 0;
}
.jr-premium-top {
	margin-bottom: 2px;
	overflow: hidden;
}
.jr-company-name {
	font-size: 14px;
	color: #1f2937;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}
.jr-premium-badge {
	display: none;
}
.jr-premium-title {
	display: block;
	font-size: 13px;
	font-weight: 400;
	margin: 0 0 4px;
	color: #6b7280;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
}
.jr-premium-meta {
	display: flex;
	flex-wrap: nowrap;
	gap: 4px;
	align-items: center;
	overflow: hidden;
}
.jr-tag {
	display: inline-block;
	padding: 1px 6px;
	background: #eff6ff;
	color: #3b82f6;
	font-size: 11px;
	border-radius: 3px;
	font-weight: 500;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 120px;
	flex-shrink: 1;
	min-width: 0;
}
.jr-deadline {
	font-size: 11px;
	color: #9ca3af;
	white-space: nowrap;
	flex-shrink: 0;
}
.jr-deadline i {
	margin-right: 2px;
}

/* 카드 체크박스/북마크 */
.jr-card-chk {
	flex-shrink: 0;
	align-self: center;
	padding-left: 10px;
	z-index: 2;
}
.jr-bookmark,
.jr-bookmark-sm {
	position: absolute;
	background: none;
	border: none;
	color: #9ca3af;
	cursor: pointer;
	font-size: 16px;
	padding: 4px;
	transition: color 0.2s;
}
.jr-bookmark:hover,
.jr-bookmark-sm:hover {
	color: #f59e0b;
}
.jr-bookmark {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 2;
}

/* --- 일반채용 리스트 --- */
.jr-normal-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.jr-normal-card {
	position: relative;
	display: flex;
	align-items: center;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	background: #fff;
	transition: box-shadow 0.2s, border-color 0.2s;
}
.jr-normal-card:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	border-color: #d1d5db;
}
.jr-normal-link {
	display: flex;
	align-items: center;
	flex: 1;
	min-width: 0;
	padding: 14px 16px;
	text-decoration: none;
	color: inherit;
	gap: 14px;
}
.jr-normal-link:hover {
	text-decoration: none;
	color: inherit;
}
.jr-normal-thumb {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 10px;
	overflow: hidden;
	background: #f3f4f6;
}
.jr-normal-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.jr-normal-noimg {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #d1d5db;
	font-size: 22px;
}
.jr-normal-body {
	flex: 1;
	min-width: 0;
}
.jr-normal-top {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 3px;
}
.jr-ca-badge {
	display: inline-block;
	padding: 1px 6px;
	background: #dbeafe;
	color: #1d4ed8;
	font-size: 11px;
	border-radius: 3px;
	font-weight: 600;
}
.jr-company-sm {
	font-size: 12px;
	color: #6b7280;
	font-weight: 500;
}
.jr-normal-title {
	font-size: 14px;
	font-weight: 600;
	margin: 0 0 4px;
	color: #1f2937;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.jr-normal-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
}
.jr-tag-sm {
	display: inline-block;
	padding: 1px 6px;
	background: #f3f4f6;
	color: #6b7280;
	font-size: 11px;
	border-radius: 3px;
}
.jr-normal-right {
	flex-shrink: 0;
	text-align: right;
	padding-right: 28px;
}
.jr-deadline-sm {
	display: block;
	font-size: 12px;
	color: #ef4444;
	font-weight: 500;
}
.jr-date {
	display: block;
	font-size: 11px;
	color: #9ca3af;
	margin-top: 2px;
}
.jr-bookmark-sm {
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
}
.jr-row-chk {
	flex-shrink: 0;
	align-self: center;
	padding-left: 4px;
}

/* --- 빈 상태 --- */
.jr-empty {
	text-align: center;
	padding: 60px 20px;
	color: #9ca3af;
}
.jr-empty i {
	font-size: 40px;
	display: block;
	margin-bottom: 12px;
}
.jr-empty p {
	font-size: 14px;
	margin: 0;
}

/* --- 페이징 --- */
.jr-paging {
	padding: 20px 16px;
}

/* ============================================
   상세 뷰 페이지
   ============================================ */

.jr-view {
	padding: 0;
}

/* --- 뷰 헤더 --- */
.jr-view-header {
	padding: 24px 20px 16px;
	border-bottom: 1px solid #e5e7eb;
}
.jr-view-header-top {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}
.jr-view-ca-badge {
	display: inline-block;
	padding: 3px 10px;
	background: #dbeafe;
	color: #1d4ed8;
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
}
.jr-view-company {
	font-size: 14px;
	color: #6b7280;
	font-weight: 500;
}
.jr-view-title {
	font-size: 22px;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 12px;
	line-height: 1.4;
}
.jr-view-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.jr-view-meta-item {
	font-size: 13px;
	color: #6b7280;
}
.jr-view-meta-item i {
	margin-right: 3px;
}

/* --- 뷰 툴바 --- */
.jr-view-toolbar {
	display: flex;
	justify-content: flex-end;
	gap: 6px;
	padding: 12px 20px;
	border-bottom: 1px solid #e5e7eb;
}

/* --- 2컬럼 레이아웃 --- */
.jr-view-content-wrap {
	display: flex;
	gap: 24px;
	padding: 24px 20px;
}
.jr-view-info {
	flex: 1;
	min-width: 0;
}
.jr-apply-card {
	flex-shrink: 0;
	width: 300px;
}
.jr-apply-inner {
	position: sticky;
	top: 80px;
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
}

/* --- 정보 섹션 --- */
.jr-info-section {
	margin-bottom: 24px;
}
.jr-info-title {
	font-size: 15px;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #e5e7eb;
}
.jr-info-title i {
	margin-right: 6px;
	color: #6b7280;
}
.jr-info-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.jr-info-row {
	display: flex;
	align-items: center;
	gap: 12px;
}
.jr-info-label {
	flex-shrink: 0;
	width: 80px;
	font-size: 13px;
	color: #6b7280;
	font-weight: 500;
}
.jr-info-value {
	flex: 1;
}
.jr-pill {
	display: inline-block;
	padding: 4px 12px;
	background: #f3f4f6;
	color: #374151;
	font-size: 13px;
	border-radius: 20px;
	font-weight: 500;
}

/* --- 신청카드 --- */
.jr-apply-header {
	background: linear-gradient(135deg, #3b82f6, #2563eb);
	color: #fff;
	padding: 16px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
}
.jr-apply-header i {
	margin-right: 6px;
}
.jr-apply-countdown {
	padding: 16px;
	text-align: center;
	border-bottom: 1px solid #e5e7eb;
}
.jr-countdown-label {
	font-size: 12px;
	color: #6b7280;
	margin-bottom: 6px;
}
.jr-countdown-timer {
	font-size: 20px;
	font-weight: 700;
	color: #1f2937;
	font-variant-numeric: tabular-nums;
}
.jr-countdown-timer span:not(.jr-expired) {
	display: inline-block;
	background: #1f2937;
	color: #fff;
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 18px;
	min-width: 36px;
	text-align: center;
	margin: 0 1px;
}
.jr-expired {
	color: #ef4444;
	font-size: 16px;
}
.jr-apply-dates {
	padding: 12px 16px;
	border-bottom: 1px solid #e5e7eb;
}
.jr-apply-date-row {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	padding: 3px 0;
}
.jr-apply-date-label {
	color: #6b7280;
}
.jr-apply-date-value {
	color: #1f2937;
	font-weight: 500;
}
.jr-apply-btn {
	display: block;
	margin: 16px;
	padding: 12px;
	background: #0088cc;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	border-radius: 8px;
	text-align: center;
	text-decoration: none;
	transition: background 0.2s;
}
.jr-apply-btn:hover {
	background: #006da3;
	color: #fff;
	text-decoration: none;
}
.jr-apply-btn i {
	margin-right: 6px;
}
.jr-contact-display {
	text-align: center;
	font-size: 12px;
	color: #6b7280;
	padding: 0 16px 4px;
}
.jr-scrap-btn {
	display: block;
	width: calc(100% - 32px);
	margin: 8px 16px 16px;
	padding: 10px;
	background: #fff;
	color: #6b7280;
	font-size: 14px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	text-align: center;
	cursor: pointer;
	transition: background 0.2s, color 0.2s;
}
.jr-scrap-btn:hover {
	background: #f3f4f6;
	color: #1f2937;
}

/* --- 상세요강 --- */
.jr-view-detail {
	padding: 24px 20px;
	border-top: 1px solid #e5e7eb;
}
.jr-detail-title {
	font-size: 16px;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid #1f2937;
}
.jr-detail-title i {
	margin-right: 6px;
	color: #6b7280;
}
.jr-detail-content {
	line-height: 1.8;
	color: #374151;
	word-break: break-all;
}
.jr-detail-content img {
	max-width: 100%;
	height: auto;
}

/* --- 추천/비추천/스크랩 액션 --- */
.jr-action-btns {
	display: flex;
	justify-content: center;
	gap: 8px;
	padding: 20px;
	border-top: 1px solid #e5e7eb;
}
.jr-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 20px;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	background: #fff;
	color: #6b7280;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.jr-action-btn:hover {
	background: #f3f4f6;
	color: #1f2937;
	border-color: #9ca3af;
}
.jr-action-btn b {
	color: #ef4444;
	font-weight: 600;
}

/* --- 태그 --- */
.jr-tags {
	padding: 12px 20px;
}

/* --- 첨부파일 --- */
.jr-attachments {
	padding: 16px 20px;
	border-top: 1px solid #e5e7eb;
}
.jr-attach-group {
	margin-bottom: 8px;
}
.jr-attach-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	margin-right: 8px;
}
.jr-attach-link {
	display: inline-block;
	font-size: 13px;
	color: #3b82f6;
	margin-right: 12px;
}

/* --- 하단 버튼 --- */
.jr-view-bottom-btns {
	display: flex;
	justify-content: flex-end;
	gap: 6px;
	padding: 16px 20px;
	border-top: 1px solid #e5e7eb;
}

/* ============================================
   작성/수정 폼
   ============================================ */

.jr-write {
	padding: 16px;
}
.jr-write-card {
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 16px;
}
.jr-write-header {
	padding: 16px 20px;
	border-bottom: 1px solid #e5e7eb;
	background: #f9fafb;
}
.jr-write-header h3 {
	font-size: 16px;
	font-weight: 700;
	margin: 0;
	color: #1f2937;
}
.jr-write-header h3 i {
	margin-right: 6px;
	color: #6b7280;
}
.jr-write-field {
	padding: 14px 20px;
	border-bottom: 1px solid #f3f4f6;
}
.jr-write-label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 6px;
}
.jr-write-label em {
	color: #ef4444;
	font-style: normal;
}
.jr-write-input {
	width: 100%;
}
.jr-write-editor {
	min-height: 200px;
}
.jr-write-custom-section {
	border-top: 2px solid #e5e7eb;
	margin-top: 0;
}
.jr-write-section-title {
	font-size: 14px;
	font-weight: 700;
	color: #1f2937;
	padding: 14px 20px 0;
	margin: 0;
}
.jr-write-section-title i {
	margin-right: 6px;
	color: #6b7280;
}
.jr-write-field-row {
	display: flex;
	gap: 0;
}
.jr-write-half {
	flex: 1;
}
.jr-write-actions {
	display: flex;
	justify-content: center;
	gap: 12px;
	padding: 16px 0;
}

/* ============================================
   반응형
   ============================================ */

@media (max-width: 1199px) {
	.jr-premium-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	/* 배너 */
	.jr-banner-inner {
		padding: 20px 16px;
		min-height: auto;
	}
	.jr-banner-title {
		font-size: 15px;
	}
	.jr-banner-icon {
		width: 48px;
		height: 48px;
		margin-left: 12px;
	}
	.jr-banner-icon i {
		font-size: 22px;
	}

	.jr-premium-grid {
		grid-template-columns: minmax(0, 1fr);
	}
	.jr-premium-link {
		padding: 12px 10px;
		gap: 10px;
		padding-right: 28px;
	}

	/* 툴바 */
	.jr-toolbar {
		padding: 8px 12px;
	}
	.jr-write-btn span {
		display: none;
	}

	/* 일반 리스트 */
	.jr-normal-link {
		flex-wrap: wrap;
	}
	.jr-normal-right {
		width: 100%;
		text-align: left;
		padding-right: 0;
		padding-top: 4px;
		display: flex;
		gap: 8px;
	}
	.jr-bookmark-sm {
		position: static;
		transform: none;
	}

	/* 뷰 2컬럼 → 1컬럼 */
	.jr-view-content-wrap {
		flex-direction: column;
		padding: 16px;
	}
	.jr-apply-card {
		width: 100%;
	}
	.jr-apply-inner {
		position: static;
	}

	/* 뷰 헤더 */
	.jr-view-header {
		padding: 16px;
	}
	.jr-view-title {
		font-size: 18px;
	}

	/* 뷰 툴바 */
	.jr-view-toolbar {
		padding: 10px 16px;
		flex-wrap: wrap;
	}

	/* 상세요강 */
	.jr-view-detail {
		padding: 16px;
	}

	/* 작성 폼 */
	.jr-write {
		padding: 8px;
	}
	.jr-write-field {
		padding: 12px 14px;
	}
	.jr-write-field-row {
		flex-direction: column;
	}
	.jr-write-section-title {
		padding: 12px 14px 0;
	}
}

/* --- 프리미엄 토글 (관리자 전용, 미니멀) --- */
.jr-premium-toggle {
	position: absolute;
	bottom: 6px;
	right: 6px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border: none;
	background: none;
	color: #d1d5db;
	font-size: 12px;
	cursor: pointer;
	transition: color 0.15s;
	padding: 0;
	line-height: 1;
	opacity: 0.5;
}
.jr-premium-toggle:hover {
	color: #f59e0b;
	opacity: 1;
}
.jr-premium-toggle--active {
	color: #f59e0b;
	opacity: 0.8;
}
.jr-premium-toggle--active:hover {
	color: #d97706;
	opacity: 1;
}
.jr-premium-toggle:disabled {
	opacity: 0.3;
	cursor: wait;
}
.jr-normal-card .jr-premium-toggle {
	top: 6px;
	bottom: auto;
}

/* ============================================
   다크모드
   ============================================ */

html.dark-mode .jr-wrap,
html.dark-mode .jr-view,
html.dark-mode .jr-write {
	color: #d1d5db;
}
html.dark-mode .jr-wrap {
	background: #111827;
}

/* 서브네비 다크모드: custom-main.css에서 글로벌 관리 */

/* 분류탭 다크모드 */
html.dark-mode .jr-wrap #bo_cate #bo_cate_ul > li > a {
	color: #9ca3af !important;
	background: #1f2937 !important;
}
html.dark-mode .jr-wrap #bo_cate #bo_cate_ul > li > a:hover {
	background: #374151 !important;
	color: #e5e7eb !important;
}
html.dark-mode .jr-wrap #bo_cate #bo_cate_ul > li.active > a {
	background: #e5e7eb !important;
	color: #111827 !important;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}
html.dark-mode .jr-wrap #bo_cate.sly-overflow .sly-btn {
	color: #6b7280 !important;
}
html.dark-mode .jr-wrap #bo_cate.sly-overflow .sly-btn:hover {
	background: #1f2937 !important;
	color: #9ca3af !important;
}

/* 검색창 */
html.dark-mode .jr-search-box {
	background: #0d1117;
	border-bottom-color: #374151;
}
html.dark-mode .jr-search-input-group {
	background: #1f2937;
	border-color: #374151;
}
html.dark-mode .jr-search-input-group:focus-within {
	border-color: #3b82f6;
}
html.dark-mode .jr-search-input {
	color: #e5e7eb;
}
html.dark-mode .jr-search-input::placeholder {
	color: #6b7280;
}

/* 툴바 */
html.dark-mode .jr-toolbar {
}
html.dark-mode .jr-total-label {
	color: #9ca3af;
}
html.dark-mode .jr-icon-btn {
	background: #1f2937;
	border-color: #374151;
	color: #6b7280;
}
html.dark-mode .jr-icon-btn:hover {
	border-color: #3b82f6;
	color: #3b82f6;
}
html.dark-mode .jr-admin-dropdown {
	background: #1f2937;
	border-color: #374151;
}
html.dark-mode .jr-admin-dropdown .dropdown-item {
	color: #d1d5db;
}
html.dark-mode .jr-admin-dropdown .dropdown-item:hover {
	background: #374151;
	color: #e5e7eb;
}

/* 섹션 */
html.dark-mode .jr-section-title {
	color: #e5e7eb;
}
html.dark-mode .jr-total-count {
	color: #9ca3af;
}

/* 프리미엄 카드 */
html.dark-mode .jr-premium-card {
	background: #1f2937;
	border-color: #374151;
}
html.dark-mode .jr-premium-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
html.dark-mode .jr-premium-logo {
	background: #111827;
}
html.dark-mode .jr-premium-logo i {
	color: #4b5563;
}
html.dark-mode .jr-company-name {
	color: #e5e7eb;
}
html.dark-mode .jr-premium-title {
	color: #9ca3af;
}
html.dark-mode .jr-tag {
	background: #1e3a5f;
	color: #60a5fa;
}
html.dark-mode .jr-deadline {
	color: #6b7280;
}

/* 일반채용 */
html.dark-mode .jr-normal-card {
	background: #1f2937;
	border-color: #374151;
}
html.dark-mode .jr-normal-card:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
	border-color: #4b5563;
}
html.dark-mode .jr-normal-thumb {
	background: #111827;
}
html.dark-mode .jr-normal-noimg {
	color: #4b5563;
}
html.dark-mode .jr-ca-badge {
	background: #1e3a5f;
	color: #60a5fa;
}
html.dark-mode .jr-company-sm {
	color: #9ca3af;
}
html.dark-mode .jr-normal-title {
	color: #e5e7eb;
}
html.dark-mode .jr-tag-sm {
	background: #374151;
	color: #9ca3af;
}
html.dark-mode .jr-date {
	color: #6b7280;
}
html.dark-mode .jr-bookmark,
html.dark-mode .jr-bookmark-sm {
	color: #6b7280;
}
html.dark-mode .jr-bookmark:hover,
html.dark-mode .jr-bookmark-sm:hover {
	color: #f59e0b;
}

/* 빈 상태 */
html.dark-mode .jr-empty {
	color: #6b7280;
}

/* 프리미엄 토글 다크모드 */
html.dark-mode .jr-premium-toggle {
	color: #4b5563;
}
html.dark-mode .jr-premium-toggle:hover {
	color: #f59e0b;
}
html.dark-mode .jr-premium-toggle--active {
	color: #f59e0b;
}
html.dark-mode .jr-premium-toggle--active:hover {
	color: #d97706;
}

/* --- 뷰 다크모드 --- */
html.dark-mode .jr-view-header {
	border-bottom-color: #374151;
}
html.dark-mode .jr-view-ca-badge {
	background: #1e3a5f;
	color: #60a5fa;
}
html.dark-mode .jr-view-company {
	color: #9ca3af;
}
html.dark-mode .jr-view-title {
	color: #f3f4f6;
}
html.dark-mode .jr-view-meta-item {
	color: #9ca3af;
}
html.dark-mode .jr-view-toolbar {
	border-bottom-color: #374151;
}

/* 정보 섹션 */
html.dark-mode .jr-info-title {
	color: #e5e7eb;
	border-bottom-color: #374151;
}
html.dark-mode .jr-info-title i {
	color: #9ca3af;
}
html.dark-mode .jr-info-label {
	color: #9ca3af;
}
html.dark-mode .jr-pill {
	background: #374151;
	color: #d1d5db;
}

/* 신청카드 */
html.dark-mode .jr-apply-inner {
	background: #1f2937;
	border-color: #374151;
}
html.dark-mode .jr-apply-countdown {
	border-bottom-color: #374151;
}
html.dark-mode .jr-countdown-label {
	color: #9ca3af;
}
html.dark-mode .jr-countdown-timer {
	color: #e5e7eb;
}
html.dark-mode .jr-countdown-timer span:not(.jr-expired) {
	background: #374151;
	color: #e5e7eb;
}
html.dark-mode .jr-apply-dates {
	border-bottom-color: #374151;
}
html.dark-mode .jr-apply-date-label {
	color: #9ca3af;
}
html.dark-mode .jr-apply-date-value {
	color: #e5e7eb;
}
html.dark-mode .jr-contact-display {
	color: #9ca3af;
}
html.dark-mode .jr-scrap-btn {
	background: #1f2937;
	color: #9ca3af;
	border-color: #4b5563;
}
html.dark-mode .jr-scrap-btn:hover {
	background: #374151;
	color: #e5e7eb;
}

/* 액션 버튼 */
html.dark-mode .jr-action-btns {
	border-top-color: #374151;
}
html.dark-mode .jr-action-btn {
	background: #1f2937;
	border-color: #4b5563;
	color: #9ca3af;
}
html.dark-mode .jr-action-btn:hover {
	background: #374151;
	color: #e5e7eb;
	border-color: #6b7280;
}

/* 드롭다운 (관리 메뉴) */
html.dark-mode .jr-view-toolbar .dropdown-menu {
	background: #1f2937;
	border-color: #374151;
}
html.dark-mode .jr-view-toolbar .dropdown-item {
	color: #d1d5db;
}
html.dark-mode .jr-view-toolbar .dropdown-item:hover {
	background: #374151;
	color: #e5e7eb;
}

/* 상세요강 */
html.dark-mode .jr-view-detail {
	border-top-color: #374151;
}
html.dark-mode .jr-detail-title {
	color: #e5e7eb;
	border-bottom-color: #4b5563;
}
html.dark-mode .jr-detail-title i {
	color: #9ca3af;
}
html.dark-mode .jr-detail-content {
	color: #d1d5db;
}

/* 첨부파일 */
html.dark-mode .jr-attachments {
	border-top-color: #374151;
}
html.dark-mode .jr-attach-label {
	color: #d1d5db;
}

/* 하단 버튼 */
html.dark-mode .jr-view-bottom-btns {
	border-top-color: #374151;
}

/* --- 작성폼 다크모드 --- */
html.dark-mode .jr-write-card {
	background: #1f2937;
	border-color: #374151;
}
html.dark-mode .jr-write-header {
	background: #111827;
	border-bottom-color: #374151;
}
html.dark-mode .jr-write-header h3 {
	color: #e5e7eb;
}
html.dark-mode .jr-write-field {
	border-bottom-color: #2d3748;
}
html.dark-mode .jr-write-label {
	color: #d1d5db;
}
html.dark-mode .jr-write-custom-section {
	border-top-color: #4b5563;
}
html.dark-mode .jr-write-section-title {
	color: #e5e7eb;
}
html.dark-mode .jr-write-section-title i {
	color: #9ca3af;
}

/* 다크모드 form-control / custom-select 오버라이드 */
html.dark-mode .jr-write .form-control,
html.dark-mode .jr-write .custom-select {
	background-color: #111827;
	border-color: #374151;
	color: #e5e7eb;
}
html.dark-mode .jr-write .form-control:focus,
html.dark-mode .jr-write .custom-select:focus {
	border-color: #3b82f6;
}
html.dark-mode .jr-write .form-control::placeholder {
	color: #6b7280;
}

/* 페이징 다크모드 */
html.dark-mode .jr-paging .page-link {
	background-color: #1f2937;
	border-color: #374151;
	color: #d1d5db;
}
html.dark-mode .jr-paging .page-item.active .page-link {
	background-color: #3b82f6;
	border-color: #3b82f6;
	color: #fff;
}
