/**
 * Premium Vacatures Framework — listing and detail UI.
 * Override the custom properties on .pvf-3a6afaeb to match the site brand.
 */

.pvf-3a6afaeb {
	--pvf-ink: #17383b;
	--pvf-ink-soft: #2f5154;
	--pvf-muted: #586f72;
	--pvf-accent: #176b66;
	--pvf-accent-hover: #105650;
	--pvf-accent-soft: #deece8;
	--pvf-coral: #a9442d;
	--pvf-coral-soft: #f5e6e1;
	--pvf-paper: #f4f7f5;
	--pvf-surface: #fff;
	--pvf-line: #b9cbc7;
	--pvf-line-soft: #dce6e3;
	--pvf-focus: #176b66;
	--pvf-radius-sm: 10px;
	--pvf-radius: 16px;
	--pvf-radius-lg: 26px;
	--pvf-shadow: 0 16px 44px rgba(23, 56, 59, 0.09);
	--pvf-display-font: ui-serif, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
	--pvf-body-font: inherit;
	box-sizing: border-box;
	color: var(--pvf-ink);
	font-family: var(--pvf-body-font);
	font-size: 16px;
	line-height: 1.55;
}

.pvf-3a6afaeb *,
.pvf-3a6afaeb *::before,
.pvf-3a6afaeb *::after {
	box-sizing: border-box;
}

.pvf-3a6afaeb a {
	color: inherit;
}

.pvf-3a6afaeb button,
.pvf-3a6afaeb input,
.pvf-3a6afaeb select {
	font: inherit;
}

.pvf-3a6afaeb button,
.pvf-3a6afaeb select {
	cursor: pointer;
}

.pvf-3a6afaeb [hidden] {
	display: none !important;
}

.pvf-3a6afaeb :where(a, button, input, select):focus-visible {
	outline: 3px solid #fff;
	outline-offset: 2px;
	box-shadow: 0 0 0 6px var(--pvf-focus);
}

.pvf-3a6afaeb .pvf-icon {
	display: inline-grid;
	flex: 0 0 auto;
	place-items: center;
	width: 20px;
	height: 20px;
}

.pvf-3a6afaeb .pvf-icon svg,
.pvf-3a6afaeb .pvf-button svg,
.pvf-3a6afaeb .pvf-card__link svg {
	display: block;
	width: 1em;
	height: 1em;
}

.pvf-3a6afaeb .pvf-eyebrow {
	margin: 0 0 8px;
	color: var(--pvf-accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.pvf-3a6afaeb .pvf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 11px 18px;
	border: 1px solid transparent;
	border-radius: var(--pvf-radius-sm);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pvf-3a6afaeb .pvf-button--primary,
.pvf-3a6afaeb .pvf-button--filter {
	background: var(--pvf-accent);
	color: #fff;
}

.pvf-3a6afaeb .pvf-button--secondary {
	background: var(--pvf-surface);
	border-color: var(--pvf-line);
	color: var(--pvf-ink);
}

.pvf-board {
	width: min(100%, 1240px);
	margin-inline: auto;
	padding: clamp(24px, 4vw, 56px) clamp(16px, 3vw, 32px);
}

.pvf-board .pvf-language,
.pvf-detail .pvf-language {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	margin: 0 0 28px;
}

.pvf-3a6afaeb .pvf-language__label {
	color: var(--pvf-muted);
	font-size: 12px;
	font-weight: 700;
}

.pvf-3a6afaeb .pvf-language ul {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0;
	padding: 4px;
	background: var(--pvf-paper);
	border: 1px solid var(--pvf-line-soft);
	border-radius: 999px;
	list-style: none;
}

.pvf-3a6afaeb .pvf-language li {
	margin: 0;
	padding: 0;
}

.pvf-3a6afaeb .pvf-language a {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 6px 13px;
	border-radius: 999px;
	color: var(--pvf-muted);
	font-size: 12px;
	font-weight: 700;
	text-decoration: none;
	transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.pvf-3a6afaeb .pvf-language a[aria-current="page"] {
	background: var(--pvf-surface);
	box-shadow: 0 3px 12px rgba(23, 56, 59, 0.1);
	color: var(--pvf-accent);
}

.pvf-board__header {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
	align-items: end;
	gap: clamp(24px, 5vw, 72px);
	margin-bottom: 30px;
}

.pvf-board__header h2 {
	max-width: 760px;
	margin: 0;
	color: var(--pvf-ink);
	font-family: var(--pvf-display-font);
	font-size: clamp(36px, 6vw, 70px);
	font-weight: 600;
	letter-spacing: -0.045em;
	line-height: 0.98;
}

.pvf-board__intro {
	max-width: 520px;
	margin: 0;
	padding-left: 20px;
	border-left: 3px solid var(--pvf-coral);
	color: var(--pvf-muted);
	font-size: clamp(15px, 1.5vw, 18px);
}

.pvf-filter {
	position: relative;
	margin: 0 0 26px;
	padding: clamp(20px, 3vw, 30px);
	background:
		radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.12), transparent 28%),
		var(--pvf-ink);
	border-radius: var(--pvf-radius-lg);
	box-shadow: var(--pvf-shadow);
	color: #fff;
}

.pvf-filter__search {
	margin-bottom: 18px;
}

.pvf-filter label {
	display: block;
	margin: 0 0 7px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 12px;
	font-weight: 750;
}

.pvf-filter__control {
	position: relative;
}

.pvf-filter__control--search .pvf-icon {
	position: absolute;
	top: 50%;
	left: 17px;
	z-index: 1;
	color: var(--pvf-muted);
	pointer-events: none;
	transform: translateY(-50%);
}

.pvf-filter input,
.pvf-filter select {
	width: 100%;
	min-height: 50px;
	margin: 0;
	background-color: #fff;
	border: 2px solid transparent;
	border-radius: 11px;
	box-shadow: none;
	color: var(--pvf-ink);
	font-size: 16px;
	line-height: 1.3;
	transition: border-color 160ms ease, box-shadow 160ms ease;
}

.pvf-filter input {
	padding: 12px 16px 12px 50px;
}

.pvf-filter select {
	appearance: none;
	padding: 12px 42px 12px 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2317383b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m7 10 5 5 5-5'/%3E%3C/svg%3E");
	background-position: right 13px center;
	background-repeat: no-repeat;
	background-size: 18px;
}

.pvf-filter input:focus,
.pvf-filter select:focus {
	border-color: #89c6bf;
	box-shadow: 0 0 0 6px var(--pvf-focus);
	outline: 3px solid #fff;
	outline-offset: 2px;
}

.pvf-filter__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
	align-items: end;
	gap: 12px;
}

.pvf-filter .pvf-button--filter {
	min-height: 50px;
	background: var(--pvf-coral);
	border-color: #d58570;
	white-space: nowrap;
}

.pvf-board__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 34px;
	margin-bottom: 17px;
}

.pvf-board__count {
	margin: 0;
	color: var(--pvf-ink);
	font-size: 14px;
	font-weight: 800;
}

.pvf-board__reset,
.pvf-board__error button {
	min-height: 44px;
	padding: 8px 10px;
	background: transparent;
	border: 0;
	border-bottom: 1px solid currentColor;
	color: var(--pvf-accent);
	font-size: 13px;
	font-weight: 700;
}

.pvf-board__error {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 0 0 18px;
	padding: 13px 16px;
	background: var(--pvf-coral-soft);
	border: 1px solid #d9a698;
	border-radius: var(--pvf-radius-sm);
	color: #7d301e;
	font-size: 14px;
}

.pvf-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
	gap: 20px;
	min-height: 180px;
}

.pvf-card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 380px;
	flex-direction: column;
	justify-content: space-between;
	gap: 28px;
	padding: 25px 25px 23px 31px;
	background: var(--pvf-surface);
	border: 1px solid var(--pvf-line-soft);
	border-radius: var(--pvf-radius);
	box-shadow: 0 5px 18px rgba(23, 56, 59, 0.04);
	overflow: hidden;
	transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.pvf-card__signal {
	position: absolute;
	top: 21px;
	bottom: 21px;
	left: 0;
	width: 5px;
	background: var(--pvf-accent);
	border-radius: 0 99px 99px 0;
}

.pvf-card.is-featured .pvf-card__signal {
	background: var(--pvf-coral);
}

.pvf-card__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 18px;
}

.pvf-pill {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 750;
	line-height: 1.2;
}

.pvf-pill--type {
	background: var(--pvf-paper);
	color: var(--pvf-ink-soft);
}

.pvf-pill--location {
	background: var(--pvf-accent-soft);
	color: #105a55;
}

.pvf-pill--featured {
	background: var(--pvf-coral-soft);
	color: #83331f;
}

.pvf-card h3 {
	margin: 0 0 12px;
	font-family: var(--pvf-display-font);
	font-size: clamp(24px, 3vw, 31px);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.08;
}

.pvf-card h3 a {
	color: var(--pvf-ink);
	text-decoration: none;
}

.pvf-card__excerpt {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: var(--pvf-muted);
	font-size: 14px;
	line-height: 1.65;
}

.pvf-card__bottom {
	padding-top: 18px;
	border-top: 1px solid var(--pvf-line-soft);
}

.pvf-card__facts {
	display: grid;
	gap: 8px;
	margin: 0 0 18px;
	padding: 0;
	list-style: none;
}

.pvf-card__facts li {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 0;
	color: var(--pvf-ink-soft);
	font-size: 13px;
	font-weight: 600;
}

.pvf-card__facts .pvf-icon {
	width: 17px;
	height: 17px;
	color: var(--pvf-accent);
}

.pvf-card__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 44px;
	padding: 8px 0 2px;
	color: var(--pvf-accent);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.pvf-card__link svg {
	font-size: 20px;
	transition: transform 180ms ease;
}

.pvf-board__more {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.pvf-empty {
	grid-column: 1 / -1;
	display: grid;
	place-items: center;
	min-height: 280px;
	padding: 42px 20px;
	background: var(--pvf-paper);
	border: 1px dashed var(--pvf-line);
	border-radius: var(--pvf-radius);
	text-align: center;
}

.pvf-empty__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 14px;
	background: var(--pvf-accent-soft);
	border-radius: 50%;
	color: var(--pvf-accent);
}

.pvf-empty__icon svg {
	width: 23px;
	height: 23px;
}

.pvf-empty h3 {
	margin: 0 0 6px;
	font-family: var(--pvf-display-font);
	font-size: 26px;
	font-weight: 600;
}

.pvf-empty p {
	margin: 0;
	color: var(--pvf-muted);
}

.pvf-skeleton {
	min-height: 360px;
	background: linear-gradient(100deg, #edf2f0 25%, #dfe9e6 38%, #edf2f0 52%);
	background-size: 220% 100%;
	border-radius: var(--pvf-radius);
	animation: pvf-skeleton-shift-3a6afaeb 1.35s ease-in-out infinite;
}

@keyframes pvf-skeleton-shift-3a6afaeb {
	to { background-position-x: -220%; }
}

.pvf-noscript-pagination {
	margin-top: 28px;
}

.pvf-noscript-pagination ul {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.pvf-noscript-pagination a,
.pvf-noscript-pagination span {
	display: grid;
	place-items: center;
	min-width: 44px;
	min-height: 44px;
	border: 1px solid var(--pvf-line);
	border-radius: 8px;
	text-decoration: none;
}

/* Vacancy detail */
.pvf-detail {
	width: min(100%, 1180px);
	margin-inline: auto;
	padding: clamp(24px, 4vw, 58px) clamp(16px, 3vw, 32px);
}

.pvf-detail__hero {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
	gap: clamp(32px, 6vw, 86px);
	padding: clamp(30px, 5vw, 64px);
	background:
		radial-gradient(circle at 8% 5%, rgba(255, 255, 255, 0.12), transparent 30%),
		var(--pvf-ink);
	border-radius: var(--pvf-radius-lg);
	box-shadow: var(--pvf-shadow);
	color: #fff;
	overflow: hidden;
}

.pvf-detail__signal {
	position: absolute;
	top: 0;
	right: 11%;
	width: 80px;
	height: 7px;
	background: var(--pvf-coral);
	border-radius: 0 0 999px 999px;
}

.pvf-detail__hero .pvf-eyebrow {
	color: #9bd0c9;
}

.pvf-detail__hero h1 {
	max-width: 760px;
	margin: 0 0 22px;
	color: #fff;
	font-family: var(--pvf-display-font);
	font-size: clamp(42px, 7vw, 78px);
	font-weight: 600;
	letter-spacing: -0.05em;
	line-height: 0.98;
}

.pvf-3a6afaeb:lang(zh) :where(h1, h2, h3) {
	letter-spacing: 0;
	line-height: 1.18;
}

.pvf-detail__lede {
	max-width: 720px;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(16px, 1.8vw, 20px);
	line-height: 1.65;
}

.pvf-detail__lede > :first-child {
	margin-top: 0;
}

.pvf-detail__lede > :last-child {
	margin-bottom: 0;
}

.pvf-detail__facts {
	display: grid;
	align-self: stretch;
	gap: 0;
	padding: 9px 0;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--pvf-radius);
}

.pvf-detail__fact {
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 13px 17px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pvf-detail__fact:last-child {
	border-bottom: 0;
}

.pvf-detail__fact .pvf-icon {
	color: #9bd0c9;
}

.pvf-detail__fact > span:last-child {
	display: grid;
	gap: 1px;
}

.pvf-detail__fact small {
	color: rgba(255, 255, 255, 0.58);
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.pvf-detail__fact strong {
	color: #fff;
	font-size: 13px;
	font-weight: 700;
}

.pvf-detail__body {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
	align-items: start;
	gap: clamp(34px, 6vw, 84px);
	padding: clamp(42px, 7vw, 84px) clamp(4px, 2vw, 20px) 20px;
}

.pvf-detail__content {
	min-width: 0;
}

.pvf-detail__section {
	margin: 0 0 44px;
	padding: 0 0 42px;
	border-bottom: 1px solid var(--pvf-line-soft);
}

.pvf-detail__section:last-child {
	margin-bottom: 0;
	border-bottom: 0;
}

.pvf-detail__section h2,
.pvf-detail__apply-card h2 {
	margin: 0 0 18px;
	color: var(--pvf-ink);
	font-family: var(--pvf-display-font);
	font-size: clamp(30px, 4vw, 44px);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.08;
}

.pvf-rich-text {
	color: var(--pvf-ink-soft);
	font-size: 17px;
	line-height: 1.75;
}

.pvf-rich-text > :first-child {
	margin-top: 0;
}

.pvf-rich-text > :last-child {
	margin-bottom: 0;
}

.pvf-rich-text :where(ul, ol) {
	padding-left: 1.25em;
}

.pvf-rich-text li {
	margin-bottom: 0.55em;
}

.pvf-rich-text li::marker {
	color: var(--pvf-accent);
}

.pvf-detail__apply-card {
	position: sticky;
	top: 32px;
	padding: 26px;
	background: var(--pvf-paper);
	border: 1px solid var(--pvf-line-soft);
	border-radius: var(--pvf-radius);
}

.pvf-detail__apply-card h2 {
	font-size: 30px;
}

.pvf-detail__apply-card > p:not(.pvf-eyebrow) {
	margin: 0 0 20px;
	color: var(--pvf-muted);
	font-size: 14px;
}

.pvf-detail__apply-card .pvf-button {
	width: 100%;
}

.pvf-editor-note {
	padding: 14px 16px;
	background: #fff8e5;
	border: 1px solid #d8bd70;
	border-radius: 8px;
	color: #604d18;
}

@media (hover: hover) {
	.pvf-3a6afaeb .pvf-button--primary:hover,
	.pvf-3a6afaeb .pvf-button--filter:hover {
		background: var(--pvf-accent-hover);
		color: #fff;
		transform: translateY(-1px);
	}

	.pvf-filter .pvf-button--filter:hover {
		background: #8c3622;
	}

	.pvf-3a6afaeb .pvf-button--secondary:hover {
		background: var(--pvf-paper);
		border-color: var(--pvf-accent);
	}

	.pvf-3a6afaeb .pvf-language a:hover {
		color: var(--pvf-ink);
	}

	.pvf-card:hover {
		border-color: var(--pvf-line);
		box-shadow: 0 18px 42px rgba(23, 56, 59, 0.11);
		transform: translateY(-4px);
	}

	.pvf-card__link:hover svg {
		transform: translateX(4px);
	}
}

@media (max-width: 1050px) {
	.pvf-filter__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pvf-filter .pvf-button--filter {
		grid-column: 1 / -1;
	}

	.pvf-detail__hero {
		grid-template-columns: minmax(0, 1fr) minmax(270px, 0.65fr);
		gap: 34px;
	}
}

@media (max-width: 760px) {
	.pvf-board .pvf-language,
	.pvf-detail .pvf-language {
		align-items: flex-start;
		justify-content: flex-start;
		flex-direction: column;
	}

	.pvf-board__header,
	.pvf-detail__hero,
	.pvf-detail__body {
		grid-template-columns: minmax(0, 1fr);
	}

	.pvf-board__header {
		align-items: start;
		gap: 20px;
	}

	.pvf-board__intro {
		padding-left: 14px;
	}

	.pvf-filter__grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.pvf-filter .pvf-button--filter {
		grid-column: auto;
	}

	.pvf-board__toolbar,
	.pvf-board__error {
		align-items: flex-start;
		flex-direction: column;
	}

	.pvf-card {
		min-height: 0;
	}

	.pvf-detail__hero {
		padding: 30px 22px;
	}

	.pvf-detail__facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pvf-detail__apply-card {
		position: static;
	}
}

@media (max-width: 480px) {
	.pvf-3a6afaeb .pvf-language ul {
		width: 100%;
		border-radius: 14px;
	}

	.pvf-3a6afaeb .pvf-language li {
		flex: 1 1 0;
	}

	.pvf-3a6afaeb .pvf-language a {
		justify-content: center;
		min-height: 44px;
		padding-inline: 8px;
	}

	.pvf-filter {
		padding: 18px;
		border-radius: 18px;
	}

	.pvf-detail__facts {
		grid-template-columns: minmax(0, 1fr);
	}

	.pvf-detail__fact {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.pvf-detail__fact:last-child {
		border-bottom: 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	.pvf-3a6afaeb *,
	.pvf-3a6afaeb *::before,
	.pvf-3a6afaeb *::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

@media print {
	.pvf-3a6afaeb .pvf-language,
	.pvf-3a6afaeb .pvf-button,
	.pvf-detail__apply-card {
		display: none !important;
	}

	.pvf-detail__hero {
		background: #fff;
		box-shadow: none;
		color: #000;
	}

	.pvf-detail__hero h1,
	.pvf-detail__fact strong {
		color: #000;
	}

	.pvf-detail__fact small,
	.pvf-detail__lede {
		color: #333;
	}
}
