:root {
	--wo-navy: #071a3d;
	--wo-navy-2: #102b55;
	--wo-coral: #f04d3d;
	--wo-coral-dark: #d83d31;
	--wo-cream: #fbf8f2;
	--wo-paper: #ffffff;
	--wo-mint: #e6f5ef;
	--wo-mint-ink: #176b55;
	--wo-sky: #e7f4fc;
	--wo-lilac: #efedfb;
	--wo-ink-soft: #647087;
	--wo-line: #dfe5eb;
	--wo-shadow: 0 14px 38px rgba(7, 26, 61, .09);
	--wo-shadow-small: 0 5px 18px rgba(7, 26, 61, .07);
	--wo-radius: 14px;
	--wo-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
	--wo-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--wo-paper);
	color: var(--wo-navy);
	font: 16px/1.55 var(--wo-sans);
	-webkit-font-smoothing: antialiased;
}
body.admin-bar .wo-site-header { top: 32px; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--wo-coral); }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible { outline: 3px solid rgba(240, 77, 61, .35); outline-offset: 3px; }
h1, h2, h3 {
	margin: 0 0 .55em;
	color: var(--wo-navy);
	font-family: var(--wo-display);
	font-weight: 700;
	line-height: 1.03;
	letter-spacing: -.03em;
}
h1 { font-size: clamp(2.75rem, 5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.wo-container { width: min(1340px, calc(100% - 56px)); margin-inline: auto; }
.wo-skip-link {
	position: fixed;
	z-index: 99999;
	top: 8px;
	left: 8px;
	transform: translateY(-150%);
	padding: 10px 15px;
	border-radius: 8px;
	background: #fff;
	box-shadow: var(--wo-shadow);
}
.wo-skip-link:focus { transform: none; }
.wo-eyebrow {
	display: block;
	margin-bottom: 11px;
	color: var(--wo-coral);
	font-size: .72rem;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.wo-section { padding: clamp(60px, 7vw, 96px) 0; }
.wo-section--mint { background: var(--wo-mint); }
.wo-section--navy { background: var(--wo-navy); color: #fff; }
.wo-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 28px;
}
.wo-section-head h2 { margin: 0; }
.wo-section-head > p { max-width: 540px; margin: 0; color: var(--wo-ink-soft); }
.wo-text-link { color: var(--wo-coral); font-weight: 800; text-decoration: none; white-space: nowrap; }
.wo-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	width: max-content;
	padding: 12px 21px;
	border: 0;
	border-radius: 8px;
	font-size: .9rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.wo-button:hover { transform: translateY(-1px); }
.wo-button--primary {
	background: linear-gradient(135deg, var(--wo-coral), #ff382e);
	color: #fff;
	box-shadow: 0 8px 20px rgba(240, 77, 61, .2);
}
.wo-button--primary:hover { background: var(--wo-coral-dark); color: #fff; }
.wo-button--outline { border: 1px solid rgba(7, 26, 61, .24); background: transparent; }
.wo-button--light { background: #fff; color: var(--wo-navy); }
.wo-button--wide { width: 100%; }

/* Header */
.wo-site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	background: rgba(255, 255, 255, .96);
	border-bottom: 1px solid rgba(7, 26, 61, .1);
	backdrop-filter: blur(16px);
	transition: box-shadow .2s ease;
}
.wo-site-header.is-scrolled { box-shadow: 0 9px 28px rgba(7, 26, 61, .08); }
.wo-header-row {
	min-height: 70px;
	display: grid;
	grid-template-columns: auto auto minmax(360px, 1fr) auto;
	align-items: center;
	gap: 28px;
}
.wo-logo {
	display: inline-flex;
	align-items: baseline;
	color: var(--wo-navy);
	font: 700 2rem/1 var(--wo-display);
	letter-spacing: -.055em;
	text-decoration: none;
	white-space: nowrap;
}
.wo-logo span { color: var(--wo-coral); }
.wo-logo em { color: var(--wo-coral); font-style: normal; }
.wo-logo .custom-logo-link { display: block; }
.wo-logo .custom-logo { max-height: 45px; width: auto; }
.wo-city-switch {
	position: relative;
	display: inline-flex;
	align-items: center;
}
.wo-city-switch select {
	min-width: 135px;
	height: 40px;
	padding: 0 34px 0 38px;
	border: 1px solid #d8dfe7;
	border-radius: 999px;
	appearance: auto;
	background: #fff;
	color: var(--wo-navy);
	font-size: .85rem;
	font-weight: 700;
	cursor: pointer;
}
.wo-location-dot {
	position: absolute;
	z-index: 2;
	left: 15px;
	width: 10px;
	height: 10px;
	border: 3px solid var(--wo-navy);
	border-radius: 50%;
	pointer-events: none;
}
.wo-primary-nav {
	justify-self: center;
	display: flex;
	align-items: center;
	gap: clamp(25px, 3.6vw, 54px);
}
.wo-primary-nav a {
	font-size: .86rem;
	font-weight: 720;
	text-decoration: none;
	white-space: nowrap;
}
.wo-primary-nav a:hover { color: var(--wo-coral); }
.wo-nav-mobile-only { display: none; }
.wo-header-actions { display: flex; align-items: center; gap: 16px; }
.wo-header-business { color: var(--wo-ink-soft); font-size: .82rem; font-weight: 700; text-decoration: none; }
.wo-button--header { min-height: 42px; padding-inline: 19px; background: var(--wo-coral); color: #fff; box-shadow: 0 7px 18px rgba(240, 77, 61, .18); }
.wo-button--header:hover { background: var(--wo-coral-dark); color: #fff; }
.wo-menu-toggle {
	display: none;
	width: 44px;
	height: 42px;
	padding: 9px;
	border: 0;
	border-radius: 9px;
	background: #fff;
}
.wo-menu-toggle > span:not(.screen-reader-text) { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--wo-navy); }

/* Network home */
.wo-network-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(64px, 8vw, 105px) 0;
	background:
		radial-gradient(circle at 85% 10%, rgba(231, 244, 252, .85), transparent 32%),
		linear-gradient(135deg, #fff, var(--wo-cream));
}
.wo-network-intro { max-width: 790px; margin: 0 auto 45px; text-align: center; }
.wo-network-intro h1 { margin-bottom: 15px; }
.wo-network-intro p { max-width: 690px; margin-inline: auto; color: var(--wo-ink-soft); font-size: 1.12rem; }
.wo-city-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.wo-city-card {
	position: relative;
	min-height: 370px;
	overflow: hidden;
	border-radius: 18px;
	background: var(--wo-navy);
	box-shadow: var(--wo-shadow);
	text-decoration: none;
	isolation: isolate;
	transition: transform .25s ease, box-shadow .25s ease;
}
.wo-city-card::before {
	content: "";
	position: absolute;
	z-index: 0;
	inset: 0;
	background: var(--wo-card-image) center / cover no-repeat;
	transition: transform .6s ease;
}
.wo-city-card::after {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(to top, rgba(7, 26, 61, .9), rgba(7, 26, 61, .05) 66%);
}
.wo-city-card:hover { transform: translateY(-6px); box-shadow: 0 24px 55px rgba(7, 26, 61, .17); color: #fff; }
.wo-city-card:hover::before { transform: scale(1.035); }
.wo-city-card__body { position: absolute; z-index: 2; inset: auto 0 0; display: block; padding: 28px; color: #fff; }
.wo-city-card__body small,
.wo-city-card__body strong,
.wo-city-card__body em { display: block; }
.wo-city-card__body small { color: #dce7ef; font-size: .8rem; }
.wo-city-card__body strong { margin: 4px 0 15px; font: 700 2rem/1.05 var(--wo-display); }
.wo-city-card__body em { color: #fff; font-size: .86rem; font-style: normal; font-weight: 800; }
.wo-network-benefits { padding: 74px 0; background: var(--wo-navy); }
.wo-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 52px; }
.wo-value-grid > div { position: relative; padding-left: 54px; }
.wo-value-grid span {
	position: absolute;
	left: 0;
	top: -4px;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	color: #fff;
	font-weight: 850;
}
.wo-value-grid h2 { color: #fff; font-size: 1.65rem; }
.wo-value-grid p { margin: 0; color: #becbd8; font-size: .92rem; }
.wo-network-business { padding: 58px 0; background: var(--wo-mint); }
.wo-split-cta { display: flex; align-items: center; justify-content: space-between; gap: 44px; }
.wo-split-cta h2 { margin-bottom: 8px; }
.wo-split-cta p { max-width: 700px; margin: 0; color: var(--wo-ink-soft); }

/* Photographic city hero */
.wo-editorial-hero {
	position: relative;
	min-height: 355px;
	overflow: hidden;
	background: var(--wo-cream);
	isolation: isolate;
}
.wo-editorial-hero::before {
	content: "";
	position: absolute;
	z-index: 0;
	inset: 0 0 0 auto;
	width: 62%;
	background: var(--wo-city-image) center / cover no-repeat;
}
.wo-editorial-hero::after {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background: linear-gradient(90deg, var(--wo-cream) 0%, rgba(251, 248, 242, .98) 39%, rgba(251, 248, 242, .75) 52%, rgba(251, 248, 242, 0) 73%);
}
.wo-city-alphen .wo-editorial-hero::before { background-position: center 55%; }
.wo-city-leiden .wo-editorial-hero::before { background-position: center 52%; }
.wo-city-den-haag .wo-editorial-hero::before { background-position: center 58%; }
.wo-editorial-hero__inner { position: relative; z-index: 2; min-height: inherit; display: flex; align-items: center; padding: 48px 0; }
.wo-editorial-hero__copy { width: min(52%, 700px); }
.wo-editorial-hero__copy h1 { margin-bottom: 14px; }
.wo-editorial-hero__copy p { max-width: 560px; color: #34445f; font-size: 1.05rem; }
.wo-editorial-hero--compact { min-height: 275px; }
.wo-editorial-hero--compact .wo-editorial-hero__inner { padding-block: 34px; }
.wo-editorial-hero--compact h1 { font-size: clamp(2.7rem, 4vw, 4rem); }
.wo-hero-pills,
.wo-date-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.wo-hero-pills a,
.wo-date-pills a {
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 10px 17px;
	border: 1px solid #cbd4de;
	border-radius: 999px;
	background: rgba(255, 255, 255, .85);
	font-size: .82rem;
	font-weight: 750;
	text-decoration: none;
}
.wo-hero-pills a:first-child,
.wo-date-pills a.is-active {
	border-color: var(--wo-coral);
	background: var(--wo-coral);
	color: #fff;
	box-shadow: 0 7px 17px rgba(240, 77, 61, .17);
}

/* Shared cards */
.wo-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.wo-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--wo-line);
	border-radius: var(--wo-radius);
	background: #fff;
	box-shadow: var(--wo-shadow-small);
	transition: transform .2s ease, box-shadow .2s ease;
}
.wo-card:hover { transform: translateY(-3px); box-shadow: var(--wo-shadow); }
.wo-card__media {
	position: relative;
	display: block;
	min-width: 0;
	aspect-ratio: 1.55;
	overflow: hidden;
	background: var(--wo-sky);
}
.wo-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wo-card:hover .wo-card__media img { transform: scale(1.025); }
.wo-media-fallback:not(:has(img)) { background: linear-gradient(145deg, #b9dcd4, #75a8a1); }
.wo-media-fallback.wo-tone-0:not(:has(img)) { background: linear-gradient(145deg, #f2c77c, #db6c58); }
.wo-media-fallback.wo-tone-1:not(:has(img)) { background: linear-gradient(145deg, #a9d4e6, #547f9d); }
.wo-media-fallback.wo-tone-2:not(:has(img)) { background: linear-gradient(145deg, #c7d9a6, #6f9a85); }
.wo-media-fallback.wo-tone-3:not(:has(img)) { background: linear-gradient(145deg, #e5bfd0, #9879a2); }
.wo-media-fallback.wo-tone-4:not(:has(img)) { background: linear-gradient(145deg, #f4d49f, #d8735d); }
.wo-media-mark {
	position: absolute;
	right: 18px;
	bottom: 13px;
	color: rgba(255, 255, 255, .92);
	font: 700 1.35rem/1 var(--wo-display);
}
.wo-feature-label {
	position: absolute;
	left: 14px;
	top: 14px;
	padding: 7px 11px;
	border-radius: 7px;
	background: var(--wo-navy);
	color: #fff;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .02em;
}
.wo-card__body { padding: 20px; }
.wo-card__body h2 { margin: 7px 0 8px; font-size: 1.5rem; }
.wo-card__body h2 a { text-decoration: none; }
.wo-card__body h2 a:hover { color: var(--wo-coral); }
.wo-card__excerpt,
.wo-card__body > p:not(.wo-card__meta):not(.wo-offer) { color: var(--wo-ink-soft); font-size: .91rem; }
.wo-card__meta {
	margin: 8px 0 0;
	color: var(--wo-coral);
	font-size: .7rem;
	font-weight: 850;
	letter-spacing: .065em;
	text-transform: uppercase;
}
.wo-tag-row { display: flex; flex-wrap: wrap; gap: 6px; min-height: 24px; }
.wo-tag {
	display: inline-flex;
	align-items: center;
	min-height: 22px;
	padding: 4px 9px;
	border-radius: 6px;
	background: var(--wo-mint);
	color: var(--wo-mint-ink);
	font-size: .62rem;
	font-weight: 850;
	letter-spacing: .045em;
	text-transform: uppercase;
}
.wo-tag--sponsored { background: #fee9e6; color: #a7352b; }
.wo-card__foot {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 36px;
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--wo-line);
	color: var(--wo-ink-soft);
	font-size: .78rem;
}
.wo-card__place { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wo-card__place::before { content: "●"; margin-right: 6px; color: var(--wo-navy); font-size: .55rem; }
.wo-card__price { margin-left: auto; color: var(--wo-navy); white-space: nowrap; }
.wo-card__arrow {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	margin-left: auto;
	border: 1px solid #d5dde5;
	border-radius: 8px;
	color: var(--wo-navy);
	text-decoration: none;
}
.wo-card--featured {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
}
.wo-card--featured .wo-card__media { height: 100%; min-height: 255px; aspect-ratio: auto; }
.wo-card--featured .wo-card__body { display: flex; flex-direction: column; justify-content: center; padding: 28px 32px; }
.wo-card--featured .wo-card__body h2 { font-size: clamp(2rem, 3vw, 2.75rem); }
.wo-card--featured .wo-card__foot { flex-wrap: wrap; }
.wo-card--featured .wo-card__foot .wo-button { margin-left: auto; }
.wo-card--compact .wo-card__body { padding: 13px 14px 14px; }
.wo-card--compact .wo-card__body h2 { margin-top: 5px; font-size: 1.08rem; }
.wo-card--compact .wo-card__meta { font-size: .61rem; }
.wo-card--compact .wo-card__foot { margin-top: 9px; padding-top: 9px; }
.wo-card--compact .wo-card__price { display: none; }

/* City homepage */
.wo-city-agenda { padding: 28px 0 34px; background: #fff; }
.wo-city-agenda-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 24px; align-items: start; }
.wo-city-event-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; margin-top: 14px; }
.wo-agenda-panel {
	overflow: hidden;
	border: 1px solid var(--wo-line);
	border-radius: var(--wo-radius);
	background: #fff;
	box-shadow: var(--wo-shadow-small);
}
.wo-agenda-panel__head { display: flex; align-items: end; justify-content: space-between; padding: 22px 22px 13px; }
.wo-agenda-panel__head span { color: var(--wo-coral); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.wo-agenda-panel__head strong { order: -1; font: 700 2rem/1 var(--wo-display); }
.wo-agenda-panel__list { padding: 0 18px; }
.wo-agenda-panel__day {
	display: block;
	margin: 5px 0 3px;
	padding: 5px 9px;
	border-radius: 5px;
	background: var(--wo-mint);
	font-size: .64rem;
	font-weight: 820;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.wo-agenda-panel__day:nth-of-type(even) { background: var(--wo-sky); }
.wo-agenda-row {
	display: grid;
	grid-template-columns: 43px minmax(0, 1fr) 48px 12px;
	align-items: center;
	gap: 9px;
	padding: 9px 7px;
	border-bottom: 1px solid #edf0f3;
	text-decoration: none;
}
.wo-agenda-row time { color: var(--wo-navy); font-size: .72rem; font-weight: 800; }
.wo-agenda-row__copy { min-width: 0; }
.wo-agenda-row__copy strong,
.wo-agenda-row__copy em { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wo-agenda-row__copy strong { font-size: .77rem; }
.wo-agenda-row__copy em { color: var(--wo-ink-soft); font-size: .65rem; font-style: normal; }
.wo-agenda-row__thumb { width: 48px; height: 34px; overflow: hidden; border-radius: 5px; background: var(--wo-sky); }
.wo-agenda-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.wo-agenda-row__arrow { color: var(--wo-navy); font-size: 1.15rem; }
.wo-agenda-panel__link {
	display: block;
	padding: 17px 20px 19px;
	color: var(--wo-coral);
	font-size: .78rem;
	font-weight: 800;
	text-align: center;
	text-decoration: none;
}
.wo-city-more { background: var(--wo-cream); }
.wo-city-more__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 46px; }
.wo-section-head--small { align-items: center; margin-bottom: 20px; }
.wo-section-head--small h2 { font-size: 2.1rem; }
.wo-card-stack { display: grid; gap: 11px; }
.wo-empty {
	grid-column: 1 / -1;
	padding: 38px;
	border: 1px dashed #b9c4ce;
	border-radius: var(--wo-radius);
	background: rgba(255, 255, 255, .65);
	text-align: center;
}
.wo-empty h2, .wo-empty h3 { margin-bottom: 7px; }
.wo-empty p { margin: 0; color: var(--wo-ink-soft); }

/* Vacancy cards */
.wo-vacancy-card {
	display: grid;
	grid-template-columns: 66px minmax(0, 1fr) auto;
	align-items: center;
	gap: 17px;
	padding: 17px;
	overflow: visible;
}
.wo-vacancy-card__mark {
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	border-radius: 10px;
	background: var(--wo-mint);
	color: var(--wo-mint-ink);
	font-size: 1.25rem;
	letter-spacing: .02em;
}
.wo-vacancy-card:nth-child(3n + 2) .wo-vacancy-card__mark { background: var(--wo-sky); color: #1e5c87; }
.wo-vacancy-card:nth-child(3n) .wo-vacancy-card__mark { background: #fff0e9; color: #a4472f; }
.wo-vacancy-card .wo-card__body { min-width: 0; padding: 0; }
.wo-vacancy-card__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.wo-vacancy-card .wo-card__meta { margin: 0; }
.wo-vacancy-card .wo-card__body h2 { margin: 4px 0 7px; font-size: 1.25rem; }
.wo-vacancy-card .wo-card__excerpt { margin-bottom: 8px; }
.wo-info-line { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--wo-ink-soft); font-size: .72rem; }
.wo-info-line span { white-space: nowrap; }
.wo-vacancy-card__cta { min-width: 145px; }

/* Deal cards */
.wo-offer { color: #35445e; font-size: .88rem; }
.wo-price-pair { margin-right: auto; white-space: nowrap; }
.wo-price-pair del { margin-right: 6px; color: #8993a0; }
.wo-price-pair strong { color: var(--wo-coral); font-size: 1rem; }
.wo-deal-valid { color: var(--wo-ink-soft); white-space: nowrap; }
.wo-deal-card .wo-card__foot { flex-wrap: wrap; }
.wo-deal-card .wo-card__foot .wo-button { margin-left: auto; min-height: 36px; padding: 9px 13px; font-size: .76rem; }
.wo-card--row.wo-deal-card { display: grid; grid-template-columns: 140px minmax(0, 1fr); }
.wo-card--row.wo-deal-card .wo-card__media { height: 100%; min-height: 145px; aspect-ratio: auto; }
.wo-card--row.wo-deal-card .wo-card__body { padding: 16px; }
.wo-card--row.wo-deal-card .wo-card__body h2 { font-size: 1.2rem; }
.wo-deal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 16px; }
.wo-deal-grid .wo-deal-card .wo-card__body h2 { font-size: 1.2rem; }

/* Listing pages and filters */
.wo-search-bar {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	width: min(560px, 100%);
	margin-top: 20px;
	padding: 5px 5px 5px 14px;
	border: 1px solid #d6dde5;
	border-radius: 9px;
	background: rgba(255, 255, 255, .92);
	box-shadow: 0 5px 15px rgba(7, 26, 61, .04);
}
.wo-search-bar > span { color: var(--wo-navy); font-size: 1.35rem; }
.wo-search-bar input { min-width: 0; padding: 8px 12px; border: 0; outline: 0; background: transparent; }
.wo-search-bar button {
	min-height: 37px;
	padding: 8px 15px;
	border: 0;
	border-radius: 6px;
	background: var(--wo-coral);
	color: #fff;
	font-size: .78rem;
	font-weight: 800;
	cursor: pointer;
}
.wo-listing-tools { background: #fff; border-bottom: 1px solid var(--wo-line); box-shadow: 0 5px 16px rgba(7, 26, 61, .035); }
.wo-event-tools { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.wo-event-tools .wo-date-pills { flex-wrap: nowrap; margin: 0; }
.wo-filter-bar { display: flex; align-items: end; gap: 10px; }
.wo-filter-bar label { display: grid; gap: 3px; color: var(--wo-ink-soft); font-size: .66rem; font-weight: 800; text-transform: uppercase; }
.wo-filter-bar input:not([type="hidden"]),
.wo-filter-bar select {
	min-height: 40px;
	padding: 7px 11px;
	border: 1px solid #d1d9e1;
	border-radius: 8px;
	background: #fff;
	color: var(--wo-navy);
	font-size: .79rem;
	font-weight: 650;
	text-transform: none;
}
.wo-filter-bar .wo-button { min-height: 40px; padding: 10px 15px; }
.wo-filter-reset { padding: 9px 4px; color: var(--wo-ink-soft); font-size: .75rem; }
.wo-listing-section { padding-top: 38px; }
.wo-result-head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 18px; color: var(--wo-ink-soft); font-size: .76rem; }
.wo-result-head p { margin: 0; color: var(--wo-navy); font-size: 1rem; font-weight: 800; }
.wo-listing-feature { margin-bottom: 22px; }
.wo-date-groups { display: grid; gap: 30px; }
.wo-date-group > h2 { display: flex; align-items: baseline; gap: 9px; margin-bottom: 13px; font-size: 1.65rem; }
.wo-date-group > h2 span { color: var(--wo-coral); font: 800 .72rem/1 var(--wo-sans); letter-spacing: .08em; text-transform: uppercase; }
.wo-date-group .wo-card-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.wo-card--row.wo-event-card { display: grid; grid-template-columns: 135px minmax(0, 1fr); }
.wo-card--row.wo-event-card .wo-card__media { height: 100%; min-height: 132px; aspect-ratio: auto; }
.wo-card--row.wo-event-card .wo-card__body { padding: 13px; }
.wo-card--row.wo-event-card .wo-tag-row { display: none; }
.wo-card--row.wo-event-card .wo-card__meta { margin-top: 0; }
.wo-card--row.wo-event-card .wo-card__body h2 { margin: 4px 0 8px; font-size: 1.05rem; }
.wo-card--row.wo-event-card .wo-card__foot { margin-top: 7px; padding-top: 7px; }
.wo-card--row.wo-event-card .wo-card__price { display: none; }
.wo-listing-with-aside { display: grid; grid-template-columns: minmax(0, 1fr) 315px; gap: 26px; align-items: start; }
.wo-promo-card {
	position: sticky;
	top: 105px;
	overflow: hidden;
	padding: 28px;
	border: 1px solid var(--wo-line);
	border-radius: var(--wo-radius);
	background: linear-gradient(180deg, var(--wo-sky) 0 155px, #fff 155px);
	box-shadow: var(--wo-shadow-small);
}
.wo-promo-card__icon {
	display: grid;
	place-items: center;
	width: 90px;
	height: 90px;
	margin: 10px auto 58px;
	border-radius: 24px;
	background: #fff;
	color: var(--wo-coral);
	font-size: 2.3rem;
	box-shadow: var(--wo-shadow-small);
	transform: rotate(-5deg);
}
.wo-promo-card__icon--mint { color: var(--wo-mint-ink); }
.wo-promo-card h2 { font-size: 1.7rem; }
.wo-promo-card > strong { display: block; margin-bottom: 8px; }
.wo-promo-card p { color: var(--wo-ink-soft); font-size: .9rem; }
.wo-promo-card .wo-button { margin-top: 10px; }

/* Newsletter and business callouts */
.wo-newsletter-banner { padding: 0 0 36px; background: #fff; }
.wo-newsletter-banner > .wo-container {
	position: relative;
	display: grid;
	grid-template-columns: 95px minmax(260px, 1fr) minmax(360px, .95fr) 150px;
	align-items: center;
	gap: 22px;
	min-height: 116px;
	overflow: hidden;
	padding: 22px 30px;
	border-radius: var(--wo-radius);
	background:
		radial-gradient(circle at 18% 15%, #fff 0 18px, transparent 19px),
		linear-gradient(135deg, #e4f4ff, #eef8ff);
}
.wo-newsletter-banner__icon { width: 68px; color: var(--wo-coral); transform: rotate(-7deg); }
.wo-newsletter-banner__copy h2 { margin-bottom: 4px; font-size: 1.8rem; }
.wo-newsletter-banner__copy p { margin: 0; color: #44536c; font-size: .82rem; }
.wo-newsletter-banner__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	padding: 4px;
	border: 1px solid #d8e4ec;
	border-radius: 8px;
	background: #fff;
}
.wo-newsletter-banner__form input { min-width: 0; padding: 10px 13px; border: 0; outline: 0; }
.wo-newsletter-banner__form .wo-button { min-height: 40px; }
.wo-newsletter-banner__skyline { align-self: end; display: flex; align-items: end; justify-content: center; gap: 4px; height: 75px; }
.wo-newsletter-banner__skyline i { position: relative; display: block; width: 20px; height: 40px; background: var(--wo-navy); }
.wo-newsletter-banner__skyline i:nth-child(2) { height: 58px; }
.wo-newsletter-banner__skyline i:nth-child(3) { width: 34px; height: 48px; }
.wo-newsletter-banner__skyline i:nth-child(4) { height: 68px; }
.wo-newsletter-banner__skyline i:nth-child(5) { height: 36px; }
.wo-business-strip { padding: 42px 0; background: var(--wo-mint); }
.wo-business-strip__inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.wo-business-strip h2 { margin-bottom: 4px; font-size: 2rem; }
.wo-business-strip p { margin: 0; color: #3e5a57; }

/* Form pages */
.wo-form-section { padding: 40px 0 72px; background: #fbfcfd; }
.wo-form-page { max-width: 1260px; }
.wo-form-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 24px; align-items: start; }
.wo-form-layout--single { grid-template-columns: 1fr; max-width: 1080px; margin-inline: auto; }
.wo-form-page .wo-submit__intro { display: none; }
.wo-form-page .wo-submit > .wo-notice { margin-bottom: 20px; }
.wo-process-card {
	position: sticky;
	top: 105px;
	padding: 29px;
	border: 1px solid var(--wo-line);
	border-radius: var(--wo-radius);
	background: #fff;
	box-shadow: var(--wo-shadow-small);
}
.wo-process-card h2 { font-size: 2rem; }
.wo-process-card ol { display: grid; gap: 23px; padding: 0; margin: 28px 0; list-style: none; }
.wo-process-card li { display: grid; grid-template-columns: 40px 1fr; gap: 13px; }
.wo-process-card li > span { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--wo-sky); font: 700 1.2rem/1 var(--wo-display); }
.wo-process-card li strong { font-family: var(--wo-display); font-size: 1.05rem; }
.wo-process-card li p { margin: 4px 0 0; color: var(--wo-ink-soft); font-size: .79rem; }
.wo-process-card__notice { padding: 15px; border: 1px solid #ffc4ba; border-radius: 9px; background: #fff4f1; color: #a73429; font-size: .82rem; font-weight: 750; }
.wo-process-card__mail { margin: 20px 0 0; color: var(--wo-mint-ink); font-size: .82rem; }

/* Detail pages */
.wo-detail-showcase { background: var(--wo-cream); }
.wo-detail--vacancy .wo-detail-showcase { background: #f3faf7; }
.wo-detail--deal .wo-detail-showcase { background: #fff7f0; }
.wo-detail-showcase__grid { display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(380px, .86fr); min-height: 440px; }
.wo-detail-media { position: relative; min-height: 440px; overflow: hidden; }
.wo-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.wo-detail-media > span { position: absolute; right: 25px; bottom: 22px; color: #fff; font: 700 2.4rem/1 var(--wo-display); }
.wo-detail-media > span span { color: #ffd0ca; }
.wo-detail-showcase__copy { display: flex; flex-direction: column; justify-content: center; padding: 42px 50px; }
.wo-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: var(--wo-ink-soft); font-size: .72rem; }
.wo-breadcrumb a { text-decoration: none; }
.wo-detail-showcase h1 { margin: 13px 0 13px; font-size: clamp(2.9rem, 4.4vw, 4.7rem); }
.wo-detail-lead { max-width: 630px; color: #35445d; font-size: 1.02rem; }
.wo-detail-quickfacts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px 22px; margin: 17px 0 24px; }
.wo-detail-quickfacts span { display: grid; }
.wo-detail-quickfacts small { color: var(--wo-coral); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.wo-detail-quickfacts strong { font-size: .84rem; }
.wo-detail-primary { margin-top: 4px; }
.wo-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 54px; align-items: start; padding-block: 55px 88px; }
.wo-prose { max-width: 820px; font-size: 1rem; }
.wo-prose h2 { margin-top: 1.7em; font-size: 2rem; }
.wo-prose h3 { margin-top: 1.45em; }
.wo-prose a { color: var(--wo-coral-dark); }
.wo-prose > *:first-child { margin-top: 0; }
.wo-disclosure { padding: 16px 18px; border-left: 4px solid var(--wo-coral); background: #fff0ed; font-size: .88rem; }
.wo-terms { margin-top: 40px; padding: 24px; border-radius: var(--wo-radius); background: var(--wo-mint); }
.wo-terms h2 { font-size: 1.65rem; }
.wo-detail-sidebar { position: sticky; top: 105px; }
.wo-fact-card { overflow: hidden; border: 1px solid var(--wo-line); border-radius: var(--wo-radius); background: #fff; box-shadow: var(--wo-shadow-small); }
.wo-fact-card h2 { margin: 0; padding: 22px 22px 14px; font-size: 1.65rem; }
.wo-fact-card > div { display: grid; gap: 2px; padding: 14px 22px; border-top: 1px solid var(--wo-line); }
.wo-fact-card small { color: var(--wo-coral); font-size: .63rem; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.wo-fact-card strong { font-size: .9rem; }
.wo-fact-card span { color: var(--wo-ink-soft); font-size: .78rem; }
.wo-code { width: max-content; padding: 5px 9px; border: 1px dashed var(--wo-coral); border-radius: 5px; font-family: ui-monospace, monospace; letter-spacing: .06em; }
.wo-detail-note { margin: 14px 6px; color: var(--wo-ink-soft); font-size: .7rem; }
.wo-related { background: var(--wo-cream); }

/* Standard content */
.wo-standard-page { min-height: 60vh; padding: 80px 0; }
.wo-standard-page .wo-prose { margin-inline: auto; }
.wo-page-title { margin-bottom: 35px; }
.wo-generic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wo-generic-card { padding: 24px; border: 1px solid var(--wo-line); border-radius: var(--wo-radius); background: #fff; }
.wo-not-found { display: grid; place-items: center; min-height: 68vh; padding: 70px 0; text-align: center; }
.wo-error-code { display: block; color: var(--wo-coral); font-size: clamp(6rem, 20vw, 14rem); font-weight: 950; line-height: .8; opacity: .13; }
.wo-not-found h1 { margin-top: -20px; }
.wo-not-found .wo-button { margin: 15px auto 0; }

/* Footer */
.wo-site-footer { padding-top: 64px; background: var(--wo-navy); color: #bcc9d6; }
.wo-footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 55px; padding-bottom: 50px; }
.wo-logo--footer { color: #fff; }
.wo-footer-grid p { max-width: 360px; margin-top: 18px; }
.wo-social-links { display: flex; gap: 10px; margin-top: 18px; }
.wo-social-links a { padding: 6px 11px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 999px; color: #fff; font-size: .78rem; text-decoration: none; }
.wo-footer-grid h2 { color: #fff; font: 800 .72rem/1 var(--wo-sans); letter-spacing: .1em; text-transform: uppercase; }
.wo-footer-grid > div:not(:first-child) a { display: block; margin: 9px 0; color: #c8d4dd; text-decoration: none; }
.wo-footer-grid > div:not(:first-child) a:hover { color: #fff; }
.wo-footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-block: 19px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .72rem; }
.wo-mobile-dock { display: none; }

@media (min-width: 1200px) {
	.wo-deal-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.wo-deal-grid .wo-card__body { padding: 13px; }
	.wo-deal-grid .wo-card__foot { align-items: flex-start; flex-direction: column; }
	.wo-deal-grid .wo-card__foot .wo-button { width: 100%; margin: 0; }
}

@media (max-width: 1180px) {
	.wo-header-row { grid-template-columns: auto auto 1fr auto; gap: 17px; }
	.wo-primary-nav { gap: 22px; }
	.wo-header-business { display: none; }
	.wo-city-agenda-layout { grid-template-columns: minmax(0, 1fr) 340px; }
	.wo-city-event-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wo-date-group .wo-card-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.wo-newsletter-banner > .wo-container { grid-template-columns: 72px 1fr minmax(330px, .9fr); }
	.wo-newsletter-banner__skyline { display: none; }
}

@media (max-width: 900px) {
	body.admin-bar .wo-site-header { top: 46px; }
	.wo-container { width: min(100% - 36px, 1340px); }
	.wo-header-row { grid-template-columns: auto 1fr auto; }
	.wo-city-switch { justify-self: start; }
	.wo-primary-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		display: none;
		align-items: stretch;
		flex-direction: column;
		gap: 0;
		padding: 12px 18px 18px;
		background: #fff;
		border-top: 1px solid var(--wo-line);
		box-shadow: var(--wo-shadow);
	}
	.wo-primary-nav.is-open { display: flex; }
	.wo-primary-nav a { padding: 12px 4px; border-bottom: 1px solid var(--wo-line); }
	.wo-nav-mobile-only { display: block; }
	.wo-button--header { display: none; }
	.wo-menu-toggle { display: block; }
	.wo-city-grid,
	.wo-value-grid { grid-template-columns: 1fr; }
	.wo-city-card { min-height: 310px; }
	.wo-value-grid { gap: 30px; }
	.wo-editorial-hero { min-height: auto; }
	.wo-editorial-hero::before { inset: 0 0 auto; width: 100%; height: 205px; background-position: center; }
	.wo-editorial-hero::after { background: linear-gradient(180deg, rgba(251, 248, 242, 0) 80px, var(--wo-cream) 205px); }
	.wo-editorial-hero__inner,
	.wo-editorial-hero--compact .wo-editorial-hero__inner { min-height: 0; padding: 225px 0 34px; }
	.wo-editorial-hero__copy { width: 100%; }
	.wo-city-agenda-layout,
	.wo-city-more__grid,
	.wo-listing-with-aside,
	.wo-form-layout,
	.wo-detail-layout { grid-template-columns: minmax(0, 1fr); }
	.wo-form-layout > * { min-width: 0; }
	.wo-agenda-panel { margin-top: 6px; }
	.wo-city-more__grid { gap: 55px; }
	.wo-event-tools { align-items: stretch; flex-direction: column; padding-block: 16px; }
	.wo-event-tools .wo-date-pills { overflow-x: auto; padding-bottom: 3px; }
	.wo-filter-bar { flex-wrap: wrap; }
	.wo-listing-with-aside { gap: 36px; }
	.wo-promo-card,
	.wo-process-card,
	.wo-detail-sidebar { position: static; }
	.wo-detail-showcase__grid { grid-template-columns: 1fr; }
	.wo-detail-media { min-height: 390px; }
	.wo-detail-showcase__copy { padding: 36px 0 44px; }
	.wo-detail-showcase__grid > * { width: min(100% - 36px, 1340px); margin-inline: auto; }
	.wo-detail-media { width: 100%; max-width: none; }
	.wo-detail-layout { gap: 35px; }
	.wo-newsletter-banner > .wo-container { grid-template-columns: 68px 1fr; }
	.wo-newsletter-banner__form { grid-column: 1 / -1; }
	.wo-footer-grid { grid-template-columns: repeat(2, 1fr); }
	.wo-footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
	body.admin-bar .wo-site-header { top: 0; }
	body:has(.wo-mobile-dock) { padding-bottom: 65px; }
	.wo-container { width: min(100% - 28px, 1340px); }
	h1 { font-size: 2.72rem; }
	h2 { font-size: 2rem; }
	.wo-header-row { min-height: 64px; gap: 10px; }
	.wo-logo { font-size: 1.65rem; }
	.wo-city-switch select { min-width: 116px; max-width: 130px; height: 38px; padding-left: 34px; font-size: .78rem; }
	.wo-location-dot { left: 13px; }
	.wo-network-intro { text-align: left; }
	.wo-network-hero { padding-block: 54px; }
	.wo-network-hero .wo-city-grid { gap: 15px; }
	.wo-city-card { min-height: 265px; }
	.wo-value-grid > div { padding-bottom: 24px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
	.wo-split-cta,
	.wo-business-strip__inner,
	.wo-section-head { align-items: flex-start; flex-direction: column; }
	.wo-editorial-hero::before { height: 175px; }
	.wo-editorial-hero::after { background: linear-gradient(180deg, rgba(251, 248, 242, 0) 55px, var(--wo-cream) 175px); }
	.wo-editorial-hero__inner,
	.wo-editorial-hero--compact .wo-editorial-hero__inner { padding-top: 195px; }
	.wo-editorial-hero__copy h1,
	.wo-editorial-hero--compact h1 { font-size: 2.65rem; }
	.wo-form-section { padding-top: 32px; }
	.wo-hero-pills { flex-wrap: nowrap; overflow-x: auto; margin-right: -14px; padding: 2px 14px 5px 0; }
	.wo-hero-pills a { flex: 0 0 auto; }
	.wo-city-agenda { padding-top: 16px; }
	.wo-card-grid,
	.wo-city-event-grid,
	.wo-date-group .wo-card-stack,
	.wo-deal-grid,
	.wo-generic-grid { grid-template-columns: 1fr; }
	.wo-card--featured { grid-template-columns: minmax(0, 1fr); }
	.wo-card--featured .wo-card__media { min-height: 220px; aspect-ratio: 1.55; }
	.wo-card--featured .wo-card__body { padding: 21px; }
	.wo-card--featured .wo-card__body h2 { font-size: 2rem; }
	.wo-card--featured .wo-card__foot .wo-button { width: 100%; margin: 8px 0 0; }
	.wo-city-event-grid { margin-top: 12px; }
	.wo-card--compact { display: grid; grid-template-columns: 120px minmax(0, 1fr); }
	.wo-card--compact .wo-card__media { height: 100%; aspect-ratio: auto; }
	.wo-card--compact .wo-card__foot { border: 0; }
	.wo-agenda-panel { display: none; }
	.wo-vacancy-card { grid-template-columns: 52px minmax(0, 1fr); gap: 12px; padding: 14px; }
	.wo-vacancy-card__mark { width: 52px; height: 52px; font-size: 1rem; }
	.wo-vacancy-card__top { align-items: flex-start; flex-direction: column-reverse; gap: 4px; }
	.wo-vacancy-card__cta { grid-column: 1 / -1; width: 100%; }
	.wo-card--row.wo-deal-card,
	.wo-card--row.wo-event-card { grid-template-columns: 112px minmax(0, 1fr); }
	.wo-card--row.wo-event-card .wo-card__media,
	.wo-card--row.wo-deal-card .wo-card__media { min-height: 116px; }
	.wo-event-tools .wo-date-pills { margin-right: -14px; }
	.wo-filter-bar { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
	.wo-filter-bar label,
	.wo-filter-bar input:not([type="hidden"]),
	.wo-filter-bar select,
	.wo-filter-bar .wo-button { width: 100%; }
	.wo-filter-reset { text-align: center; }
	.wo-result-head { align-items: flex-start; flex-direction: column; gap: 3px; }
	.wo-listing-section { padding-top: 27px; }
	.wo-date-group > h2 { align-items: flex-start; flex-direction: column; gap: 4px; }
	.wo-promo-card__icon { margin-bottom: 42px; }
	.wo-newsletter-banner > .wo-container { grid-template-columns: 52px 1fr; gap: 14px; padding: 20px; }
	.wo-newsletter-banner__icon { width: 48px; }
	.wo-newsletter-banner__copy h2 { font-size: 1.45rem; }
	.wo-newsletter-banner__form { grid-template-columns: 1fr; }
	.wo-newsletter-banner__form .wo-button { width: 100%; }
	.wo-detail-media { min-height: 260px; }
	.wo-detail-showcase__copy { padding: 28px 0 36px; }
	.wo-detail-showcase h1 { font-size: 2.8rem; }
	.wo-detail-quickfacts { grid-template-columns: 1fr; }
	.wo-detail-primary { width: 100%; }
	.wo-footer-grid { grid-template-columns: 1fr; }
	.wo-footer-grid > div:first-child { grid-column: auto; }
	.wo-footer-bottom { flex-direction: column; gap: 4px; }
	.wo-mobile-dock {
		position: fixed;
		z-index: 1200;
		left: 0;
		right: 0;
		bottom: 0;
		display: grid;
		grid-template-columns: repeat(4, minmax(0, 1fr));
		min-height: 64px;
		padding: 7px max(9px, env(safe-area-inset-right)) max(7px, env(safe-area-inset-bottom)) max(9px, env(safe-area-inset-left));
		border-top: 1px solid var(--wo-line);
		background: rgba(255, 255, 255, .97);
		box-shadow: 0 -8px 24px rgba(7, 26, 61, .08);
		backdrop-filter: blur(14px);
	}
	.wo-mobile-dock a { display: grid; min-width: 0; place-items: center; gap: 1px; color: var(--wo-navy); font-size: .61rem; font-weight: 750; text-decoration: none; }
	.wo-mobile-dock a span { font-size: 1.28rem; line-height: 1; }
}

@media (max-width: 360px) {
	.wo-header-row { grid-template-columns: auto minmax(0, 1fr) 40px; gap: 7px; }
	.wo-logo { font-size: 1.4rem; }
	.wo-city-switch { min-width: 0; width: 100%; }
	.wo-city-switch select { min-width: 0; width: 100%; max-width: none; padding: 0 24px 0 29px; }
	.wo-location-dot { left: 10px; }
	.wo-menu-toggle { width: 40px; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
