/* ============================================
   COMPONENT: Recruitment Section
   ============================================ */

/* Desktop-first base styles */
.recruitment-section {
	position: relative;
	padding: var(--sp-8) 0;
	overflow: hidden;
}

.recruitment-section__bg {
	position: absolute;
	inset: 0;
	background-color: var(--brand-primary);
	background-image: url("/assets/images/recruitment_background.png");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-blend-mode: multiply;
}

.recruitment-section .container {
	position: relative;
	z-index: 1;
}

/* Image */
.recruitment-section__image {
	width: 100%;
	max-width: 47.8rem;
	height: 73rem;
	border-radius: var(--radius-40);
	object-fit: cover;
}

/* Content */
.recruitment-section__content {
	padding-left: var(--sp-6);
}

.recruitment-section__subtitle {
	font-family: var(--font-family-heading);
	font-size: var(--section-subtitle);
	font-weight: var(--fw-semibold);
	line-height: 2.2rem;
	color: var(--color-light);
	text-transform: capitalize;
	margin-bottom: var(--sp-4);
}

.recruitment-section__title {
	font-family: var(--font-family-heading);
	font-size: var(--section-title);
	font-weight: var(--fw-bold);
	line-height: var(--lh-heading-tight);
	color: var(--color-light);
	margin-bottom: var(--sp-4);
}

.recruitment-section__description {
	font-family: var(--font-family-heading);
	font-size: var(--section-description);
	font-weight: var(--fw-regular);
	line-height: 2.2rem;
	color: var(--color-light);
	margin-bottom: var(--sp-6);
	max-width: 61.6rem;
}

/* Steps Container */
.recruitment-steps {
	display: flex;
	flex-direction: column;
	gap: var(--sp-7);
}

.recruitment-steps__row {
	display: flex;
	gap: var(--sp-3);
	justify-content: flex-start;
}

/* Individual Step */
.recruitment-step {
	position: relative;
	flex-shrink: 0;
	min-width: 20rem;
	max-width: 20rem;
	width: 20rem;
	height: 20rem;
	text-align: center;
	background-color: var(--color-light);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: var(--sp-4);
}

.recruitment-step__number {
	position: absolute;
	top: 50%;
	left: 1.5rem;
	transform: translateY(-50%);
	font-family: var(--font-family-heading);
	font-size: 14rem;
	font-weight: var(--fw-regular);
	line-height: 2.2rem;
	color: rgba(164, 16, 52, 0.13);
	pointer-events: none;
	user-select: none;
	z-index: 0;
}

.recruitment-step__icon-wrapper {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 5.2rem;
	height: 5.2rem;
	z-index: 1;
}

.recruitment-step__icon-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--brand-secondary);
	border-radius: 50%;
	z-index: 1;
}

.recruitment-step__icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 3rem;
	height: 3rem;
	object-fit: contain;
	z-index: 2;
}

.recruitment-step__title {
	position: relative;
	font-family: var(--font-family-heading);
	font-size: var(--fs-body);
	font-weight: var(--fw-semibold);
	line-height: 2.2rem;
	color: var(--gray-900);
	text-transform: capitalize;
	margin-bottom: var(--sp-2);
	z-index: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.recruitment-step__description {
	position: relative;
	font-family: var(--font-family-heading);
	font-size: var(--fs-body-sm);
	font-weight: var(--fw-regular);
	line-height: 1.8rem;
	color: var(--gray-900);
	text-align: center;
	z-index: 1;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ================================================
   TABLET (max-width: 1199px)
   ================================================ */
@media (max-width: 1199px) {
	.recruitment-section {
		padding: var(--sp-7) 0;
	}

	.recruitment-section__image {
		max-width: 40rem;
		height: 61rem;
		margin: 0 auto var(--sp-5);
	}

	.recruitment-section__content {
		padding-left: 0;
		text-align: center;
	}

	.recruitment-section__subtitle {
		font-size: var(--section-subtitle-tablet);
		line-height: 1.2;
		margin-bottom: var(--sp-3);
	}

	.recruitment-section__title {
		font-size: var(--fs-600);
		line-height: 1.2;
		margin-bottom: var(--sp-3);
	}

	.recruitment-section__description {
		font-size: var(--section-description-tablet);
		line-height: 1.55;
		margin-bottom: var(--sp-5);
		max-width: 100%;
	}

	.recruitment-steps__row {
		justify-content: center;
	}

	.recruitment-step {
		min-width: 18rem;
		max-width: 18rem;
		width: 18rem;
		height: 18rem;
	}

	.recruitment-step__number {
		font-size: 12rem;
	}

	.recruitment-step__icon-wrapper {
		top: 0;
		transform: translate(-50%, -50%);
		width: 4.6rem;
		height: 4.6rem;
	}

	.recruitment-step__icon {
		width: 2.6rem;
		height: 2.6rem;
	}

	.recruitment-step__title {
		font-size: var(--fs-body);
		line-height: 1.3;
		margin-bottom: var(--sp-1);
	}

	.recruitment-step__description {
		font-size: var(--fs-caption);
		line-height: 1.3;
	}
}

/* ================================================
   MOBILE (max-width: 575px)
   ================================================ */
@media (max-width: 575px) {
	.recruitment-section {
		padding: var(--sp-6) 0;
	}

	.recruitment-section__content {
		text-align: left;
	}

	.recruitment-section__subtitle {
		font-size: var(--section-subtitle-mobile);
		margin-bottom: var(--sp-3);
	}

	.recruitment-section__title {
		font-size: var(--fs-500);
		margin-bottom: var(--sp-3);
	}

	.recruitment-section__description {
		display: none;
	}

	.recruitment-steps {
		gap: var(--sp-8);
		margin-top: var(--sp-7);
	}

	.recruitment-steps__row {
		flex-direction: column;
		gap: var(--sp-8);
		align-items: center;
	}

	.recruitment-step {
		min-width: 27.8rem;
		max-width: 27.8rem;
		width: 27.8rem;
		height: 27.8rem;
	}

	.recruitment-step__number {
		font-size: 14rem;
	}

	.recruitment-step__icon-wrapper {
		top: 0;
		transform: translate(-50%, -50%);
		width: 9.6rem;
		height: 9.6rem;
	}

	.recruitment-step__icon {
		width: 4.8rem;
		height: 4.8rem;
	}

	.recruitment-step__title {
		font-size: var(--fs-400);
		line-height: 1.2;
		margin-bottom: var(--sp-2);
	}

	.recruitment-step__description {
		font-size: var(--fs-body-sm);
		line-height: 1.15;
		width: 80%;
	}
}
