/**
 * CBR IDX — Become an Agent (v1.19.0)
 * cbr-contact.css 의 폼 스타일을 재사용하고, 모집 페이지 전용 섹션만 정의.
 */

.cbr-recruit {
	--cbr-navy: #0A3D39;
	--cbr-navy-deep: #042F2E;
	--cbr-gold: #2DD4BF;
	--cbr-ink: #1f2937;
	--cbr-muted: #6b7280;
	--cbr-line: #e5e7eb;
	--cbr-bg: #f4f6f9;
}

/* ---------------------------------------------------------------- 히어로 */

.cbr-rc-hero {
	position: relative;
	padding: 110px 20px 100px;
	text-align: center;
	color: #fff;
	background: linear-gradient(135deg, var(--cbr-navy-deep) 0%, var(--cbr-navy) 55%, #14665F 100%);
}

.cbr-rc-hero-inner {
	max-width: 860px;
	margin: 0 auto;
}

.cbr-rc-kicker {
	margin: 0 0 14px !important;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .18em;
	color: var(--cbr-gold);
}

.cbr-rc-hero h1 {
	margin: 0 0 18px !important;
	font-size: clamp(2rem, 4.6vw, 3.2rem);
	line-height: 1.18;
	font-weight: 700;
	color: #fff !important;
	letter-spacing: -0.015em;
}

.cbr-rc-sub {
	margin: 0 auto 32px !important;
	max-width: 640px;
	font-size: 1.08rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, .82);
}

.cbr-rc-cta {
	display: inline-block;
	padding: 15px 38px !important;
	font-size: 1rem;
	font-weight: 700;
	color: var(--cbr-navy-deep) !important;
	background: var(--cbr-gold);
	border-radius: 8px;
	text-decoration: none !important;
	transition: transform .1s, box-shadow .15s, background .15s;
	box-shadow: 0 6px 20px rgba(201, 162, 39, .28);
}

.cbr-rc-cta:hover {
	background: #5EEAD4;
	transform: translateY(-1px);
}

/* ---------------------------------------------------------------- 섹션 */

.cbr-rc-section {
	padding: 76px 20px;
	background: #fff;
}

.cbr-rc-alt {
	background: var(--cbr-bg);
}

.cbr-rc-inner {
	max-width: 1140px;
	margin: 0 auto;
}

.cbr-rc-eyebrow {
	margin: 0 0 8px !important;
	font-size: .74rem;
	font-weight: 700;
	letter-spacing: .16em;
	color: var(--cbr-gold);
}

.cbr-rc-section h2 {
	margin: 0 0 36px !important;
	font-size: clamp(1.7rem, 3.2vw, 2.3rem);
	font-weight: 700;
	color: var(--cbr-navy);
	line-height: 1.25;
	letter-spacing: -0.01em;
}

/* ---------------------------------------------------------------- Why 카드 */

.cbr-rc-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 22px;
}

.cbr-rc-card {
	padding: 28px 24px;
	background: #fff;
	border: 1px solid var(--cbr-line);
	border-radius: 12px;
	transition: box-shadow .18s, transform .18s, border-color .18s;
}

.cbr-rc-card:hover {
	border-color: var(--cbr-gold);
	box-shadow: 0 8px 24px rgba(22, 35, 63, .08);
	transform: translateY(-2px);
}

.cbr-rc-ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	font-size: .88rem;
	font-weight: 700;
	color: var(--cbr-gold);
	background: rgba(201, 162, 39, .1);
	border-radius: 9px;
	letter-spacing: .02em;
}

.cbr-rc-card h3 {
	margin: 0 0 10px !important;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--cbr-navy);
}

.cbr-rc-card p {
	margin: 0 !important;
	font-size: .94rem;
	line-height: 1.6;
	color: var(--cbr-muted);
}

/* ---------------------------------------------------------------- Split 섹션 */

.cbr-rc-split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 44px;
	align-items: start;
}

@media (min-width: 900px) {
	.cbr-rc-split {
		grid-template-columns: 1.15fr .85fr;
		gap: 64px;
	}
}

.cbr-rc-list {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.cbr-rc-list li {
	position: relative;
	padding: 12px 0 12px 30px;
	border-bottom: 1px solid var(--cbr-line);
	font-size: 1rem;
	line-height: 1.55;
	color: var(--cbr-ink);
}

.cbr-rc-list li:last-child {
	border-bottom: 0;
}

.cbr-rc-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 12px;
	font-weight: 700;
	color: var(--cbr-gold);
}

.cbr-rc-req {
	padding: 30px 28px;
	background: var(--cbr-navy);
	border-radius: 14px;
	color: #fff;
}

.cbr-rc-req h3 {
	margin: 0 0 18px !important;
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff !important;
}

.cbr-rc-req ul {
	margin: 0 0 18px !important;
	padding-left: 20px !important;
}

.cbr-rc-req li {
	margin-bottom: 10px;
	font-size: .95rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, .84);
}

.cbr-rc-note {
	margin: 0 !important;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, .16);
	font-size: .9rem;
	line-height: 1.55;
	color: var(--cbr-gold);
}

/* ---------------------------------------------------------------- 지원 폼 */

.cbr-rc-apply {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: start;
}

@media (min-width: 992px) {
	.cbr-rc-apply {
		grid-template-columns: .9fr 1.1fr;
		gap: 64px;
	}
}

.cbr-rc-apply-desc {
	margin: 0 0 26px !important;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--cbr-muted);
}

.cbr-rc-contactlist {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.cbr-rc-contactlist li {
	display: flex;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid var(--cbr-line);
	font-size: .96rem;
	line-height: 1.5;
	color: var(--cbr-ink);
}

.cbr-rc-contactlist li:last-child {
	border-bottom: 0;
}

.cbr-rc-contactlist strong {
	flex: 0 0 84px;
	color: var(--cbr-navy);
}

.cbr-rc-contactlist a {
	color: var(--cbr-gold);
	font-weight: 600;
	text-decoration: none;
}

/* 지원 폼은 cbr-contact.css 의 .cbr-contact-card / .cbr-contact-form 재사용 */
.cbr-rc-apply .cbr-contact-card {
	flex: none;
}
