/* fittleworth2026.css - the Fittleworth careers portal header / footer / intro / team block in
   fittleworth.com's style.

   Design record + the numbered options Nick chose from (header 1, footer 3, team 5, intro 6):
   admin/zbin/dev-only/fittleworth_careers_header_footer_mockup.cfm

   Tokens lifted from fittleworth.com's core.css / images-colours.css on 2026-09-11: navy #1e3d8e,
   blue #2e59a6, grey #58585b, lavender #a29cbd / #c8c9e4, green #6abb9d, panel grey #e9eef6,
   Helvetica/Arial throughout (they name an Adobe serif for the hero strapline but never load it).
   Every selector is prefixed fw_ so nothing here can reach into the .arj-custom job blocks. */

:root {
	--fw_navy: #1e3d8e;
	--fw_blue: #2e59a6;
	--fw_blue_hover: #6a8fd0;
	--fw_grey: #58585b;
	--fw_text: #585858;
	--fw_lavender: #a29cbd;
	--fw_lavender_light: #c8c9e4;
	--fw_green: #6abb9d;
	--fw_panel: #e9eef6;
	--fw_font_sans: Helvetica, Arial, sans-serif;
	--fw_font_serif: Georgia, "Times New Roman", serif;
}

/* the page body font the copied stylesheets used to set - the job blocks inherit it */

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--fw_text);
	font-family: var(--fw_font_sans);
}

.fw_header,
.fw_footer,
.fw_intro,
.fw_team {
	font-family: var(--fw_font_sans);
	color: var(--fw_text);
	-webkit-font-smoothing: antialiased;
}

.fw_header a,
.fw_footer a {
	text-decoration: none;
}

.fw_container {
	width: 100%;
	max-width: 1150px;
	margin: 0 auto;
	padding: 10px;
	position: relative;
	box-sizing: border-box;
}

/* top bar - white, logo left, the two helpline numbers right in navy */

.fw_top {
	background: #fff;
}

.fw_top .fw_container {
	display: flex;
	align-items: center;
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}

.fw_logo img {
	display: block;
	max-width: 300px;
	height: auto;
}

.fw_contact {
	margin-left: auto;
	text-align: right;
	display: flex;
	flex-direction: column;
	gap: .25rem;
}

.fw_contact a {
	color: var(--fw_navy);
	font-size: 1.35rem;
	line-height: 1.2;
}

.fw_contact a:hover {
	color: var(--fw_lavender);
}

/* nav bar - navy, equal-width white links, lavender on hover, green Vacancies button */

.fw_nav {
	background: var(--fw_navy);
}

.fw_nav .fw_container {
	padding-top: 0;
	padding-bottom: 0;
}

.fw_nav_list {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fw_nav_list li {
	flex: 0 0 auto;
	margin-left: 1px;
}

.fw_nav_list li:first-child {
	margin-left: 0;
}

/* main links left, account actions (sign in + Vacancies) pushed right to fill the bar - matches fittleworth.com's left-aligned nav */
.fw_nav_list li:nth-last-child(2) {
	margin-left: auto;
}

.fw_nav_list a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: .7rem 1.1rem;
	color: #fff;
	font-size: 1rem;
	text-align: center;
	transition: background-color .15s, color .15s;
}

.fw_nav_list a:hover {
	background: var(--fw_lavender_light);
	color: var(--fw_grey);
}

.fw_nav_list a.fw_nav_cta {
	background: var(--fw_green);
	font-weight: 700;
}

.fw_nav_list a.fw_nav_cta:hover {
	background: #fff;
	color: var(--fw_navy);
}

/* mobile hamburger toggle - hidden on desktop, shown in the phone media query */
.fw_nav_toggle {
	display: none;
}

/* hero - the fittleworth.com photo band with the white strapline box (careers page only) */

.fw_hero {
	position: relative;
	min-height: 340px;
	display: flex;
	align-items: center;
	background: var(--fw_panel) url(/includes/fittleworth-medical/2026/hero_careers.jpg) center / cover no-repeat;
}

.fw_hero_box {
	background: hsla(0,0%,100%,.85);
	padding: 1.25rem 1.75rem;
	max-width: 520px;
}

.fw_hero_box h1 {
	font-family: var(--fw_font_sans);
	font-weight: 300;
	font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.6rem);
	color: var(--fw_navy);
	margin: 0 0 .5rem;
	line-height: 1.15;
}

.fw_hero_box p {
	margin: 0;
	font-size: 1.1rem;
	color: var(--fw_grey);
}

/* green band - the same green strip fittleworth.com runs under its hero */

.fw_band {
	background: var(--fw_green);
	color: #fff;
	text-align: center;
}

.fw_band p {
	margin: 0;
	padding: .6rem 0;
	font-size: 1.05rem;
}

.fw_band a {
	color: #fff;
	text-decoration: underline;
}

/* type - fittleworth.com section headings: light-weight blue, no underline */

.fw_h2 {
	font-family: var(--fw_font_sans);
	font-weight: 300;
	font-size: 1.67rem;
	line-height: 1.25;
	color: var(--fw_blue);
	margin: 0 0 1rem;
	text-transform: none;
	letter-spacing: 0;
}

/* intro - Welcome / Mission / Vision / Immutable Principles */

.fw_intro {
	padding: 2.5rem 0 1rem;
}

.fw_intro p {
	font-size: 1.05rem;
	line-height: 1.6;
}

.fw_intro_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin: 1.5rem 0;
}

.fw_intro_card {
	background: var(--fw_panel);
	border-top: 4px solid var(--fw_navy);
	padding: 1.25rem 1.5rem;
}

.fw_intro_card h3 {
	font-family: var(--fw_font_sans);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--fw_navy);
	margin: 0 0 .5rem;
	text-transform: none;
}

.fw_intro_card p {
	font-family: var(--fw_font_serif);
	font-style: italic;
	font-size: 1.15rem;
	margin: 0;
	color: var(--fw_grey);
}

.fw_principles {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
}

.fw_principles li {
	border-left: 4px solid var(--fw_lavender);
	padding: .15rem 0 .15rem 1.4rem;
	margin-bottom: 1.9rem;
}

.fw_principles li:last-child {
	margin-bottom: 0;
}

.fw_principles strong {
	display: block;
	color: var(--fw_navy);
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: .5rem;
}

.fw_principles p {
	font-size: 1.18rem;
	line-height: 1.6;
	margin: 0;
}

/* hear from the team - two staff quotes + the Best Workplaces badges */

.fw_team {
	background: var(--fw_panel);
	padding: 2.5rem 0;
	margin-top: 2rem;
}

.fw_team_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.fw_quote {
	background: #fff;
	padding: 1.5rem 1.75rem;
	border-radius: 6px;
	margin: 0;
	position: relative;
	display: flex;
	flex-direction: column;
}

.fw_quote::before {
	content: "\201C";
	font-family: var(--fw_font_serif);
	font-size: 4rem;
	line-height: 1;
	color: var(--fw_lavender);
	position: absolute;
	top: .5rem;
	left: 1rem;
}

.fw_quote p {
	font-family: var(--fw_font_serif);
	font-style: italic;
	font-size: 1.15rem;
	line-height: 1.6;
	margin: 0 0 1rem;
	padding-left: 2rem;
}

.fw_quote footer {
	padding-left: 2rem;
	font-weight: 700;
	color: var(--fw_navy);
	margin-top: auto;
}

.fw_badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 1.5rem;
	margin: 2rem 0 0;
	padding: 0;
	list-style: none;
}

.fw_badges img {
	height: 110px;
	width: auto;
	background: #fff;
	border-radius: 6px;
	padding: .35rem;
}

/* footer - the navy four-column grid, the badge row, the small print */

.fw_footer {
	margin-top: 2.5rem;
}

.fw_footer_main {
	background: var(--fw_navy);
	color: #fff;
}

.fw_footer_main .fw_container {
	display: grid;
	grid-template-columns: 1.1fr 1.4fr .8fr 1fr;
	gap: 1.5rem;
	padding-top: 2rem;
	padding-bottom: 2rem;
}

.fw_footer_main h2 {
	font-family: var(--fw_font_sans);
	font-size: 1.15rem;
	font-weight: 700;
	color: #fff;
	border-bottom: 1px solid hsla(0,0%,100%,.4);
	padding-bottom: .4rem;
	margin: 0 0 .75rem;
	text-transform: none;
	letter-spacing: 0;
}

.fw_footer_main ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fw_footer_main li {
	margin-bottom: .45rem;
	font-size: 1rem;
}

.fw_footer_main a {
	color: #fff;
}

.fw_footer_main a:hover {
	color: var(--fw_lavender_light);
}

.fw_social {
	display: flex;
	gap: .6rem;
	margin-top: .75rem;
}

.fw_social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid hsla(0,0%,100%,.6);
	font-size: 1.15rem;
}

.fw_social a:hover {
	background: #fff;
	color: var(--fw_navy);
}

.fw_footer_logo img {
	display: block;
	max-width: 231px;
	height: auto;
	margin-left: auto;
}

.fw_footer_badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem 1.25rem;
	padding: 1.5rem 10px 0;
	margin: 0;
	list-style: none;
}

.fw_footer_badges img {
	height: 100px;
	width: auto;
}

.fw_small_print {
	text-align: center;
	font-size: .9rem;
	color: var(--fw_text);
	padding: 1.25rem 10px 1.5rem;
	margin: 0;
}

/* phones */

@media (max-width: 767px) {

	.fw_top .fw_container {
		flex-direction: column;
		gap: .75rem;
		text-align: center;
	}

	.fw_logo img {
		max-width: 200px;
	}

	.fw_contact {
		margin-left: 0;
		text-align: center;
	}

	.fw_contact a {
		font-size: 1.05rem;
	}

	.fw_nav_toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		background: none;
		border: none;
		color: #fff;
		font-family: var(--fw_font_sans);
		font-size: 1.1rem;
		padding: .8rem 0;
		cursor: pointer;
	}

	.fw_nav_list {
		display: none;
		flex-direction: column;
		width: 100%;
	}

	.fw_nav_list.fw_nav_open {
		display: flex;
	}

	.fw_nav_list li {
		flex: 1 1 auto;
		margin: 0;
		border-top: 1px solid hsla(0,0%,100%,.15);
		box-sizing: border-box;
	}

	.fw_nav_list li:nth-last-child(2) {
		margin-left: 0;
	}

	.fw_nav_list a {
		justify-content: flex-start;
	}

	.fw_hero {
		min-height: 220px;
	}

	.fw_hero_box {
		margin: 1rem;
	}

	.fw_intro_grid,
	.fw_team_grid,
	.fw_footer_main .fw_container {
		grid-template-columns: 1fr;
	}

	.fw_footer_logo img {
		margin-left: 0;
	}

}
