:root {
	--main-color: #1457c9;
	--sub-color: #ff8a00;
	--max-width: 1440px;
	--nav-height: 88px;
	--text-color: #1f2937;
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	font-family: 'Pretendard', 'Noto Sans KR', sans-serif;
	color: var(--text-color);
	word-break: keep-all;
	overflow-wrap: anywhere;
}

a {
	color: inherit;
	text-decoration: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav {
	height: var(--nav-height);
	position: sticky;
	top: 0;
	z-index: 200;
	border-bottom: 1px solid #e8edf4;
	background-color: #ffffff;
	box-shadow: 0 2px 12px rgba(20, 87, 201, 0.06);
}

.nav-inner {
	height: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.nav-left {
	flex: 0 0 auto;
}

.logo-link {
	display: inline-flex;
	align-items: center;
}

.logo-image {
	height: 50px;
	width: auto;
	display: block;
}

.nav-center {
	flex: 1 1 auto;
	display: flex;
	justify-content: flex-end;
}

.nav-center ul {
	display: flex;
	align-items: center;
	gap: 34px;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.nav-menu-item {
	position: relative;
}

.nav-center a {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding: 10px 0;
	color: #1f2937;
	transition: color 0.2s ease;
}

.nav-center a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 2px;
	height: 2px;
	background-color: var(--main-color);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
	border-radius: 999px;
}

.nav-center a:hover,
.nav-center a:focus-visible {
	color: var(--main-color);
}

.nav-center a:hover::after,
.nav-center a:focus-visible::after {
	transform: scaleX(1);
}

.nav-menu-divider {
	flex: 0 0 auto;
	width: 1px;
	height: 18px;
	background-color: #d1d5db;
}

.nav-hamburger-wrap {
	display: none;
	align-items: center;
	justify-content: center;
}

.nav-hamburger-btn {
	position: relative;
	width: 44px;
	height: 44px;
	border: 0;
	background: #f3f6fb;
	border-radius: 12px;
	padding: 0;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transition: background 0.2s ease, transform 0.2s ease;
}

.nav-hamburger-btn:hover {
	background: #e8eefb;
	transform: translateY(-1px);
}

.nav-hamburger-btn span {
	display: block;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: #1f2937;
}

.nav-drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100vh;
	width: min(82vw, 320px);
	background: #ffffff;
	box-shadow: -14px 0 32px rgba(15, 23, 42, 0.12);
	z-index: 2200;
	padding: 24px 18px 18px;
	transform: translateX(105%);
	transition: transform 0.22s ease;
	pointer-events: none;
}

.nav-drawer.is-open {
	transform: translateX(0);
	pointer-events: auto;
}

.nav-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 18px;
	margin-bottom: 12px;
	border-bottom: 1px solid #e5e7eb;
	font-size: 18px;
	font-weight: 800;
	color: #111827;
}

.nav-drawer-close {
	border: 0;
	background: transparent;
	font-size: 30px;
	line-height: 1;
	color: #475569;
	cursor: pointer;
}

.nav-drawer-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.nav-drawer-list a {
	display: flex;
	align-items: center;
	padding: 14px 12px;
	border-radius: 12px;
	color: #1f2937;
	font-size: 17px;
	font-weight: 600;
	transition: background 0.15s ease, color 0.15s ease;
}

.nav-drawer-list a:hover,
.nav-drawer-list a:focus-visible {
	background: #f3f6fb;
	color: #1457c9;
}

.nav-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.38);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease;
	z-index: 2190;
}

.nav-drawer-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.nav-right {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 16px;
}

.nav-right-small {
	display: flex;
	align-items: center;
	gap: 2px;
	font-size: 14px;
	font-weight: 400;
	color: #6b7280;
}

.nav-divider {
	display: inline-block;
	width: 1px;
	height: 12px;
	background-color: #d1d5db;
	margin: 0 4px;
}

.nav-right-small a {
	padding: 8px 10px;
	border-radius: 999px;
	/* transition: background-color 0.2s ease, color 0.2s ease; */
}

.nav-right-small a:hover,
.nav-right-small a:focus-visible {
	background-color: #f3f6fb;
	color: var(--main-color);
}

.nav-mypage-link {
	font-weight: 700;
	color: var(--main-color);
}

.nav-right-strong {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
}

.nav-btn-post {
	padding: 9px 18px;
	border-radius: 8px;
	border: 1.5px solid var(--main-color);
	background-color: #ffffff;
	color: var(--main-color);
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
}

.nav-btn-post:hover,
.nav-btn-post:focus-visible {
	background-color: var(--main-color);
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(20, 87, 201, 0.18);
}

.nav-btn-resume {
	padding: 9px 18px;
	border-radius: 8px;
	border: 1.5px solid transparent;
	background-color: var(--main-color);
	color: #ffffff;
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	font-family: inherit;
}

.nav-btn-resume:hover,
.nav-btn-resume:focus-visible {
	background-color: #0f46a3;
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(20, 87, 201, 0.28);
}

.main-visual {
	position: relative;
	height: calc(100vh - var(--nav-height));
	min-height: 520px;
	background-image: url('/images/main_bg.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-inner {
	height: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.hero-content {
	max-width: 620px;
	color: #ffffff;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.24);
}

.hero-kicker {
	margin: 0 0 10px;
	font-size: 38px;
	font-weight: 900;
	line-height: 1.2;
	/* color: var(--sub-color); */
	/* text-shadow: 0 2px 10px rgba(255, 255, 255, 0.35); */
}

.hero-title {
	margin: 0;
	font-size: 56px;
	font-weight: 800;
	line-height: 1.16;
	letter-spacing: -0.02em;
}

.hero-desc {
	margin: 18px 0 0;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	opacity: 0.95;
}

.hero-cta {
	margin-top: 48px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.hero-cta a,
.hero-cta button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 132px;
	height: 48px;
	padding: 0 18px;
	border-radius: 999px;
	font-size: 16px;
	font-weight: 700;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
	border: none;
	cursor: pointer;
	font-family: inherit;
}

.hero-cta a:hover,
.hero-cta button:hover {
	transform: translateY(-1px);
}

.hero-cta .store-badge {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: flex-start !important;
	min-width: 260px;
	height: 56px;
	padding: 10px 16px;
	border-radius: 14px;
	border: 1.5px solid #ffffff;
	background: transparent;
	color: #ffffff;
	gap: 14px;
	text-align: left;
	text-decoration: none;
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.hero-cta .store-badge:hover {
	transform: translateY(-2px);
	border-color: #ffffff;
}

.store-badge-logo {
	display: block;
	width: 28px;
	height: 28px;
	object-fit: contain;
	flex: 0 0 auto;
}

.store-badge-text {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1.15;
	height: 100%;
}

.store-badge-text small {
	display: none;
}

.store-badge-text strong {
	display: block;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.01em;
	white-space: nowrap;
	line-height: 1;
	transform: translateY(-1px);
}

.cta-primary {
	background-color: var(--main-color);
	color: #ffffff;
}

.cta-primary:hover {
	background-color: #0f46a3;
}

.cta-secondary {
	background-color: #ffffff;
	color: var(--main-color);
}

.cta-secondary:hover {
	background-color: #edf3ff;
}

/* ═══════════════════════════════════════════════════════
   Hero 하단: 2단 타깃 분기 섹션 (웹 전용)
═══════════════════════════════════════════════════════ */
.target-split-section {
	width: 100%;
	max-width: none;
	padding: 0;
	background: #ffffff;
}

.target-split-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	max-width: none;
	margin: 0;
}

.target-split-card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 420px;
	overflow: hidden;
	background: linear-gradient(135deg, #0d4db2 0%, #081a3a 100%);
}

.target-split-card.target-company {
	background: linear-gradient(135deg, #0f172a 0%, #1457c9 100%);
}

.target-split-card.target-company .target-split-media {
	display: none;
}

.target-split-card.target-worker {
	background: linear-gradient(180deg, #234987 0%, #162c55 100%);
	border: 2px solid #1f8fff;
}

.target-split-card.target-worker .target-split-media {
	display: none;
}

.target-split-media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.target-split-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.target-split-card::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(6, 12, 24, 0) 30%, rgba(6, 12, 24, 0.82) 100%);
}

.target-split-body {
	position: relative;
	z-index: 2;
	padding: 32px 36px 34px;
	color: #ffffff;
}

.target-split-title {
	margin: 0 0 14px;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: -0.02em;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.target-split-heading {
	display: block;
}

.target-split-title-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 10px;
	font-size: 18px;
	color: #9bc7ff;
}

.target-split-title-row {
	position: relative;
	padding-right: 190px;
}

.target-split-title-row .target-split-title {
	margin: 0;
}

.target-split-inline-image {
	position: absolute;
	right: 0;
	top: 0;
	width: 170px;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.24));
}

.target-split-card.target-worker::after {
	background: linear-gradient(90deg, rgba(10, 27, 61, 0.12) 25%, rgba(10, 27, 61, 0.78) 72%, rgba(10, 27, 61, 0.9) 100%);
}

.target-split-card.target-worker .target-split-body {
	padding: 42px 36px 34px;
}

.target-split-card.target-company .target-split-title-row {
	position: static;
	padding-right: 210px;
}

.target-split-card.target-company .target-split-inline-image {
	right: 12px;
	top: auto;
	bottom: 0;
	width: 205px;
	filter: drop-shadow(0 12px 24px rgba(2, 6, 18, 0.45));
}

.target-split-card.target-worker .target-split-title-row {
	position: static;
	padding-right: 235px;
}

.target-split-card.target-company .target-split-title,
.target-split-card.target-worker .target-split-title {
	font-size: 30px;
	line-height: 1.22;
	letter-spacing: -0.03em;
}

.target-split-card.target-worker .target-split-inline-image {
	right: 12px;
	top: auto;
	bottom: 0;
	width: 235px;
	filter: drop-shadow(0 12px 24px rgba(2, 6, 18, 0.45));
}

.target-split-card.target-company .target-split-desc,
.target-split-card.target-worker .target-split-desc {
	margin-top: 12px;
	max-width: 520px;
	font-size: 17px;
	line-height: 1.7;
	color: #d8e8ff;
}

.target-split-card.target-worker .target-split-actions {
	gap: 10px;
}

.target-split-card.target-worker .target-split-btn {
	height: 44px;
	padding: 0 20px;
	font-size: 14px;
	font-weight: 800;
}

.target-split-card.target-worker .target-split-btn-primary {
	background: #1776ff;
}

.target-split-card.target-worker .target-split-btn-primary:hover {
	background: #0f66e4;
}

.target-split-card.target-worker .target-split-btn-outline {
	border: 1.5px solid rgba(255, 255, 255, 0.7);
	background: rgba(10, 22, 49, 0.28);
}

.target-split-desc {
	margin: 0 0 26px;
	font-size: 15px;
	line-height: 1.7;
	color: #e5e9f0;
	max-width: 440px;
}

.target-split-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.target-split-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	height: 50px;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.target-split-btn:hover {
	transform: translateY(-2px);
}

.target-split-btn-primary {
	background-color: var(--main-color);
	color: #ffffff;
}

.target-split-btn-primary:hover {
	background-color: #0f46a3;
}

.target-split-btn-outline {
	border: 1.5px solid #ffffff;
	color: #ffffff;
	background: transparent;
}

.target-split-btn-outline:hover {
	background: rgba(255, 255, 255, 0.14);
}


@media (max-width: 400px) {
	.target-split-heading {
		width: 290px !important;
		max-width: 290px !important;
	}
}

@media (max-width: 860px) {

	.target-split-inner {
		grid-template-columns: 1fr;
	}

	.target-split-card {
		min-height: 280px;
	}

	.target-split-body {
		padding: 24px 22px 26px;
	}

	.target-split-title {
		font-size: 22px;
		width: 100%;
	}

	.target-split-title-row {
		position: relative;
		padding-right: 0;
		min-height: 100px;
		overflow: hidden;
	}

	.target-split-inline-image {
		position: absolute;
		right: -4px;
		top: auto;
		bottom: 0;
		transform: none;
		display: block;
		width: min(36vw, 145px);
		height: auto;
		object-fit: contain;
		opacity: 0.24;
		pointer-events: none;
		z-index: 0;
	}

	.target-split-heading {
		position: relative;
		z-index: 1;
		width: 290px;
		max-width: 290px;
	}

	.target-split-card.target-worker .target-split-body {
		padding: 18px 22px 18px;
	}

	.target-split-card.target-worker .target-split-title-row {
		min-height: 100px;
	}

	.target-split-card.target-worker .target-split-title,
	.target-split-card.target-company .target-split-title {
		font-size: 18px;
		line-height: 1.28;
		word-break: keep-all;
		overflow-wrap: normal;
		max-width: 100% !important;
	}

	.target-split-heading {
		width: 290px !important;
		max-width: 290px !important;
	}

	.target-split-card.target-worker .target-split-desc {
		font-size: 14px;
		margin-top: 2px;
		max-width: 100%;
	}

	.target-split-card.target-company .target-split-desc {
		font-size: 14px;
		margin-top: 2px;
		max-width: 100%;
	}

	.target-split-card.target-worker .target-split-inline-image {
		right: -8px;
		width: min(36vw, 145px);
	}

	.target-split-card.target-company .target-split-title-row {
		min-height: 100px;
	}

	.target-split-card.target-company .target-split-inline-image {
		right: -8px;
		width: min(36vw, 145px);
	}

	.target-split-desc {
		font-size: 14px;
		max-width: 100%;
	}

	.target-split-btn {
		height: 46px;
		padding: 0 20px;
		font-size: 14px;
	}
}

/* ── 모바일 전용 요소 기본 숨김 ── */
.nav-mobile-actions {
	display: none;
	align-items: center;
	gap: 8px;
}

.nav-bell-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
	border-radius: 8px;
	color: #374151;
	font-size: 19px;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-bell-btn:hover {
	background-color: #f3f6fb;
	color: var(--main-color);
}

.nav-bell-btn i {
	color: inherit;
	line-height: 1;
	-webkit-text-fill-color: #ffffff;
	-webkit-text-stroke: 1.2px currentColor;
}

/* ── 하단 고정바 ── */
.mobile-bottom-nav {
	display: flex;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 300;
	background-color: #ffffff;
	border-top: 1px solid #e8edf4;
	box-shadow: 0 -4px 16px rgba(20, 87, 201, 0.08);
	min-height: 84px;
	padding: 10px 6px calc(10px + env(safe-area-inset-bottom, 0));
}

.bottom-nav-item {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	padding: 2px 4px;
	border: none;
	background: transparent;
	color: #1457c9;
	font-size: 11.5px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: color 0.15s ease, background-color 0.15s ease;
}

.bottom-nav-item i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: #e8f0fe;
	color: var(--main-color);
	font-size: 18px;
	line-height: 1;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.bottom-nav-item-more i {
	font-size: 18px;
	font-weight: 700;
}

.bottom-nav-item:hover i,
.bottom-nav-item:focus-visible i {
	background-color: var(--main-color);
	color: #ffffff;
}

.bottom-nav-item:hover,
.bottom-nav-item:focus-visible {
	color: var(--main-color);
}

/* ── 1100px 이하 ── */
@media (max-width: 1100px) {
	:root {
		--nav-height: 72px;
	}

	.nav-inner {
		padding: 0 16px;
	}

	.hero-inner {
		padding: 0 16px;
	}

	.nav-center ul {
		gap: 22px;
		font-size: 15px;
	}

	.nav-right {
		gap: 10px;
	}

	.nav-btn-post,
	.nav-btn-resume {
		padding: 8px 14px;
		font-size: 13px;
	}

	.hero-kicker {
		font-size: 28px;
	}

	.hero-title {
		font-size: 44px;
	}
}

.cta-banner-section {
	padding: 0;
	margin: 0;
	background-color: #ffffff;
}

.cta-banner-inner {
	max-width: var(--max-width);
	margin: 0 auto;
}

.cta-banner-card {
	position: relative;
	overflow: hidden;
	min-height: 420px;
	border-radius: 22px;
	margin: 0;
}

.cta-banner-content {
	padding: 42px 42px 36px;
}

@media (min-width: 861px) {
	.cta-banner-actions .store-badge-logo {
		display: none;
	}

	.cta-banner-actions .store-badge {
		justify-content: center;
		padding-left: 20px;
		padding-right: 20px;
	}
}

/* ── 모바일 860px 이하 ── */
@media (max-width: 860px) {
	:root {
		--nav-height: 60px;
	}

	.cta-banner-section {
		padding: 0 16px;
	}

	.cta-banner-card {
		min-height: 440px;
		border-radius: 18px;
		margin: 0;
	}

	.cta-banner-card::after,
	.cta-banner-image {
		border-radius: 18px;
	}

	.cta-banner-content {
		min-height: 440px;
		padding: 28px 20px;
	}

	.cta-banner-title {
		font-size: 31px;
	}

	.cta-banner-desc {
		font-size: 14px;
		line-height: 1.6;
	}

	.cta-banner-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.cta-banner-actions .store-badge {
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: flex-start !important;
		width: min(100%, 260px);
		min-width: 0;
	}

	.site-nav {
		height: var(--nav-height);
	}

	.logo-image {
		height: 38px;
	}

	.nav-inner {
		padding: 0 16px;
		flex-wrap: nowrap;
		justify-content: space-between;
		height: var(--nav-height);
	}

	.nav-center {
		display: none;
	}

	.nav-hamburger-wrap {
		display: flex;
	}

	.nav-mobile-actions {
		display: flex;
	}

	body {
		padding-bottom: calc(76px + env(safe-area-inset-bottom, 0));
	}

	.hero-inner {
		align-items: center;
		justify-content: center;
		padding: 0 16px;
	}

	.hero-content {
		max-width: 100%;
		text-align: center;
	}

	.hero-kicker {
		font-size: 22px;
	}

	.hero-title {
		font-size: 30px;
		line-height: 1.24;
	}

	.hero-desc {
		font-size: 14px;
		line-height: 1.6;
	}

	.hero-cta {
		margin-top: 34px;
		justify-content: center;
	}

	.hero-cta a {
		min-width: min(300px, 100%);
		height: 54px;
	}

	.store-badge {
		display: inline-flex;
		flex-direction: row;
		align-items: center;
		justify-content: flex-start;
		width: min(300px, 100%);
		min-width: 0;
		padding: 10px 14px;
		gap: 12px;
	}

	.store-badge-logo {
		width: 24px;
		height: 24px;
	}

	.store-badge-text strong {
		font-size: 22px;
	}

	.main-visual {
		height: calc(100vh - var(--nav-height));
		min-height: 420px;
	}
}

/* ═══════════════════════════════════════════════════════
   리스팅 섹션 (채용공고 + 기술사이력)
═══════════════════════════════════════════════════════ */

.listing-section {
	background-color: #f5f7fb;
	padding: 52px 0 72px;
	overflow-x: clip;
}

.listing-inner {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 24px;
	overflow-x: clip;
}

/* ── 필터 바 ── */
.listing-filter {
	margin-bottom: 28px;
}

.listing-filter.is-hidden {
	display: none;
}

/* 서비스 탭 */
.filter-service-tabs {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}

.service-tab {
	padding: 7px 18px;
	border-radius: 999px;
	border: 1.5px solid #d1d5db;
	background-color: #ffffff;
	color: #6b7280;
	font-size: 15px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
	white-space: nowrap;
}

.service-tab:hover {
	border-color: var(--main-color);
	color: var(--main-color);
}

.service-tab.is-active {
	border-color: var(--main-color);
	background-color: var(--main-color);
	color: #ffffff;
}

/* 지역 선택 행 */
.filter-area-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.filter-area-selects {
	display: flex;
	gap: 8px;
	flex: 1 1 auto;
}

.area-select {
	flex: 1 1 160px;
	max-width: 220px;
	height: 42px;
	padding: 0 12px;
	border-radius: 8px;
	border: 1.5px solid #d1d5db;
	background-color: #ffffff;
	font-size: 15px;
	font-family: inherit;
	color: #374151;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
	transition: border-color 0.18s ease;
}

.area-select:focus {
	outline: none;
	border-color: var(--main-color);
}

.filter-search-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 42px;
	padding: 0 22px;
	border-radius: 8px;
	border: none;
	background-color: var(--main-color);
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: background-color 0.18s ease, transform 0.18s ease;
	white-space: nowrap;
}

.filter-search-btn:hover {
	background-color: #0f46a3;
	transform: translateY(-1px);
}

/* ── 채용공고 / 지도 보기 탭 ── */
.listing-mobile-tabs {
	display: flex;
	gap: 0;
	border-radius: 10px;
	overflow: hidden;
	border: 1.5px solid var(--main-color);
	margin: 0 0 18px;
	width: 100%;
	max-width: 480px;
}

.listing-tab {
	flex: 1 1 0;
	max-width: 240px;
	padding: 10px 0;
	border: none;
	background-color: #ffffff;
	color: var(--main-color);
	font-size: 14px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: background-color 0.18s ease, color 0.18s ease;
}

.listing-tab.is-active {
	background-color: var(--main-color);
	color: #ffffff;
}

.listing-tab:not(:last-child) {
	border-right: 1.5px solid var(--main-color);
}

/* ── 리스트 그리드 ── */
.listing-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	align-items: start;
}

.listing-map-panel {
	margin-bottom: 24px;
}

.map-view,
.calendar-view {
	margin-top: 10px;
}

.listing-grid.is-hidden,
.listing-map-panel.is-hidden,
.listing-col.is-hidden {
	display: none;
}

/* ── 각 컬럼 ── */
.listing-col {
	background-color: #ffffff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 2px 16px rgba(20, 87, 201, 0.07);
	min-width: 0;
}

.listing-col-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 18px;
	padding-bottom: 14px;
	border-bottom: 1.5px solid #e8edf4;
}

.listing-col-title {
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	color: #1f2937;
	display: flex;
	align-items: center;
	gap: 7px;
	min-width: 0;
	line-height: 1.35;
}

.listing-col-title i {
	color: var(--main-color);
	font-size: 15px;
}

.listing-more-link {
	font-size: 13px;
	font-weight: 600;
	color: #6b7280;
	display: flex;
	align-items: center;
	gap: 3px;
	flex-shrink: 0;
	transition: color 0.15s ease;
}

.listing-more-link:hover {
	color: var(--main-color);
}

.listing-more-link i {
	font-size: 11px;
}

/* ── 카드 리스트 ── */
.listing-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.listing-card {
	border-radius: 10px;
	border: 1.5px solid var(--main-color);
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
	overflow: hidden;
	position: relative;
}

.listing-card:hover {
	border-color: var(--main-color);
	box-shadow: 0 4px 18px rgba(20, 87, 201, 0.11);
	transform: translateY(-1px);
}

.listing-card-link {
	display: block;
	padding: 14px 16px;
	text-decoration: none;
	color: inherit;
	min-width: 0;
}

.detail-open-btn {
	position: absolute;
	right: 16px;
	top: 14px;
	height: 26px;
	padding: 0 10px;
	border: 1px solid #c7d2fe;
	border-radius: 999px;
	background-color: #eef2ff;
	color: #334155;
	font-size: 12.5px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	z-index: 3;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.detail-open-btn:hover {
	background-color: #e0e7ff;
	border-color: #a5b4fc;
}

.listing-card-top {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 8px;
	padding-right: 90px;
	min-height: 26px;
}

/* 뱃지 */
.badge {
	display: inline-block;
	padding: 3px 9px;
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 700;
	line-height: 1.4;
}

.badge-service {
	background-color: #edf3ff;
	color: var(--main-color);
}

.badge-salary {
	background-color: #fff4e8;
	color: #d05f00;
}

.badge-career {
	background-color: #f0fdf4;
	color: #16a34a;
}

.listing-card-title {
	margin: 0 0 4px;
	font-size: 15.5px;
	font-weight: 700;
	color: #1f2937;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: keep-all;
	overflow-wrap: anywhere;
}

.job-card .listing-card-title {
	margin: 10px 0 12px;
}

.listing-card-company {
	margin: 0 0 8px;
	font-size: 14px;
	color: #6b7280;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	white-space: normal;
	overflow: hidden;
	text-overflow: ellipsis;
	overflow-wrap: anywhere;
}

.listing-card-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 13px;
	color: #9ca3af;
	gap: 8px;
}

.listing-card-area {
	display: flex;
	align-items: center;
	gap: 4px;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.listing-card-area i {
	font-size: 11px;
	color: var(--main-color);
	flex-shrink: 0;
}

.listing-card-date {
	flex-shrink: 0;
}

.map-view {
	background-color: #ffffff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 2px 16px rgba(20, 87, 201, 0.07);
	border: 1px solid #e8edf4;
}

.map-view-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	padding-bottom: 16px;
	border-bottom: 1.5px solid #e8edf4;
}

.map-view-title {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
	color: #1f2937;
	letter-spacing: -0.01em;
	display: flex;
	align-items: center;
	gap: 8px;
}

.map-view-title i {
	color: var(--main-color);
}

.map-view-desc {
	margin: 6px 0 0;
	font-size: 13.5px;
	color: #6b7280;
}

.map-view-count {
	flex-shrink: 0;
	padding: 5px 14px;
	border-radius: 999px;
	background-color: #edf3ff;
	color: var(--main-color);
	font-size: 13px;
	font-weight: 700;
}

.map-view-body {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 16px;
}

.map-view-canvas {
	width: 100%;
	height: 460px;
	border: 1px solid #e8edf4;
	border-radius: 14px;
	background: #eef5ff;
	overflow: hidden;
}

.map-view-list-wrap {
	border: 1px solid #e8edf4;
	border-radius: 14px;
	background: #f8fafc;
	padding: 10px;
	height: 460px;
	overflow: auto;
}

.map-view-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.job-map-item {
	width: 100%;
	text-align: left;
	border: 1px solid #e8edf4;
	background: #ffffff;
	border-radius: 10px;
	padding: 12px;
	cursor: pointer;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: inherit;
	transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.job-map-item:hover {
	border-color: var(--main-color);
	background: #f5f9ff;
}

.job-map-item.is-active {
	border-color: var(--main-color);
	background: #edf3ff;
	box-shadow: 0 6px 16px rgba(20, 87, 201, 0.12);
}

.job-map-item-icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: #edf3ff;
	color: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

.job-map-item.is-active .job-map-item-icon {
	background: var(--main-color);
	color: #ffffff;
}

.job-map-item-body {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.job-map-item-title {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.4;
}

.job-map-item-company {
	font-size: 12.5px;
	font-weight: 600;
	color: #6b7280;
}

.job-map-item-address {
	font-size: 12.5px;
	color: #94a3b8;
	line-height: 1.45;
	overflow-wrap: anywhere;
}

.map-view-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 48px 20px;
	color: #9ca3af;
	text-align: center;
}

.map-view-empty i {
	font-size: 36px;
}

.map-view-empty p {
	margin: 0;
	font-size: 15px;
}

.map-view-notice {
	margin: 0 0 12px;
	padding: 12px 14px;
	border-radius: 10px;
	background: #fff7ed;
	border: 1px solid #fed7aa;
	font-size: 13px;
	color: #9a3412;
	line-height: 1.45;
}

.job-map-cluster {
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 999px;
	background: #1457c9;
	color: #ffffff;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	box-shadow: 0 10px 18px rgba(20, 87, 201, 0.28);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 2px solid rgba(255, 255, 255, 0.9);
}

.job-map-cluster:hover {
	background: #0f46a3;
	box-shadow: 0 12px 22px rgba(20, 87, 201, 0.34);
}

/* ── 캘린더 보기 ── */
.calendar-view {
	background-color: #ffffff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 2px 16px rgba(20, 87, 201, 0.07);
	border: 1px solid #e8edf4;
}

.calendar-view-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 14px;
	padding-bottom: 16px;
	border-bottom: 1.5px solid #e8edf4;
}

.calendar-view-title {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
	color: #1f2937;
	letter-spacing: -0.01em;
	display: flex;
	align-items: center;
	gap: 8px;
}

.calendar-view-title i {
	color: var(--main-color);
}

.calendar-view-desc {
	margin: 6px 0 0;
	font-size: 13.5px;
	color: #6b7280;
}

.calendar-view-nav {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.calendar-view-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex: 1 1 auto;
	flex-wrap: nowrap;
	width: 100%;
}

.map-view-controls {
	width: 100%;
}

.calendar-view-filter {
	display: flex;
	align-items: center;
	margin-left: auto;
}

.calendar-view-select {
	width: 128px;
	max-width: 150px;
	flex: none;
}

.calendar-nav-btn {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	color: #475569;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.calendar-nav-btn:hover {
	border-color: var(--main-color);
	color: var(--main-color);
	background: #edf3ff;
}

.calendar-view-month {
	font-size: 15px;
	font-weight: 800;
	color: #0f172a;
	min-width: 92px;
	text-align: center;
}

.calendar-legend {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 14px;
}

.calendar-legend-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 600;
	color: #64748b;
}

.calendar-dot {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	display: inline-block;
}

.calendar-dot.is-open {
	background: #1457c9;
}

.calendar-dot.is-closed {
	background: #94a3b8;
}

.calendar-view-empty-notice {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 14px;
	padding: 12px 14px;
	background: #f8fafc;
	border: 1px solid #e8edf4;
	border-radius: 10px;
	font-size: 13.5px;
	color: #64748b;
}

.calendar-grid {
	border: 1px solid #e8edf4;
	border-radius: 12px;
	overflow: hidden;
}

.calendar-weekday-row,
.calendar-week-row {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
}

.calendar-weekday-row {
	background: #f8fafc;
	border-bottom: 1px solid #e8edf4;
}

.calendar-weekday {
	padding: 10px 6px;
	text-align: center;
	font-size: 12.5px;
	font-weight: 700;
	color: #475569;
}

.calendar-weekday.is-sun {
	color: #dc2626;
}

.calendar-weekday.is-sat {
	color: #1457c9;
}

.calendar-week-row:not(:last-child) {
	border-bottom: 1px solid #eef2f7;
}

.calendar-cell {
	min-height: 84px;
	padding: 6px;
	border-right: 1px solid #eef2f7;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.calendar-cell:last-child {
	border-right: none;
}

.calendar-cell.is-empty {
	background: #fafbfc;
}

.calendar-cell.is-today {
	background: #f0f6ff;
}

.calendar-cell-date {
	font-size: 12.5px;
	font-weight: 700;
	color: #1f2937;
	padding: 2px 4px;
}

.calendar-cell.is-today .calendar-cell-date {
	color: var(--main-color);
}

.calendar-cell-date.is-sun {
	color: #dc2626;
}

.calendar-cell-date.is-sat {
	color: #1457c9;
}

.calendar-cell-items {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.calendar-day-count-btn {
	margin-top: 8px;
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	border: none;
	border-radius: 999px;
	padding: 4px 8px;
	background: #e0eaff;
	color: #1457c9;
	cursor: pointer;
	font-family: inherit;
	font-size: 11px;
	font-weight: 800;
	line-height: 1;
	transition: transform 0.15s ease, background-color 0.15s ease;
}

.calendar-day-count-btn:hover {
	background: #cfe0ff;
	transform: translateY(-1px);
}

.calendar-day-count-number {
	display: inline-flex;
	align-items: center;
	font-size: 13px;
	line-height: 1;
	transform: translateY(-1px);
}

.calendar-day-count-text {
	font-size: 10px;
	font-weight: 700;
}

.calendar-item {
	width: 100%;
	text-align: left;
	border: none;
	border-radius: 6px;
	padding: 3px 6px;
	background: #edf3ff;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
	font-family: inherit;
	font-size: 11px;
	line-height: 1.5;
	color: #1e3a8a;
	overflow: visible;
	transition: background-color 0.15s ease;
	min-height: 20px;
}

.calendar-item:hover {
	background: #dbe8ff;
}

.calendar-item-closed {
	background: #f1f5f9;
	color: #64748b;
}

.calendar-item-closed:hover {
	background: #e2e8f0;
}

.calendar-item-dot {
	flex-shrink: 0;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #1457c9;
}

.calendar-item-closed .calendar-item-dot {
	background: #94a3b8;
}

.calendar-item-date-badge {
	flex-shrink: 0;
	font-size: 9px;
	font-weight: 800;
	color: #fff;
	background: #1457c9;
	border-radius: 999px;
	padding: 1px 5px;
	line-height: 1.4;
}

.calendar-item-closed .calendar-item-date-badge {
	background: #94a3b8;
}

.calendar-item-company {
	flex-shrink: 0;
	font-weight: 700;
	max-width: 46%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.calendar-item-service {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #475569;
}

.calendar-item-closed .calendar-item-service {
	color: #94a3b8;
}

.calendar-item-status {
	flex-shrink: 0;
	font-size: 10px;
	font-weight: 800;
}

.calendar-item-more {
	font-size: 11px;
	color: #94a3b8;
	padding: 2px 6px;
}

.calendar-view-note {
	margin: 0 0 12px;
	color: #64748b;
	font-size: 13px;
	font-weight: 600;
}

.calendar-day-modal {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.58);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	z-index: 1250;
}

.calendar-day-modal.is-open {
	display: flex;
}

.calendar-day-modal-dialog {
	width: min(90vw, 550px) !important;
	max-height: calc(100vh - 32px);
	overflow-y: auto;
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
	padding: 0 !important;
	scrollbar-width: none;
	overflow: hidden;
	border: 1px solid #e5edf8;
	word-break: keep-all !important;
	overflow-wrap: anywhere !important;
}

.calendar-day-modal-dialog::-webkit-scrollbar {
	display: none;
}

.calendar-day-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 22px 20px 16px !important;
	border-bottom: 1px solid #e8edf4 !important;
	background: #ffffff !important;
}

.calendar-day-modal-header-actions,
.detail-modal-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.modal-status-filters {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.modal-status-chip {
	height: 30px;
	padding: 0 10px;
	border: 1px solid #dbe4f0;
	border-radius: 999px;
	background: #f8fafc;
	color: #475569;
	font-size: 12px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.modal-status-chip:hover {
	background: #eff6ff;
	border-color: #bfd6ff;
}

.modal-status-chip.is-active {
	background: #1457c9;
	border-color: #1457c9;
	color: #ffffff;
}

.calendar-day-modal-title {
	margin: 0;
	font-size: 21px !important;
	font-weight: 800;
	color: #111827 !important;
	letter-spacing: -0.02em;
}

.calendar-day-modal-close {
	border: none;
	border-radius: 999px;
	padding: 8px 16px;
	background: #eaf1ff !important;
	color: #1457c9 !important;
	font-weight: 800;
	cursor: pointer;
}

.calendar-day-modal-body {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 20px 20px 24px !important;
	background: #ffffff;
}

.calendar-day-modal-empty {
	padding: 18px 14px;
	border: 1px dashed #d8e0ec;
	border-radius: 14px;
	background: #f8fafc;
	color: #64748b;
	text-align: center;
	font-size: 14px;
}

.calendar-day-modal-item {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	width: 100%;
	border: 1px solid #dfeaf7;
	border-radius: 14px;
	padding: 16px 16px;
	background: #ffffff;
	box-shadow: none;
	text-align: left;
	font-family: inherit;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
	min-height: 148px;
}

.calendar-day-modal-item + .calendar-day-modal-item {
	margin-top: 12px;
}

.calendar-day-modal-item:hover {
	border-color: #bfd4f8;
	box-shadow: none;
	transform: translateY(-1px);
}

.calendar-day-modal-item-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 12px;
}

.calendar-day-modal-item-top strong {
	font-size: 17px;
	color: #0f172a;
	line-height: 1.45;
}

.calendar-day-modal-status {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	height: 28px;
	padding: 0 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
}

.calendar-day-modal-status.is-open {
	background: #eaf1ff;
	color: #1457c9;
}

.calendar-day-modal-status.is-closed {
	background: #eef2f7;
	color: #64748b;
}

.calendar-day-modal-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	overflow: visible;
	white-space: normal;
	font-size: 13px;
	font-weight: 700;
	color: #475569;
	min-width: 0;
}

.calendar-day-modal-meta-left,
.calendar-day-modal-meta-right {
	display: flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
	flex: 0 1 auto;
}

.calendar-day-modal-meta-right {
	margin-left: auto;
	justify-content: flex-end;
}

.calendar-day-modal-meta-item {
	overflow: visible;
	text-overflow: clip;
	white-space: normal;
}

.calendar-day-modal-address-row {
	margin-top: 14px;
	margin-bottom: 12px;
	padding: 14px 0 20px;
	border-top: 1px solid #eef3fa;
	border-bottom: 1px solid #eef3fa;
}

.calendar-day-modal-address-left {
	max-width: 100%;
}

.calendar-day-modal-address-item {
	display: block;
	max-width: 100%;
	white-space: normal;
	word-break: keep-all;
	line-height: 1.6;
	font-weight: 600;
	color: #334155;
}

.calendar-day-modal-meta-sep {
	flex-shrink: 0;
	color: #cbd5e1;
}

.calendar-day-modal-action {
	flex-shrink: 0;
	color: #1457c9;
	font-weight: 800;
	text-decoration: none;
}

.calendar-day-modal-action-row {
	display: flex;
	justify-content: flex-end;
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px dashed #e3ebf8;
}

#calendarDayModal .detail-modal-dialog {
	width: min(92vw, 620px) !important;
	height: min(82vh, 700px) !important;
	border-radius: 18px;
	border: 1px solid #dbe6f5;
	box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2);
	display: flex !important;
	flex-direction: column !important;
	overflow: hidden !important;
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 120px);
}

#calendarDayModal .detail-modal-header {
	padding: 20px 20px 14px;
	flex-shrink: 0;
	margin-bottom: 0;
	border-bottom: 1px solid #e4edf9;
	background: transparent;
}

#calendarDayModal .detail-modal-title {
	font-size: 21px;
	letter-spacing: -0.01em;
	color: #0f172a;
}

#calendarDayModal .detail-modal-close {
	height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: #eaf1ff;
	color: #1457c9;
	font-weight: 800;
}

#calendarDayModal .detail-modal-close:hover {
	background: #dbe8ff;
	color: #0f46a3;
}

#calendarDayModal .detail-modal-body {
	display: block !important;
	flex: 1 1 0 !important;
	min-height: 0 !important;
	max-height: none !important;
	padding: 16px 14px 20px;
	gap: 12px;
	overflow-y: scroll !important;
	overflow-x: hidden !important;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	background: transparent;
}

#calendarDayModal .detail-modal-body::-webkit-scrollbar {
	display: none;
}

/* ── 빈 상태 ── */
.listing-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 48px 20px;
	color: #9ca3af;
	text-align: center;
}

.listing-empty i {
	font-size: 36px;
}

.listing-empty p {
	margin: 0;
	font-size: 15px;
}

.modal-lock {
	overflow: hidden;
}

.detail-modal {
	position: fixed;
	inset: 0;
	background-color: rgba(15, 23, 42, 0.58);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	z-index: 1200;
}

.detail-modal.is-open {
	display: flex;
}

.detail-modal-dialog {
	width: min(640px, 100%);
	max-height: calc(100vh - 32px);
	overflow-y: auto;
	background-color: #ffffff;
	border-radius: 14px;
	box-shadow: 0 20px 50px rgba(2, 6, 23, 0.35);
	padding: 18px;
	scrollbar-width: none;
}

.detail-modal-dialog::-webkit-scrollbar {
	display: none;
}

.detail-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e5e7eb;
	margin-bottom: 12px;
}

.detail-modal-title {
	margin: 0;
	font-size: 20px;
	font-weight: 800;
	color: #0f172a;
}

.detail-modal-close {
	height: 34px;
	padding: 0 14px;
	border: none;
	border-radius: 8px;
	background-color: var(--main-color);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
}

.detail-modal-close:hover {
	background-color: #0f46a3;
}

.detail-modal-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.detail-row {
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	padding: 10px 12px;
	background-color: #f8fafc;
}

.detail-row-address {
	padding-top: 18px;
	padding-bottom: 18px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.detail-row b {
	display: block;
	font-size: 13px;
	color: #475569;
	margin-bottom: 5px;
}

.detail-row p {
	margin: 0;
	font-size: 15.5px;
	line-height: 1.55;
	color: #0f172a;
	word-break: break-word;
}

.detail-grid2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.detail-modal-apply {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	flex-wrap: nowrap;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #e5e7eb;
}

.detail-modal-apply > .apply-status-badge,
.detail-modal-apply > .apply-btn,
.detail-modal-apply > .apply-cancel-btn {
	flex: 1 1 0;
	min-width: 0;
	height: 38px;
	justify-content: center;
	white-space: nowrap;
}

.detail-modal-status-note {
	width: 100%;
	margin: 0;
	font-size: 13px;
	color: #64748b;
	font-weight: 600;
}

.detail-modal-apply:empty {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

/* ── 리스팅 섹션 반응형 (1100px) ── */
@media (max-width: 1100px) {
	.map-view-body {
		grid-template-columns: 1fr;
	}

	.listing-inner {
		padding: 0 16px;
	}

	.listing-grid {
		gap: 16px;
	}
}

/* ── 리스팅 섹션 태블릿 (760px) ── */
@media (max-width: 760px) {
	.listing-mobile-tabs,
	.map-view,
	.calendar-view,
	.listing-col {
		margin-left: 0;
		margin-right: 0;
		width: 100%;
		max-width: 100%;
		border-radius: 16px;
		box-sizing: border-box;
	}

	.map-view {
		padding: 18px;
	}

	.map-view-title {
		font-size: 18px;
	}

	.map-view-canvas,
	.map-view-list-wrap {
		height: 340px;
	}

	.calendar-view {
		padding: 16px;
	}

	.calendar-view-title {
		font-size: 17px;
	}

	.calendar-view-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.calendar-view-controls {
		width: 100%;
	}

	.map-view-controls {
		flex-wrap: wrap;
	}

	.calendar-cell {
		min-height: 68px;
		padding: 4px;
	}

	.calendar-item {
		font-size: 10px;
	}

	.calendar-item-service {
		display: none;
	}

	.listing-section {
		padding: 28px 0 48px;
	}

	.listing-col-header {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.listing-col-title {
		font-size: 17px;
	}

	.listing-grid {
		grid-template-columns: 1fr;
	}

	.filter-area-selects {
		flex-wrap: wrap;
	}

	.area-select {
		max-width: none;
	}
}

/* ── 리스팅 섹션 모바일 (480px) ── */
@media (max-width: 480px) {
	.calendar-day-modal-dialog {
		width: 80% !important;
	}

	#calendarDayModal .detail-modal-header {
		padding: 18px 16px 12px;
	}

	#calendarDayModal .detail-modal-body {
		padding: 14px 16px 18px;
		gap: 12px;
	}

	.calendar-day-modal-item {
		padding: 14px;
		min-height: 140px;
	}

	.calendar-day-modal-item-top strong {
		font-size: 15.5px;
	}

	.calendar-day-modal-meta {
		font-size: 12.5px;
	}

	.calendar-day-modal-address-row {
		margin-top: 8px;
		margin-bottom: 10px;
		padding: 8px 0 14px;
	}

	.filter-service-tabs {
		gap: 6px;
	}

	.service-tab {
		padding: 6px 14px;
		font-size: 14px;
	}

	.filter-area-row {
		flex-direction: column;
		align-items: stretch;
	}

	.filter-area-selects {
		width: 100%;
	}

	.filter-search-btn {
		width: 100%;
		justify-content: center;
	}

	.listing-col {
		padding: 18px 14px;
	}

	.listing-card-link {
		padding: 12px 12px;
	}

	.detail-open-btn {
		top: 12px;
		right: 12px;
		height: 24px;
		padding: 0 9px;
		font-size: 12px;
	}

	.listing-card-top {
		padding-right: 78px;
	}

	.listing-card-title {
		font-size: 14.5px;
		line-height: 1.35;
		max-height: calc(1.35em * 2);
	}

	.listing-card-company {
		line-height: 1.35;
		max-height: calc(1.35em * 2);
	}

	.listing-col-title {
		font-size: 16px;
	}

	.listing-more-link {
		font-size: 12px;
	}

	.detail-grid2 {
		grid-template-columns: 1fr;
	}
}

/* ══════════════════════════════════════════════════════
   신청하기 버튼 / 신청 상태 뱃지
══════════════════════════════════════════════════════ */

.card-apply-wrap {
	padding: 8px 16px 12px;
	border-top: 1px solid #f1f5f9;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.apply-btn,
.apply-cancel-btn {
	height: 38px;
	padding: 0 18px;
	border-radius: 8px;
	border: none;
	background-color: var(--sub-color);
	color: #ffffff;
	font-size: 14px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: background-color 0.15s ease, transform 0.15s ease;
}

.apply-btn:hover,
.apply-cancel-btn:hover {
	background-color: var(--main-color);
	transform: translateY(-1px);
}

.listing-card:hover .apply-btn,
.listing-card:hover .apply-cancel-btn {
	background-color: var(--main-color);
}

.apply-btn[disabled],
.apply-cancel-btn[disabled] {
	background-color: #cbd5e1;
	color: #475569;
	cursor: not-allowed;
	transform: none;
}

.apply-status-badge {
	display: inline-flex;
	align-items: center;
	height: 32px;
	padding: 0 13px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
}

.apply-status-pending  { background-color: #fef3c7; color: #b45309; }
.apply-status-accepted { background-color: #d1fae5; color: #065f46; }
.apply-status-rejected { background-color: #fee2e2; color: #b91c1c; }
.apply-status-reviewed { background-color: #dbeafe; color: #1d4ed8; }
.apply-status-cancelled{ background-color: #f1f5f9; color: #64748b; }
.apply-status-none { background-color: #f8fafc; color: #64748b; }

/* ══════════════════════════════════════════════════════
   신청 확인 모달
══════════════════════════════════════════════════════ */

.apply-modal {
	position: fixed;
	inset: 0;
	background-color: rgba(15, 23, 42, 0.58);
	display: none;
	align-items: center;
	justify-content: center;
	padding: 16px;
	z-index: 1300;
}

.apply-modal.is-open {
	display: flex;
}

.apply-modal-dialog {
	width: 90%;
	max-width: 420px;
	background-color: #ffffff;
	border-radius: 16px;
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.22);
	overflow: hidden;
}

.apply-modal-header {
	padding: 18px 20px 14px;
	background: #0d4db2;
	border-bottom: none;
}

.apply-modal-title {
	margin: 0;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #ffffff;
	line-height: 1.3;
}

.apply-modal-body {
	padding: 18px 20px 16px;
	text-align: left;
	background: #ffffff;
}

.apply-modal-job-title {
	margin: 0 0 12px;
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
	word-break: break-word;
	line-height: 1.5;
}

.apply-modal-msg {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: #374151;
	word-break: keep-all;
}

.apply-modal-footer {
	padding: 0 20px 18px;
	display: flex;
	justify-content: flex-end;
	gap: 8px;
	background: #ffffff;
}

.apply-modal-btn-yes,
.apply-modal-btn-no {
	height: 42px;
	padding: 0 24px;
	border-radius: 8px;
	font-size: 15px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: transform 0.15s ease, background-color 0.15s ease;
}

.apply-modal-btn-yes {
	border: none;
	background-color: #0d4db2;
	color: #ffffff;
	box-shadow: none;
}

.apply-modal-btn-yes:hover:not(:disabled) {
	background-color: #0c45a0;
	transform: translateY(-1px);
}

.apply-modal-btn-yes:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.apply-modal-btn-no {
	border: 1px solid #d1d5db;
	background-color: #ffffff;
	color: #374151;
}

.apply-modal-btn-no:hover {
	background-color: #f3f4f6;
	transform: translateY(-1px);
}
