/* Career Development — pixel-perfect match of Figma node 2126:608.
   Full-bleed #036 band, floating left photo (459x666, radius 9.286px, -35px above),
   right column at 427px: 35px Light heading, 17px description, 4 accordion rows @56px. */

/* Paint the wrapping body paragraph blue when it holds the Career Development block. */
.paragraph.paragraph--type--body.paragraph-id--2368.paragraph--view-mode--default:has(.career-dev),
.paragraph.paragraph--type--body.paragraph-id--1738.paragraph--view-mode--default:has(.career-dev) {
	background: #036;
}

.career-dev {
	width: 100%;
	background: #036;
	font-family: "Source Sans Pro", "Open Sans", Arial, sans-serif;
	color: #fff;
	box-sizing: border-box;
}

.career-dev *,
.career-dev *::before,
.career-dev *::after {
	box-sizing: border-box;
}

/* Centered 1440 layout: photo 459 | gap 80 | content 427, with 236/238 side margins. */
.career-dev__inner {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 80px;
	
	margin: 0 auto;
	
}

/* ---------- Left photo (floats 35px above the band's top edge) ---------- */
.career-dev__photo {
	flex: 0 0 459px;
	width: 459px;
	height: 666px;
	margin-top: -35px;
	overflow: hidden;
	border-radius: 9.286px;
	background: #0a3f66;
}

.career-dev__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- Right content column (heading @70px from band top) ---------- */
.career-dev__content {
	flex: 0 0 427px;
	width: 427px;
	padding: 70px 0;
	padding-bottom: 0;
}

.career-dev__heading {
	margin: 0 0 30px;
	padding: 0;
	font-family: inherit;
	font-weight: 300;
	font-size: 35px;
	line-height: 40px;
	color: #fff;
}

.career-dev__description {
	margin: 0 0 22px;
	padding: 0;
	font-family: inherit;
	font-weight: 400;
	font-size: 17px;
	line-height: 24px;
	color: #fff;
}

/* ---------- Accordion (dividers between items only) ---------- */
.career-dev__accordion {
	list-style: none;
	margin: 0;
	padding: 0;
}

.career-dev__item {
	list-style: none;
	margin: 0;
	padding-bottom: 8px;
}

.career-dev__item + .career-dev__item {
	padding-top: 8px;
}

.career-dev__item:not(:last-child) {
	border-bottom: 1px solid #fff;
}

.career-dev__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	height: 40px;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: none;
	box-shadow: none;
	font-family: inherit;
	font-weight: 700;
	font-size: 20px;
	line-height: 40px;
	color: #fff;
	text-align: left;
	text-transform: none;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.career-dev__trigger:hover,
.career-dev__trigger:focus-visible {
	color: #fff;
	outline: none;
}

/* Optional icon span is stripped by some text filters — the visible +/- toggle is
   drawn on the trigger's ::after so no extra HTML element is required. */
.career-dev__icon {
	display: none;
}

.career-dev__trigger::after {
	content: "";
	flex-shrink: 0;
	width: 34px;
	height: 34px;
	border: 1px solid #fff;
	background:
		linear-gradient(#fff, #fff) center / 17.895px 2px no-repeat,
		linear-gradient(#fff, #fff) center / 2px 17.895px no-repeat;
	transition: background-size 0.2s ease;
}

/* Open row shows a minus (hide the vertical bar). */
.career-dev__item.is-open .career-dev__trigger::after {
	background:
		linear-gradient(#fff, #fff) center / 17.895px 2px no-repeat;
}

/* Panel */
.career-dev__panel {
	overflow: hidden;
	max-height: 0;
	transition: max-height 0.3s ease;
}

.career-dev__item.is-open .career-dev__panel {
	max-height: 600px;
}

.career-dev__panel-inner {
	max-width: 356px;
	margin: 0;
	padding: 4px 0 0;
	font-family: inherit;
	font-weight: 400;
	font-size: 17px;
	line-height: 24px;
	color: #fff;
}

.career-dev__panel-inner ul {
	margin: 0 !important;
	padding-left: 24px;
	list-style: none;
}

.career-dev__panel-inner li {
	position: relative;
	margin-bottom: 5px !important;
}

.career-dev__panel-inner li::marker {
	content: none;
}

.career-dev__panel-inner li::before {
	content: "";
	position: absolute;
	left: -24px;
	top: 8px;
	width: 8px;
	height: 8px;
	display: block;
	border-radius: 50%;
	background: #ff9900;
}

/* ---------- Below 1440: reduce side gutters, keep fixed column widths ---------- */
@media (max-width: 1439px) {
	.career-dev__inner {
		padding: 0 60px;
		gap: 60px;
		justify-content: center;
	}
}

/* ---------- Tablet ---------- */
@media (max-width: 1100px) {
	.career-dev__inner {
		padding: 0 40px;
		gap: 40px;
	}

	.career-dev__photo {
		flex: 0 1 459px;
		width: auto;
		min-width: 0;
		height: auto;
		aspect-ratio: 459 / 666;
	}

	.career-dev__content {
		flex: 1 1 427px;
		width: auto;
	}
}

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
	.career-dev__inner {
		flex-direction: column;
		gap: 32px;
		padding: 0 0px 20px;
	}

	.career-dev__photo {
		flex: 0 0 auto;
		width: 100%;
		max-width: 459px;
		margin: -35px auto 0;
		aspect-ratio: 459 / 666;
	}

	.career-dev__content {
		width: 100%;
		flex: 0 0 auto;
		padding: 0;
	}

	.career-dev__heading {
		font-size: 28px;
		line-height: 34px;
		margin-bottom: 16px;
	}

	.career-dev__description {
		font-size: 16px;
		line-height: 22px;
		margin-bottom: 16px;
	}

	.career-dev__trigger {
		font-size: 17px;
	}

	.career-dev__panel-inner {
		font-size: 15px;
		line-height: 22px;
	}
}
