/* ── Single career template ── */

html {
	scroll-behavior: smooth;
}

/* ── Hero ── */

.singlecareer-hero {
	position: relative;
	overflow: hidden;
	background-color: var(--color-off-white-200, #F1EFEC);
	padding: clamp(120px, 15vw, 210px) 0 clamp(70px, 9vw, 130px);
	text-align: center;
}

.singlecareer-hero__deco {
	position: absolute;
	pointer-events: none;
	user-select: none;
	height: 100%;
}

.singlecareer-hero__deco.-tl {
	top: 0;
	left: 0;
}

.singlecareer-hero__deco.-br {
	right: 0;
	bottom: 0;
}

.singlecareer-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.singlecareer-hero__title {
	margin: 0;
color: var(--black, #191919);
text-align: center;
font-size: 74px;
font-style: normal;
font-weight: 500;
line-height: 74px; /* 100% */
letter-spacing: -1.48px;
}

/* ── Body ── */

.singlecareer-body {
	padding: 100px 0 20px 0;
}

.singlecareer-body__layout {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	gap: clamp(40px, 6vw, 110px);
	align-items: start;
}

/* ── Job details widget ── */

.singlecareer-aside {
	position: sticky;
	top: 100px;
}

.singlecareer-details {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 8px 8px 16px 8px;
	border-radius: 12px;
	border: 1px solid rgba(25, 25, 25, 0.08);
	background: var(--color-white, #FFF);
	border-radius: 14px;
border: 1px solid rgba(25, 25, 25, 0.08);
background: var(--white, #FFF);
}

.singlecareer-details__title {
	margin: 0 0 4px 0;
	color: var(--color-black, #191919);
	font-size: 18px;
	font-weight: var(--fw-medium, 500);
	line-height: 1.2;
	border-radius: 6px;
background: var(--Off-white-100, #F7F5F2);
padding: 18px 22px;
color: var(--black, #191919);

font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 140%; /* 28px */
}

.singlecareer-details__row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-left: 12px;
}

.singlecareer-details__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
width: 50px;
height: 50px;
border-radius: 4.545px;
border: 1px solid rgba(25, 25, 25, 0.08);
background: var(--white, #FFF);
box-shadow: 0 22.727px 57.955px 0 rgba(26, 26, 18, 0.01), 0 11.911px 27.797px 0 rgba(26, 26, 18, 0.02), 0 4.377px 6.976px 0 rgba(26, 26, 18, 0.03);
}

.singlecareer-details__text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.singlecareer-details__label {
	color: var(--color-gray-500, #807E7C);
	font-size: 13px;
	line-height: 1.2;
}

.singlecareer-details__value {
	color: var(--color-black, #191919);
	font-size: 16px;
	font-weight: var(--fw-medium, 500);
	line-height: 1.2;
}

/* ── Content (the_content) ── */

.singlecareer-content {
	color: var(--color-black, #191919);
	font-size: var(--fs-body-m, 18px);
	line-height: var(--lh-body-m, 1.4);
}

.singlecareer-content > :first-child {
	margin-top: 0;
}

.singlecareer-content h2 {
	margin: 48px 0 40px 0;
color: var(--black, #191919);
font-size: 44px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 48.4px */
letter-spacing: -0.66px;
}
.singlecareer-content p{
	color: var(--black, #191919);
font-size: 22px;
font-style: normal;
font-weight: 500;
line-height: 130%; /* 28.6px */
letter-spacing: -0.33px;
opacity: 0.7;
}
.singlecareer-content h3 {
	margin: 36px 0 16px 0;
color: var(--black, #191919);

font-size: 32px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 38.4px */
letter-spacing: -0.16px;
}

.singlecareer-content p {
	margin: 0 0 16px 0;
}

.singlecareer-content ul,
.singlecareer-content ol {
	margin: 0 0 16px 0;
	padding-left: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.singlecareer-content ul li {
	position: relative;
	padding-left: 22px;
	color: var(--black, #191919);

opacity: 0.7;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 140%; /* 28px */
}

.singlecareer-content ul li::before {
	content: "";
	position: absolute;
	left: 6px;
	top: 0.62em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--color-gray-500, #807E7C);
}

.singlecareer-content ol {
	counter-reset: sc-ol;
}

.singlecareer-content ol li {
	counter-increment: sc-ol;
	padding-left: 28px;
	position: relative;
}

.singlecareer-content ol li::before {
	content: counter(sc-ol) ".";
	position: absolute;
	left: 0;
	color: var(--color-gray-500, #807E7C);
	font-weight: var(--fw-medium, 500);
}

.singlecareer-content hr {
	margin: 40px 0;
	border: 0;
	border-top: 1px solid rgba(25, 25, 25, 0.08);
}

.singlecareer-content a {
	color: var(--color-black, #191919);
	text-decoration: underline;
}

/* ── Apply form (reuses the .formimage component) ── */

/* Bottom spacing — the form-image block ships with top padding only. */
.singlecareer-apply {
	padding-bottom: clamp(60px, 8vw, 110px);
	margin-bottom: 120px;
}

/* Collapse to a single column when no right-panel image is set. */
.singlecareer-apply .formimage__card--no-media {
	grid-template-columns: 1fr;
}

/* ── Responsive ── */

@media (max-width: 900px) {
	.singlecareer-body__layout {
		grid-template-columns: 1fr;
	}

	.singlecareer-aside {
		position: static;
	}
}

@media (max-width: 768px) {
		.singlecareer-content ul li{
		font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 140%;
	}
	.gf-sc.gf-sc--dots ul li{
		font-size: 16px !important;
font-style: normal !important;
font-weight: 500 !important;
line-height: 140% !important; 
	}
	.singlecareer-content h3{
		font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: 120%; /* 33.6px */
letter-spacing: -0.14px;
margin-top: 20px;
	}
	h2.gf-sc__title{
		margin-bottom: 16px !important;
		font-size: 28px !important;
font-style: normal !important;
font-weight: 500 !important;
line-height: 120% !important; /* 33.6px */
letter-spacing: -0.14px !important;
	}
	.singlecareer-hero__deco {
		max-width: 55%;
		height: auto;
		opacity: 0.6;
	}
		.singlecareer-body{
		padding-top: 40px;
	}
	.singlecareer-hero__title{
		font-size: 48px;
font-style: normal;
font-weight: 500;
line-height: 50px; /* 104.167% */
letter-spacing: -0.96px;
	}
	.singlecareer-hero{
		padding: 80px 0;
		border-radius: 6px;
border: 1px solid rgba(25, 25, 25, 0.08);
background: var(--off-white-200, #F1EFEC);
max-width: calc(100% - 16px);
margin-left: 8px;
	}
	.singlecareer-content h2{
		font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.8px;
	}
	.singlecareer-content hr{
		margin: 24px 0;
	}
	.singlecareer-content h2{
		margin-bottom: 24px;
		font-size: 40px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.8px;
	}
	.singlecareer-content p{
		font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 140%;
	}
}