.peak-careers,
.peak-careers * {
	box-sizing: border-box;
}

.peak-careers {
	--peak-accent: #1f5d50;
	--peak-dark: #173f36;
	--peak-text: #25302d;
	--peak-muted: #66736f;
	--peak-border: #dce4e1;
	--peak-surface: #fff;
	--peak-soft: #f5f8f7;
	color: var(--peak-text);
	width: 100%;
}

.peak-careers__toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.peak-careers__search-wrap {
	display: block;
	flex: 2 1 320px;
	min-width: 0;
}

.peak-careers__filter-wrap {
	display: block;
	flex: 1 1 180px;
	min-width: 0;
}

.peak-careers .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.peak-careers__field {
	appearance: none;
	background-color: var(--peak-surface);
	border: 1px solid var(--peak-border);
	border-radius: 4px;
	color: var(--peak-text);
	font: inherit;
	line-height: 1.3;
	min-height: 48px;
	outline: none;
	padding: 12px 14px;
	transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
	width: 100%;
}

select.peak-careers__field {
	background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
	background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	padding-right: 38px;
}

.peak-careers__field:focus {
	border-color: var(--peak-accent);
	box-shadow: 0 0 0 3px color-mix(in srgb, var(--peak-accent) 18%, transparent);
}

.peak-careers__list {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.peak-careers__job {
	background: var(--peak-surface);
	border: 1px solid var(--peak-border);
	border-radius: 6px;
	overflow: hidden;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.peak-careers__job[hidden],
.peak-careers__no-results[hidden],
.peak-careers.is-enhanced .peak-careers__panel[hidden] {
	display: none !important;
}

.peak-careers__heading {
	font: inherit;
	margin: 0;
	padding: 0;
}

.peak-careers__trigger {
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	display: flex;
	font: inherit;
	gap: 24px;
	justify-content: space-between;
	padding: 22px 24px;
	text-align: left;
	transition: background-color .2s ease;
	width: 100%;
}

.peak-careers .peak-careers__trigger:focus,
.peak-careers .peak-careers__trigger:active {
	background-color: transparent;
	color: inherit;
}

.peak-careers .peak-careers__trigger:focus:not(:focus-visible) {
	outline: none;
}

.peak-careers .peak-careers__trigger:focus-visible {
	outline: 2px solid var(--peak-accent);
	outline-offset: -3px;
}

.peak-careers__summary {
	display: block;
	min-width: 0;
}

.peak-careers__title {
	color: var(--peak-dark);
	display: block;
	font-size: clamp(1.08rem, 1.6vw, 1.3rem);
	font-weight: 700;
	line-height: 1.25;
}

.peak-careers__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

.peak-careers__meta-item {
	color: var(--peak-muted);
	font-size: .91rem;
	line-height: 1.45;
}

.peak-careers__meta-item:not(:last-child)::after {
	color: var(--peak-border);
	content: "\2022";
	margin-left: 10px;
}

.peak-careers__icon {
	align-items: center;
	background: var(--peak-soft);
	border-radius: 50%;
	color: var(--peak-accent);
	display: inline-flex;
	flex: 0 0 auto;
	font-size: 16px;
	height: 38px;
	justify-content: center;
	line-height: 1;
	width: 38px;
}

.peak-careers__icon svg {
	display: block;
	fill: currentColor;
	height: 1em;
	width: 1em;
}

.peak-careers__icon-open {
	display: none;
}

.peak-careers__job.is-open .peak-careers__icon-open {
	display: inline-flex;
}

.peak-careers__job.is-open .peak-careers__icon-closed {
	display: none;
}

.peak-careers__panel-inner {
	border-top: 1px solid var(--peak-border);
	padding: 24px 24px 28px;
}

.peak-careers__description {
	color: var(--peak-text);
	line-height: 1.7;
}

.peak-careers__description > :first-child {
	margin-top: 0;
}

.peak-careers__description > :last-child {
	margin-bottom: 0;
}

.peak-careers__description h1,
.peak-careers__description h2,
.peak-careers__description h3,
.peak-careers__description h4,
.peak-careers__description h5,
.peak-careers__description h6 {
	color: var(--peak-dark);
	line-height: 1.3;
	margin-bottom: .55em;
	margin-top: 1.3em;
}

.peak-careers__description ul,
.peak-careers__description ol {
	margin-bottom: 1em;
	padding-left: 1.25em;
}

.peak-careers__apply {
	align-items: center;
	background: var(--peak-accent);
	border: 1px solid var(--peak-accent);
	border-radius: 4px;
	color: #fff;
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	margin-top: 20px;
	padding: 12px 22px;
	text-decoration: none;
	transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.peak-careers__apply:hover,
.peak-careers__apply:focus-visible {
	background: var(--peak-dark);
	border-color: var(--peak-dark);
	color: #fff;
	transform: translateY(-1px);
}

.peak-careers__apply:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.peak-careers__empty {
	background: var(--peak-soft);
	border: 1px solid var(--peak-border);
	border-radius: 6px;
	color: var(--peak-muted);
	margin: 0;
	padding: 24px;
	text-align: center;
}

@media (max-width: 767px) {
	.peak-careers__toolbar {
		flex-direction: column;
	}

	.peak-careers__search-wrap,
	.peak-careers__filter-wrap {
		flex: 0 0 auto;
		width: 100%;
	}

	.peak-careers__trigger {
		gap: 16px;
		padding: 18px;
	}

	.peak-careers__panel-inner {
		padding: 20px 18px 22px;
	}

	.peak-careers__meta-item:not(:last-child)::after {
		display: none;
	}

	.peak-careers__meta {
		column-gap: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.peak-careers *,
	.peak-careers *::before,
	.peak-careers *::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
