/* CSS Safety Site Builder — frontend styles
   Mobile-first, scoped under .css-safety so the theme stays minimal.
   Pixel-matched to Figma file CPhgzqJwZkD53XF6uI24mH */

/* DESIGN TOKENS
* SECTION STYLES */
.css-safety {
	--c-black:        #000;
	--c-white:        #fff;
	--c-dark:         #242128;
	--c-grey-light:   #f5f5f5;
	--c-grey-mid:     #d9d9d9;
	--c-grey-border:  #c5c5c5;
	--c-grey-text:    #3f3f3f;
	--fs-display:     clamp(32px, 4vw, 50px);
	--fs-h2:          clamp(32px, 4vw, 45px);
	--fs-h3:          clamp(24px, 4vw, 40px);
	--fs-h4:          clamp(18px, 4vw, 22px);
	--fs-h5:          18px;
	--fs-body:        16px;
	--fs-small:       15px;
	--fs-eyebrow:     14px;
	--fs-meta:        13px;
	--radius-pill:    100px;
	--radius-button:  5px;
	--radius-image:   20px;
	--radius-card:    30px;
	--container-max:  1728px;
	--container-padding: 20px;
	font-family: var(--font-body, 'Inter', system-ui, sans-serif);
	color: var(--c-body, var(--c-grey-text));
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-safety {
		--fs-display: clamp(32px, 4vw, 50px);
		--fs-h2: clamp(32px, 4vw, 45px);
		--container-padding: 40px;
	}
}

/* RESPONSIVE
* BREAKPOINT: 1200PX */
@media (min-width: 1200px) {
	.css-safety {
		--fs-display: clamp(32px, 4vw, 50px);
		--fs-h2: clamp(32px, 4vw, 45px);
		--fs-h3: clamp(24px, 4vw, 40px);
		--fs-h4: clamp(18px, 4vw, 22px);
		--fs-h5:             24px;
		--container-padding: 100px;
	}
}

.css-safety * {
	box-sizing: border-box;
}

.css-safety img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* GLOBAL TYPOGRAPHY
* LOW SPECIFICITY HEADING BASE */
.css-safety :where(h1,
h2,
h3,
h4,
h5,
h6) {
	font-family: var(--font-heading, 'Instrument Sans', system-ui, sans-serif);
	color: var(--c-heading, var(--c-dark));
	line-height: 1.1;
	margin: 0 0 16px;
	font-weight: 600;
}

.css-safety :where(h1) {
	font-size: clamp(32px, 4vw, 50px);
}

/* GLOBAL TYPOGRAPHY
* H1 — EVERY PAGE EXCEPT THE HOMEPAGE
*
* One size for every inner-page H1 — page headers, course / resource /
* consultancy singles, checkout and the booking confirmation — so the site has a
* single H1 voice away from the homepage. The homepage hero keeps the larger
* display size set above.
*
* The class is doubled to clear the per-section H1 sizes further down this file
* (.css-page-header h1, .css-resource-single__hero h1, .css-cons-single-hero__content h1,
* .css-about-hero__heading, .css-checkout__title, .css-confirmation__title) without
* reaching for !important. The exclusion sits inside :where() so it costs no
* specificity of its own — add a new h1 anywhere and it inherits this size. */
.css-safety.css-safety h1:where(:not(.css-home-hero__title)) {
	font-size: clamp(35px, 4.2vw, 45px);
}

.css-safety :where(h2) {
	font-size: clamp(32px, 4vw, 45px);
}

.css-safety :where(h3) {
	font-size: clamp(24px, 4vw, 40px);
}

.css-safety :where(h4) {
	font-size: clamp(18px, 4vw, 22px);
}

.css-safety :where(h5) {
	font-size: var(--fs-h5);
}

.css-safety p {
	margin: 0 0 14px;
}

.css-safety a:not(.css-btn) {
	color: inherit;
}

.css-safety h1 span,
.css-safety h2 span {
	color: var(--c-primary);
}

.css-container {
	width: 100%;
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.css-section {
	padding: 60px 0;
	position: relative;
}

/* RESPONSIVE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-section {
		padding: 90px 0;
	}
}

.css-section__heading {
	margin-bottom: 40px;
}

.css-section__heading--with-cta {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

/* SECTION HEADING
* SPLIT HEADING LAYOUT */
.css-section__heading--split {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-bottom: 40px;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-section__heading--split {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
		align-items: end;
	}
}

.css-section__intro {
	color: var(--c-grey-text, #6b6875);
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-section__intro {
		padding-bottom: 4px;
	}

/* optical align with heading baseline */
}

/* GLOBAL COMPONENTS
* EYEBROW LABEL */
.css-eyebrow {
	display: inline-block;
	font-size: var(--fs-eyebrow, 14px);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	color: var(--c-primary);
	margin-bottom: 10px;
	opacity: 0.7;
}

/* BUTTONS
* SECTION STYLES */
.css-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 26px;
	border-radius: var(--radius-button, 5px);
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.2;
	transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
	border: 1px solid transparent;
	cursor: pointer;
	white-space: nowrap;
}

.css-btn--primary {
	background: var(--c-primary, #edcb20);
	color: var(--c-dark, #242128);
	box-shadow: inset 0 -2px 2px rgba(0,0,0,.06);
}

.css-btn--primary:hover {
	transform: translateY(-1px);
	filter: brightness(.95);
}

.css-btn--secondary {
	background: var(--c-dark, #242128);
	color: var(--c-white);
}

.css-btn--secondary:hover {
	filter: brightness(1.1);
}

.css-btn--outline {
	background: var(--c-white);
	color: var(--c-dark, #242128);
	border-color: var(--c-grey-mid, #d9d9d9);
	box-shadow: 0 2px 2px rgba(0,0,0,.06), inset 0 -2px 2px rgba(0,0,0,.04);
}

.css-btn--outline:hover {
	border-color: var(--c-dark, #242128);
}

.css-btn--link {
	background: transparent;
	color: var(--c-primary);
	padding: 6px 0;
	border-radius: 0;
}

.css-cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
	margin-top: 24px;
}

/* HEADER
* SECTION STYLES */
.css-header {
	background: var(--c-dark, #242128);
	border-bottom: 3px solid var(--c-primary, #edcb20);
	color: var(--c-white);
}

.css-header.is-sticky {
	position: sticky;
	top: 0;
	z-index: 100;
	transition: box-shadow .2s ease;
}

.css-header.is-sticky.is-scrolled {
	box-shadow: 0 4px 20px rgba(0,0,0,.3);
}

.css-header__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 80px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.css-header__logo img {
	max-height: 52px;
	width: auto;
}

.css-header__logo-text {
	font-weight: 700;
	font-size: 18px;
	color: var(--c-white);
}

.css-header__nav {
	display: none;
	flex: 1;
	justify-content: center;
}

/* RESPONSIVE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-header__nav {
		display: flex;
	}
}

.css-header__menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 28px;
}

.css-header__menu a {
	color: var(--c-white);
	text-decoration: none;
	font-weight: 500;
	font-size: 16px;
	opacity: .9;
	transition: opacity .15s ease, color .15s ease;
}

.css-header__menu a:hover {
	opacity: 1;
	color: var(--c-primary, #edcb20);
}

.css-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: auto;
}

.css-header__phone {
	display: none;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--c-white);
}

.css-header__phone-icon {
	display: flex;
	align-items: center;
	opacity: .8;
}

.css-header__phone-text small {
	display: block;
	font-size: 13px;
	color: rgba(255,255,255,.75);
	line-height: 1.2;
}

.css-header__phone-text strong {
	display: block;
	font-size: 19px;
	font-weight: 600;
	color: var(--c-primary, #edcb20);
	line-height: 1.2;
}

/* A phone number is never allowed to break across lines — it was wrapping
* onto three lines and doubling the header's height between 992px and 1280px. */
.css-header__phone-text small,
.css-header__phone-text strong {
	white-space: nowrap;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-header__phone {
		display: inline-flex;
	}
}

/* HEADER
* BREAKPOINT: 992PX – 1279PX
*
* The full desktop header (logo, five-item nav, account, CTA, phone icon and
* number with its label) needs ~1070px; the container is 912–1080px across
* this band, so there is no room for the phone text. It becomes icon-only:
* the text is hidden visually but kept for assistive tech, the link still
* dials, and the nav gap tightens slightly. From 1280px the full layout is
* untouched. */
@media (min-width: 992px) and (max-width: 1279px) {
	.css-header__phone-text {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		white-space: nowrap;
	}

	.css-header__menu {
		gap: 20px;
	}
}

.css-header__burger {
	background: transparent;
	border: 0;
	padding: 8px;
	cursor: pointer;
	display: inline-flex;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
}

.css-header__burger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--c-white);
	border-radius: 2px;
	transition: transform .2s ease, opacity .2s ease;
}

/* RESPONSIVE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-header__burger {
		display: none;
	}
}

.css-header__mobile {
	display: none;
	padding: 16px 20px 24px;
	background: var(--c-dark, #242128);
	border-top: 1px solid rgba(255,255,255,.1);
}

.css-header__mobile-menu {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
}

.css-header__mobile-menu li + li {
	border-top: 1px solid rgba(255,255,255,.1);
}

.css-header__mobile-menu a {
	display: block;
	padding: 12px 0;
	text-decoration: none;
	color: var(--c-white);
	font-size: 16px;
}

body.css-mobile-open .css-header__mobile {
	display: block;
}

/* HEADER
* MOBILE MENU CALL-TO-ACTIONS
* Stacked one per line and full width, separated from the nav list by a rule so
* the panel reads as "navigate, then act". */
.css-header__mobile-ctas {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	margin-top: 4px;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.css-header__mobile-ctas > * {
	width: 100%;
	margin: 0;
}

.css-header__mobile-ctas .css-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.css-header__mobile-phone {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 0;
	text-decoration: none;
	color: var(--c-primary, #edcb20);
	font-weight: 600;
	font-size: 16px;
}

/* FOOTER
* SECTION STYLES */
.css-footer {
	background: #242128;
	color: var(--c-white);
	position: relative;
	overflow: hidden;
}

/* FOOTER
* BACKGROUND WATERMARK
* The CSS Safety mark, sized off the viewport so it stays a texture rather than
* a graphic, and bled off the right edge so it reads as part of the panel. Same
* asset and opacity band as the hero and page-header watermarks. */
.css-footer::before {
	content: '';
	position: absolute;
	right: clamp(-200px, -9vw, -70px);
	bottom: clamp(-170px, -8vw, -60px);
	width: clamp(340px, 40vw, 660px);
	aspect-ratio: 402 / 356;
	background-image: url(/wp-content/uploads/2026/06/css-icon-white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: .05;
	pointer-events: none;
	z-index: 0;
}

/* FOOTER
* LAYOUT — the brand takes a full-width row of its own; the four content
* columns share the row beneath at equal widths. */
.css-footer__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 40px;
	padding: 64px var(--container-padding) 48px;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-footer__inner {
		gap: 48px;
	}
}

.css-footer__brand {
	display: flex;
	align-items: center;
}

.css-footer__logo {
	max-height: 64px;
	width: auto;
	margin: 0;
}

.css-footer__logo-text {
	font-weight: 700;
	font-size: 22px;
	color: var(--c-white);
	display: block;
	margin: 0;
}

.css-footer__contact {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.css-footer__contact a {
	color: rgba(255,255,255,.65);
	text-decoration: none;
	font-size: 15px;
	line-height: 1.8;
}

.css-footer__contact a:hover,
.css-footer__contact a:focus-visible {
	color: var(--c-primary, #edcb20);
}

.css-footer__contact address {
	font-style: normal;
	font-size: 15px;
	color: rgba(255,255,255,.65);
	line-height: 1.8;
}

.css-footer__socials {
	margin-top: 20px;
	display: flex;
	gap: 8px;
}

.css-footer__socials a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255,255,255,.1);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,.85);
	text-decoration: none;
	transition: background .15s ease, color .15s ease;
}

.css-footer__socials a svg {
	display: block;
}

.css-footer__socials a:hover,
.css-footer__socials a:focus-visible {
	color: var(--c-primary, #edcb20);
}

/* FOOTER
* CONTENT COLUMNS — one column on phones, two on tablets, four equal columns
* across the full width from 992px. */
.css-footer__columns {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 36px 32px;
}

/* RESPONSIVE
* BREAKPOINT: 600PX */
@media (min-width: 600px) {
	.css-footer__columns {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* RESPONSIVE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-footer__columns {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 40px;
	}
}

.css-footer__col h4 {
	color: var(--c-primary, #edcb20);
	margin: 0 0 14px;
	font-size: clamp(16px, 1.5vw, 17px);
	font-weight: 600;
	text-transform: none;
	letter-spacing: -.1px;
	font-family: var(--font-heading, 'Instrument Sans', system-ui, sans-serif);
}

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

.css-footer__col li {
	margin-bottom: 10px;
}

.css-footer__col a {
	color: rgba(255,255,255,.6);
	text-decoration: none;
	font-size: 15px;
	transition: color .15s ease;
}

.css-footer__col a:hover,
.css-footer__col a:focus-visible {
	color: var(--c-primary, #edcb20);
}

.css-footer__bottom {
	position: relative;
	z-index: 1;
	border-top: 1px solid rgba(255,255,255,.1);
	padding: 20px 0;
}

.css-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 15px;
	color: rgba(255,255,255,.5);
}

.css-footer__legal {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.css-footer__legal a {
	color: rgba(255,255,255,.5);
	text-decoration: none;
	transition: color .15s ease;
}

.css-footer__legal a:hover,
.css-footer__legal a:focus-visible {
	color: var(--c-primary, #edcb20);
}

.css-footer__bottom-right {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
}

/* FOOTER
* NEWSLETTER COLUMN */
.css-footer__newsletter p {
	font-size: 14px;
	color: rgba(255,255,255,.6);
	line-height: 1.55;
	margin: 0 0 16px;
}

.css-footer__nl-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.css-footer__nl-form input[type="email"] {
	width: 100%;
	padding: 12px 16px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,.15);
	background: rgba(255,255,255,.08);
	color: var(--c-white, #fff);
	font-size: 15px;
	outline: none;
	transition: border-color .15s ease;
}

.css-footer__nl-form input[type="email"]::placeholder {
	color: rgba(255,255,255,.4);
}

.css-footer__nl-form input[type="email"]:focus {
	border-color: var(--c-primary, #edcb20);
}

.css-footer__nl-form button {
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	border: 0;
	background: var(--c-primary, #edcb20);
	color: var(--c-dark, #242128);
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	transition: opacity .15s ease;
}

.css-footer__nl-form button:hover {
	opacity: .85;
}

/* HERO
* SECTION STYLES */
.css-home-hero {
	position: relative;
	padding: 0;
	overflow: visible;
	background: var(--c-dark, #242128);
}

.css-home-hero__slides {
	position: relative;
	min-height: 560px;
	overflow: hidden;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-home-hero__slides {
		min-height: 700px;
	}
}

/* RESPONSIVE
* BREAKPOINT: 1200PX */
@media (min-width: 1200px) {
	.css-home-hero__slides {
		min-height: 820px;
	}
}

.css-home-hero__slide {
	position: absolute;
	inset: 0;
	background: var(--c-dark, #242128) no-repeat center / cover;
	opacity: 0;
	transition: opacity .8s ease;
	pointer-events: none;
	display: flex;
	align-items: center;
}

.css-home-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}

.css-home-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
	90deg,
	rgba(36, 33, 40, .94) 0%,
	rgba(36, 33, 40, .86) 25%,
	rgba(36, 33, 40, .52) 52%,
	rgba(36, 33, 40, .16) 76%,
	rgba(36, 33, 40, 0) 100%
	);
	z-index: 1;
}

.css-home-hero__icon-overlay {
	position: absolute;
	top: -100px;
	bottom: -100px;
	left: -300px;
	width: min(165vw, 1050px);
	background-image: url(/wp-content/uploads/2026/06/css-icon-white.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	opacity: 0.08;
	z-index: 2;
	pointer-events: none;
}

.css-home-hero__inner {
	position: relative;
	z-index: 3;
	width: 100%;
	padding-top: 120px;
	padding-bottom: 160px;
}

.css-home-hero.has-featured-course .css-home-hero__inner {
	padding-bottom: 220px;
}

.css-home-hero__copy {
	max-width: 650px;
	color: var(--c-white);
}

.css-home-hero__copy .css-eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border: 1px solid var(--c-primary, #edcb20);
	border-radius: var(--radius-pill, 100px);
	color: var(--c-white, #fff);
	background: transparent;
	font-size: 16px;
	font-weight: 500;
	text-transform: none;
	letter-spacing: 0;
	opacity: 1;
	margin-bottom: 24px;
}

.css-home-hero__title {
	color: var(--c-white);
	margin-bottom: 22px;
	font-weight: 600;
	line-height: 1.05;
	max-width: 620px;
}

.css-home-hero__desc {
	color: rgba(255, 255, 255, .88);
	font-size: 17px;
	line-height: 1.45;
	max-width: 560px;
	margin-bottom: 30px;
}

.css-home-hero__dots {
	position: absolute;
	right: 30px;
	top: auto;
	bottom: 30px;
	transform: translateY(-50%);
	z-index: 8;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 26px;
}

.css-home-hero__dots button {
	appearance: none;
	width: auto;
	height: auto;
	min-width: 18px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--c-white, #fff);
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	opacity: .65;
	backdrop-filter: none;
	transition: opacity .2s ease, transform .2s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.css-home-hero__dots button.is-active {
	background: transparent;
	border-color: transparent;
	color: var(--c-white, #fff);
	opacity: 1;
}

.css-home-hero__dots button:hover {
	opacity: 1;
	transform: translateX(-2px);
}

.css-home-hero__featured-wrap {
	position: absolute;
	left: 50%;
	right: auto;
	bottom: 0;
	transform: translateX(-50%);
	z-index: 7;
	display: flex;
	justify-content: flex-end;
	pointer-events: none;
}

/* FEATURED COURSE TILE
* The "Featured Course" label is a pill over the image rather than a heading
* row, so the tile only needs a 10px frame around the photograph; the body
* copy keeps a little more inset so it does not sit hard against the edge. */
.css-home-featured-card {
	width: min(100%, 560px);
	background: var(--c-dark, #242128);
	color: var(--c-white, #fff);
	border-radius: 30px 30px 0 0;
	padding: 10px 10px 24px;
	box-shadow: none;
	pointer-events: auto;
}

.css-home-featured-card__media {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 7.2;
	overflow: hidden;
	margin-bottom: 20px;
	border-radius: var(--radius-image, 20px);
	background: rgba(255, 255, 255, .08);
	text-decoration: none;
}

.css-home-featured-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

.css-home-featured-card__media:hover img {
	transform: scale(1.03);
}

/* FEATURED COURSE TILE
* LABEL PILL — top-left of the image */
.css-home-featured-card__pill {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 6px 14px;
	border-radius: var(--radius-pill, 100px);
	background: var(--c-primary, #edcb20);
	color: var(--c-dark, #242128);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: .1px;
	white-space: nowrap;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

/* No image: the pill still labels the tile, inline above the title. */
.css-home-featured-card__pill--static {
	position: static;
	margin: 6px 0 14px 12px;
	box-shadow: none;
}

.css-home-featured-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	padding: 0 12px;
}

.css-home-featured-card__title {
	color: var(--c-primary, #edcb20);
	font-size: clamp(23px, 2.2vw, 30px);
	line-height: 1.05;
	margin: 0;
}

.css-home-featured-card__desc {
	display: none;
}

/* FEATURED COURSE TILE
* CTA — always visible; the hover state belongs to the button itself. */
.css-home-featured-card__cta {
	margin-top: 18px;
}

/* FEATURED COURSE
* SECTION STYLES */
.css-home-featured {
	display: none;
}

.css-home-featured__inner {
	display: flex;
	justify-content: center;
}

/* RESPONSIVE
* BREAKPOINT: 1199PX */
@media (max-width: 1199px) {
	.css-home-hero__slides {
		min-height: 680px;
	}

.css-home-hero__copy {
		max-width: 560px;
	}

.css-home-hero__featured-wrap {
		transform: translateX(-50%);
	}

.css-home-featured-card {
		width: min(100%, 500px);
	}
}

/* RESPONSIVE
* BREAKPOINT: 991PX */
@media (max-width: 991px) {
	.css-home-hero {
		overflow: hidden;
	}

.css-home-hero__slides {
		min-height: 620px;
	}

.css-home-hero__inner,
.css-home-hero.has-featured-course .css-home-hero__inner {
		padding-top: 110px;
		padding-bottom: 100px;
	}

.css-home-hero__copy {
		max-width: 620px;
	}

.css-home-hero__overlay {
		background: linear-gradient(
		90deg,
		rgba(36, 33, 40, .96) 0%,
		rgba(36, 33, 40, .82) 45%,
		rgba(36, 33, 40, .34) 100%
		);
	}

.css-home-hero__icon-overlay {
		left: -18%;
		width: 78vw;
	}

.css-home-hero__featured-wrap {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		transform: none;
		z-index: 4;
		display: block;
		padding-top: 0;
		padding-bottom: 28px;
		pointer-events: auto;
	}

.css-home-featured-card {
		width: 100%;
		max-width: none;
		border-radius: 24px;
		padding: 10px 10px 22px;
		box-shadow: none;
	}

.css-home-hero__dots {
		top: 300px;
		right: 22px;
		bottom: auto;
		transform: none;
		gap: 18px;
	}

.css-home-hero__dots button {
		font-size: 15px;
		opacity: .45;
	}

.css-home-hero__dots button.is-active {
		opacity: .85;
	}
}

/* RESPONSIVE
* BREAKPOINT: 767PX */
@media (max-width: 767px) {
	.css-home-hero__slides {
		min-height: 560px;
	}

.css-home-hero__inner,
.css-home-hero.has-featured-course .css-home-hero__inner {
		padding-top: 86px;
		padding-bottom: 86px;
	}

.css-home-hero__copy .css-eyebrow {
		min-height: 42px;
		padding: 10px 18px;
		font-size: 14px;
		margin-bottom: 20px;
	}

.css-home-hero__desc {
		font-size: 15px;
	}

.css-home-hero__overlay {
		background: linear-gradient(
		90deg,
		rgba(36, 33, 40, .97) 0%,
		rgba(36, 33, 40, .82) 62%,
		rgba(36, 33, 40, .42) 100%
		);
	}

.css-home-hero__icon-overlay {
		left: -42%;
		width: 120vw;
		opacity: .08;
	}

.css-home-hero__dots {
		right: 18px;
		bottom: auto;
		top: 50%;
		transform: translateY(-50%);
		gap: 16px;
	}

.css-home-hero__dots button {
		font-size: 13px;
	}

.css-home-featured-card {
		border-radius: 20px;
		padding: 10px 10px 20px;
	}

.css-home-featured-card__media {
		aspect-ratio: 16 / 9;
		border-radius: 14px;
	}

.css-home-featured-card__title {
		font-size: 28px;
	}

.css-home-featured-card__cta {
		width: 100%;
		margin-top: 16px;
	}
}

/* CAROUSEL
* SECTION STYLES */
.css-carousel {
	overflow: hidden;
}

.css-carousel__track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 4px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.css-carousel__track::-webkit-scrollbar {
	display: none;
}

.css-carousel__item {
	flex: 0 0 calc(100% - 8px);
	scroll-snap-align: start;
}

/* RESPONSIVE
* BREAKPOINT: 600PX */
@media (min-width: 600px) {
	.css-carousel__item {
		flex-basis: calc(50% - 10px);
	}
}

/* RESPONSIVE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-carousel__item {
		flex-basis: calc(33.333% - 14px);
	}
}

/* RESPONSIVE
* BREAKPOINT: 1200PX */
@media (min-width: 1200px) {
	.css-carousel__item {
		flex-basis: calc(25% - 15px);
	}
}

/* COURSE CAROUSEL
* THREE SLIDE DESKTOP LAYOUT */
.css-home-courses .css-carousel__item {
	flex: 0 0 calc(100% - 8px);
}

/* COURSE CAROUSEL
* BREAKPOINT: 600PX */
@media (min-width: 600px) {
	.css-home-courses .css-carousel__item {
		flex-basis: calc(50% - 10px);
	}
}

/* COURSE CAROUSEL
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-home-courses .css-carousel__item {
		flex-basis: calc(33.333% - 14px);
	}
}

/* COURSE CAROUSEL
* BREAKPOINT: 1200PX */
@media (min-width: 1200px) {
	.css-home-courses .css-carousel__item {
		flex-basis: calc(33.333% - 14px);
	}
}

.css-carousel-arrows {
	display: flex;
	gap: 16px;
	align-items: center;
}

.css-carousel-arrows button {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 0;
	background: var(--c-grey-light, #f5f5f5);
	color: var(--c-dark, #242128);
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .15s ease, color .15s ease, transform .15s ease;
}

.css-carousel-arrows button:hover {
	background: var(--c-dark, #242128);
	color: var(--c-primary, #edcb20);
	transform: translateY(-1px);
}

.css-carousel-arrows button i {
	display: block;
	line-height: 1;
}

/* CAROUSEL ARROWS
* BREAKPOINT: 767PX */
@media (max-width: 767px) {
	.css-carousel-arrows button {
		width: 52px;
		height: 52px;
		font-size: 18px;
	}
}

/* CAROUSEL ARROWS
* STACKED LAYOUT — BREAKPOINT: 767PX
*
* Desktop keeps the arrows in the section header beside the heading. Once a
* carousel section stacks (mobile), the reading order becomes:
* eyebrow → heading → carousel → arrows → section CTA. The same two buttons
* are moved, not duplicated: the header wrapper is dissolved with
* display: contents so its heading and arrows become direct children of the
* container, which turns into a flex column and orders them. Applies to
* every section using the shared header-with-arrows pattern (home courses,
* home consultancy, consultancy "who we work with"). */
@media (max-width: 767px) {
	.css-section:has(> .css-container > .css-section__heading--with-cta > .css-carousel-arrows) > .css-container {
		display: flex;
		flex-direction: column;
	}

	.css-section__heading--with-cta:has(> .css-carousel-arrows) {
		display: contents;
	}

	/* The dissolved wrapper no longer carries the heading's bottom margin. */
	.css-section__heading--with-cta:has(> .css-carousel-arrows) > :first-child {
		margin-bottom: 32px;
	}

	.css-section:has(> .css-container > .css-section__heading--with-cta > .css-carousel-arrows) > .css-container > .css-carousel {
		order: 1;
	}

	.css-section__heading--with-cta > .css-carousel-arrows {
		order: 2;
		justify-content: center;
		margin-top: 24px;
	}

	.css-section:has(> .css-container > .css-section__heading--with-cta > .css-carousel-arrows) > .css-container > .css-cta-row {
		order: 3;
	}
}

/* COURSE CARD
* SECTION STYLES */
.css-course-card {
	background: var(--c-dark, #242128);
	border: 0;
	border-radius: var(--radius-card, 30px);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 16px;
	text-decoration: none;
	color: var(--c-white, #fff);
	transition: background .2s ease, color .2s ease, transform .2s ease;
}

.css-course-card:hover,
.css-course-card:focus-visible {
	background: var(--c-primary, #edcb20);
	color: var(--c-dark, #242128);
	transform: translateY(-4px);
}

.css-course-card__media {
	position: relative;
	aspect-ratio: 16 / 9.4;
	overflow: hidden;
	display: block;
	border-radius: 18px;
	background: rgba(255,255,255,.08);
	margin-bottom: 24px;
}

.css-course-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
	transition: transform .3s ease;
}

.css-course-card:hover .css-course-card__media img,
.css-course-card:focus-visible .css-course-card__media img {
	transform: scale(1.03);
}

.css-course-card__badge {
	display: none;
}

/* COURSE CARD
* DURATION PILL — bottom-left of the image, fed by the course's Duration
* field. Inverts on hover so it stays legible once the card turns yellow. */
.css-course-card__duration {
	position: absolute;
	left: 12px;
	bottom: 12px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 6px 14px;
	border-radius: var(--radius-pill, 100px);
	background: var(--c-primary, #edcb20);
	color: var(--c-dark, #242128);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
	transition: background .2s ease, color .2s ease;
}

.css-course-card:hover .css-course-card__duration,
.css-course-card:focus-visible .css-course-card__duration {
	background: var(--c-dark, #242128);
	color: var(--c-white, #fff);
}

.css-course-card__body {
	padding: 0 22px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.css-course-card__title {
	display: block;
	font-family: var(--font-heading, 'Instrument Sans', system-ui, sans-serif);
	font-size: clamp(20px, 2vw, 24px);
	font-weight: 600;
	line-height: 1.1;
	color: var(--c-primary, #edcb20);
	transition: color .2s ease;
}

.css-course-card:hover .css-course-card__title,
.css-course-card:focus-visible .css-course-card__title {
	color: var(--c-dark, #242128);
}

.css-course-card__meta {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px 28px;
}

.css-course-card__meta-item {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.css-course-card__meta-item span {
	font-size: 14px;
	color: rgba(255,255,255,.45);
	line-height: 1.25;
	transition: color .2s ease;
}

.css-course-card__meta-item strong {
	color: var(--c-white, #fff);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.2;
	transition: color .2s ease;
}

.css-course-card:hover .css-course-card__meta-item span,
.css-course-card:focus-visible .css-course-card__meta-item span {
	color: rgba(36,33,40,.6);
}

.css-course-card:hover .css-course-card__meta-item strong,
.css-course-card:focus-visible .css-course-card__meta-item strong {
	color: var(--c-dark, #242128);
}

.css-course-card__cta {
	margin-top: auto;
	align-self: flex-start;
	background: var(--c-primary, #edcb20);
	color: var(--c-dark, #242128);
	padding: 16px 44px;
	border-radius: var(--radius-button, 5px);
	font-weight: 500;
	font-size: 16px;
	line-height: 1.2;
	text-decoration: none;
	border: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease, color .2s ease;
}

.css-course-card:hover .css-course-card__cta,
.css-course-card:focus-visible .css-course-card__cta {
	background: var(--c-white, #fff);
	color: var(--c-dark, #242128);
}

/* COURSE CARD
* BREAKPOINT: 767PX */
@media (max-width: 767px) {
	.css-course-card {
		padding: 14px;
	}

	.css-course-card__body {
		padding: 0 10px 14px;
		gap: 18px;
	}

	.css-course-card__meta {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.css-course-card__cta {
		width: 100%;
	}
}

/* CONSULTANCY CAROUSEL
* SECTION STYLES */
.css-carousel--dark .css-cons-card {
	background: var(--c-dark, #242128);
	color: var(--c-white);
	border-radius: var(--radius-card, 30px);
	aspect-ratio: 4 / 5;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	background-size: cover;
	background-position: center;
	text-decoration: none;
	overflow: hidden;
	position: relative;
	transition: transform .25s ease;
}

.css-carousel--dark .css-cons-card:hover {
	transform: translateY(-6px);
}

/* CONSULTANCY CAROUSEL
* GRADIENT OVERLAY */
.css-carousel--dark .css-cons-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top,
	rgba(36,33,40,.88) 0%,
	rgba(0,0,0,0)      55%);
	border-radius: inherit;
	z-index: 1;
}

/* CONSULTANCY CAROUSEL
* CARD TITLE — responsive but capped at 27px at every viewport. */
.css-carousel--dark .css-cons-card h3 {
    color: var(--c-white);
    font-size: clamp(22px, 2vw, 27px);
    font-weight: 600;
    margin: 0;
    max-width: 310px;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    padding: 0 24px 28px;
}

.css-carousel--dark .css-cons-card p {
	display: none;
}

.css-carousel--dark .css-cons-card__arrow {
	display: none;
}

/* TRAINING BLOCK
* SECTION STYLES */
.css-training-block {
	background: var(--c-grey-light, #f5f5f5);
}

/* TRAINING BLOCK
* OUTER SPACING
* The grey wrapper only exists to frame the white card. It carries no
* bottom padding of its own: the section that follows (Reviews on every
* page that uses this block) already brings the standard section padding,
* and both share the same grey — so any padding here simply doubled the gap
* above the Reviews heading. The same applies above the card when the block
* follows the grey accreditations strip. */
.css-training-block.css-section {
	padding: 40px 0 0;
}

.css-accred-strip + .css-training-block.css-section {
	padding-top: 0;
}

/* RESPONSIVE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-training-block.css-section {
		padding: 60px 0 0;
	}

	.css-accred-strip + .css-training-block.css-section {
		padding-top: 0;
	}
}

/* TRAINING BLOCK
* WHITE CARD CONTAINER */
.css-training-block__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: start;
	background: var(--c-white);
	border-radius: 20px;
	padding: 40px 28px;
}

/* TRAINING BLOCK
* MEDIA GRID */
.css-training-block__media {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-height: 560px;
}

.css-training-block__media.is-placeholder {
	display: none;
}

/* TRAINING BLOCK
* MEDIA TILES */
.css-training-block__video-tile,
.css-training-block__image-tile {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: var(--radius-card, 30px);
	background: var(--c-grey-mid, #e0e0e0);
}

.css-training-block__video-tile {
	flex: 0 0 calc(60% - 10px);
}

.css-training-block__image-tile {
	flex: 0 0 calc(40% - 10px);
}

/* TRAINING BLOCK
* TILE IMAGERY
* Out of flow inside the tile, so a tall or square photograph can never push
* the tile — and with it the section — past the height the layout set. Focal
* point sits above centre: these are room-scale frames where the people are in
* the upper half and the lower edge is table or floor. */
.css-training-block__image-tile img,
.css-training-video__cover img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 38%;
	border-radius: 0;
}

/* TRAINING BLOCK
* SHORT TILE FOCAL POINT
* The lower tile is the wide one (40% of the stack) and so crops hardest
* vertically; the focal point lifts to keep faces inside the frame. */
.css-training-block__image-tile img {
	object-position: center 22%;
}

/* TRAINING BLOCK
* VIDEO EMBED */
.css-training-block .css-video-embed {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding-top: 0;
	border-radius: inherit;
	overflow: hidden;
	background: var(--c-dark, #242128);
}

.css-training-block .css-video-embed iframe,
.css-training-video__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* TRAINING BLOCK
* VIDEO COVER */
.css-training-video__cover {
	position: absolute;
	inset: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	padding: 0;
	border: 0;
	border-radius: inherit;
	background: var(--c-dark, #242128);
	cursor: pointer;
	overflow: hidden;
	transition: opacity .2s ease, visibility .2s ease;
}

.css-training-video__cover.is-static {
	cursor: default;
}

.css-training-video.is-playing .css-training-video__cover {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.css-training-video__cover::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(36,33,40,0) 40%, rgba(36,33,40,.42) 100%);
	pointer-events: none;
}

.css-training-video__play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 4;
	width: 82px;
	height: 82px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: var(--c-primary, #edcb20);
	color: var(--c-dark, #242128);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 18px 42px rgba(0,0,0,.28);
	transition: transform .2s ease, filter .2s ease;
}

.css-training-video__play i {
	font-size: 24px;
	line-height: 1;
	margin-left: 4px;
}

.css-training-video__cover:hover .css-training-video__play,
.css-training-video__cover:focus-visible .css-training-video__play {
	transform: translate(-50%, -50%) scale(1.05);
	filter: brightness(.96);
}

.css-training-video__cover:focus-visible {
	outline: 3px solid var(--c-primary, #edcb20);
	outline-offset: -3px;
}

/* VIDEO TILE
* SIZE TRANSITION
* frontend.js sets an inline flex-basis / height once the video's true ratio
* is known, so the tile eases from its designed slot to the video's shape
* instead of letterboxing. Keep the duration in step with RESIZE_MS. */
.css-training-video {
	transition: flex-basis .45s ease, height .45s ease;
}

/* While playing, the tile's size is the inline flex-basis / height set from
* the video's real ratio: it must neither grow back into its designed slot
* (the About-block tile is flex: 1 1 60%) nor be squeezed by its neighbour. */
.css-training-video.is-playing {
	flex-grow: 0;
	flex-shrink: 0;
}

/* The image tile beside a playing video takes up whatever the video releases
* (or yields what it needs), in both stacked media columns. */
.css-training-video.is-playing ~ .css-training-block__image-tile,
.css-training-video.is-playing ~ .css-home-about__image-tile {
	flex: 1 1 auto;
	min-height: 0;
}

/* VIDEO TILE
* PLAYBACK SURFACE
* Sits over the iframe while the video plays. It carries the custom Pause
* control, catches pointer activity to reveal it, and — because Vimeo's own
* chrome is hidden — is the one place the user pauses from. */
.css-training-video__surface {
	position: absolute;
	inset: 0;
	z-index: 3;
	border-radius: inherit;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.css-training-video__surface[hidden] {
	display: none;
}

.css-training-video__pause {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 4;
	width: 72px;
	height: 72px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--c-primary, #edcb20);
	color: var(--c-dark, #242128);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 18px 42px rgba(0,0,0,.28);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -50%) scale(.92);
	transition: opacity .25s ease, visibility .25s ease, transform .25s ease, filter .2s ease;
}

.css-training-video__pause i {
	font-size: 22px;
	line-height: 1;
}

/* Revealed on pointer / touch activity (class from frontend.js) or focus. */
.css-training-video.is-control-visible .css-training-video__pause,
.css-training-video__pause:focus-visible {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.css-training-video__pause:hover {
	filter: brightness(.96);
}

.css-training-video__pause:focus-visible {
	outline: 3px solid var(--c-white, #fff);
	outline-offset: 3px;
}

@media (max-width: 767px) {
	.css-training-video__pause {
		width: 60px;
		height: 60px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.css-training-video,
	.css-training-video__pause {
		transition: none;
	}
}

/* FORM VALIDATION
* Shared branded error treatment for every custom-styled frontend form
* (booking, group enquiry, contact / consultancy enquiry, mailing list, login
* and register). frontend.js switches the forms to novalidate, checks the
* native constraints itself and renders these states, so the browser bubble
* is never the primary UI while the fields keep their native semantics. */
.css-safety {
	--c-error: #b42318;
	--c-error-soft: rgba(180, 35, 24, .12);
}

.css-field-error {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin: 6px 0 0;
	color: var(--c-error, #b42318);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	font-family: var(--font-body, 'Inter', system-ui, sans-serif);
}

.css-field-error i {
	flex: 0 0 auto;
	font-size: 13px;
	line-height: 1.4;
}

.css-field-error:empty {
	display: none;
}

/* Invalid control: brand red border with a soft halo, same radius / spacing
* as the focus ring so the field does not jump. */
.is-invalid input:not([type="checkbox"]):not([type="radio"]),
.is-invalid select,
.is-invalid textarea,
input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
	border-color: var(--c-error, #b42318) !important;
	box-shadow: 0 0 0 3px var(--c-error-soft, rgba(180, 35, 24, .12)) !important;
}

.is-invalid input:focus,
.is-invalid select:focus,
.is-invalid textarea:focus {
	border-color: var(--c-error, #b42318) !important;
	box-shadow: 0 0 0 3px var(--c-error-soft, rgba(180, 35, 24, .12)) !important;
}

/* Floating label follows the state. */
.css-float-field.is-invalid label {
	color: var(--c-error, #b42318);
}

/* Static labels (contact / login forms). */
.css-form-field.is-invalid > label,
.form-row.is-invalid > label {
	color: var(--c-error, #b42318);
}

/* Contact-form card inputs carry their own (!important) focus border at
* higher specificity; restate the invalid border there, focused or not. */
.css-contact-form-card .css-form-field.is-invalid input,
.css-contact-form-card .css-form-field.is-invalid textarea,
.css-contact-form-card .css-form-field.is-invalid input:focus,
.css-contact-form-card .css-form-field.is-invalid textarea:focus {
	border-color: var(--c-error, #b42318) !important;
}

/* Mailing-list field sits on the dark footer. */
.css-footer__nl-form .css-field-error {
	color: #ffb4a8;
	margin-top: -2px;
}

.css-footer__nl-form input[aria-invalid="true"] {
	border-color: #ffb4a8 !important;
	box-shadow: 0 0 0 3px rgba(255, 180, 168, .18) !important;
}

/* WooCommerce login / register rows. */
.form-row .css-field-error {
	margin-top: 8px;
}

/* UTILITY
* Visually hidden, still read by assistive technology. */
.css-sr-only {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-training-block__inner {
		gap: 60px;
		padding: 60px;
	}
}

/* TRAINING BLOCK
* BREAKPOINT: 992PX
*
* Two columns only from 992px. This block's copy column carries a features
* list, so between 768px and 991px the two columns are narrow enough that the
* row runs past 1200px tall — stretching the media to match would crop the
* photography into a tall, thin sliver. Below 992px it stacks instead and the
* tiles fall back to their own ratios, which is the same width at which the
* About block opposite it goes two-column. */
@media (min-width: 992px) {
	.css-training-block__inner {
		grid-template-columns: 1fr 1fr;
	}

	/* Side by side, the media column stretches to whichever is taller — the
	* copy or the 560px floor — so the tiles can never finish above the text
	* beside them. The copy column keeps its own alignment. */
	.css-training-block__media {
		order: -1;
		align-self: stretch;
		height: 100%;
		min-height: 560px;
	}

	.css-training-block__media.is-placeholder {
		display: block;
		min-height: 400px;
		background: var(--c-grey-mid, #e0e0e0);
		border-radius: var(--radius-card, 30px);
	}
}

/* TRAINING BLOCK
* BREAKPOINT: 991PX
* Stacked: the media stops stretching and each tile keeps a controlled ratio,
* so a long copy column cannot drag the photography into an absurd crop. */
@media (max-width: 991px) {
	.css-training-block__media {
		min-height: auto;
	}

	.css-training-block__video-tile {
		flex: none;
		aspect-ratio: 16 / 10;
	}

	.css-training-block__image-tile {
		flex: none;
		aspect-ratio: 16 / 8.5;
	}
}

/* TRAINING BLOCK
* BREAKPOINT: 767PX */
@media (max-width: 767px) {
	.css-training-video__play {
		width: 68px;
		height: 68px;
	}
}

/* TRAINING BLOCK
* CONTENT COLUMN */
.css-training-block__copy {
	padding: 80px 0;
}

.css-training-block__copy .css-eyebrow {
	color: var(--c-dark, #242128);
	opacity: .55;
	text-transform: uppercase;
}

.css-training-block__copy h2 {
	font-size: clamp(30px, 3vw, 34px);
	line-height: 1.05;
	margin-bottom: 16px;
}

/* RESPONSIVE
* BREAKPOINT: 1200PX */
@media (min-width: 1200px) {
	.css-training-block__copy h2 {
		font-size: clamp(34px, 4vw, 45px);
	}
}

.css-training-block__body {
	font-size: 15px;
	opacity: .7;
	line-height: 1.65;
	margin-bottom: 22px;
}

.css-training-block__features {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.css-training-block__features li {
	display: flex;
	gap: 18px;
	align-items: center;
	padding: 18px 20px;
	border-radius: 18px;
	background: var(--c-grey-light, #f5f5f5);
	border: 1px solid var(--c-grey-border, #c5c5c5);
}

.css-feature-icon {
	width: 100px;
	height: 100px;
	border-radius: 20px;
	flex-shrink: 0;
	background: #242128;
	color: var(--c-primary, #edcb20);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.css-feature-icon__fa {
	font-size: 35px;
	line-height: 1;
}

.css-training-block__features strong {
	display: block;
	font-size: clamp(20px, 4vw, 23px);
	font-weight: 600;
	line-height: 1.2;
	color: var(--c-dark, #242128);
	margin-bottom: 3px;
}

.css-training-block__features p {
	margin: 0;
	font-size: clamp(14px, 4vw, 15px);
	color: var(--c-grey-text, #3f3f3f);
	line-height: 1.5;
}

/* ABOUT BLOCK (HOME — DARK)
* SECTION STYLES */
.css-home-about {
	background: var(--c-dark, #242128);
	color: var(--c-white, #fff);
}

.css-home-about .css-eyebrow {
	color: rgba(255,255,255,.5);
}

.css-home-about h2 {
	color: var(--c-white, #fff);
}

.css-home-about__body {
	color: rgba(255,255,255,.75);
	font-size: 16px;
	line-height: 1.7;
}

/* ABOUT BLOCK (ABOUT PAGE — LIGHT)
* SECTION STYLES */
.css-about-block {
	background: var(--c-grey-light, #f5f5f5);
	color: var(--c-dark, #242128);
}

.css-about-block .css-eyebrow {
	color: var(--c-primary);
}

.css-about-block h2 {
	color: var(--c-dark, #242128);
}

.css-about-block__body {
	color: var(--c-grey-text, #6b6875);
	font-size: 16px;
	line-height: 1.7;
}

.css-about-block .css-btn--outline {
	border-color: var(--c-dark);
	color: var(--c-dark);
}

.css-about-block .css-btn--outline:hover {
	background: var(--c-dark);
	color: var(--c-white);
}

.css-home-about__inner,
.css-about-block__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	/* Only go two-column when a media element is present */
    .css-home-about__inner.has-media,
.css-about-block__inner {
		grid-template-columns: 1fr 1fr;
		gap: 64px;
	}
}

.css-home-about__media img,
.css-about-block__media img {
	border-radius: var(--radius-card, 30px);
	width: 100%;
	display: block;
}

/* ABOUT BLOCK
* PLACEHOLDER MEDIA COLUMN */
.css-about-block__media.is-placeholder {
	display: none;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-about-block__media.is-placeholder {
		display: block;
		min-height: 360px;
		background: var(--c-grey-mid, #e0e0e0);
		border-radius: var(--radius-card, 30px);
	}
}

/* WHY CHOOSE US
* SECTION STYLES */
.css-wcu__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
}

/* RESPONSIVE
* BREAKPOINT: 600PX */
@media (min-width: 600px) {
	.css-wcu__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* RESPONSIVE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-wcu__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 60px;
	}
}

/* WHY CHOOSE US
* ICON TITLE CARD */
.css-wcu__card {
	display: grid;
	grid-template-columns: 72px 1fr;
	grid-template-rows: auto auto;
	column-gap: 20px;
	row-gap: 16px;
	align-items: start;
}

.css-wcu__icon {
	grid-column: 1;
	grid-row: 1;
	width: 72px;
	height: 72px;
	border-radius: 18px;
	background: var(--c-dark, #242128);
	color: var(--c-primary, #edcb20);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.css-wcu__icon svg {
	width: 32px;
	height: 32px;
}

.css-wcu__card h3 {
	grid-column: 2;
	grid-row: 1;
	align-self: center;
	font-size: clamp(20px, 2vw, 24px);
	font-weight: 700;
	margin: 0;
}

.css-wcu__card p {
	grid-column: 1 / -1;
	grid-row: 2;
	font-size: 15px;
	opacity: .75;
	margin: 0;
	line-height: 1.6;
}

/* CONTACT CARDS
* ICON SIZE NOTE */

/* REVIEWS WIDGET
* SECTION STYLES */
.css-reviews-widget {
	background: var(--c-grey-light, #f5f5f5);
}

.css-reviews-widget .css-section__heading {
	text-align: center;
	margin-bottom: 48px;
}

.css-reviews-widget .css-section__heading .css-eyebrow {
	color: rgba(0,0,0,.45);
}

/* REVIEWS WIDGET
* FLANKING CAROUSEL LAYOUT */
.css-reviews-carousel-row {
	display: block;
}

/* REVIEWS WIDGET
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-reviews-carousel-row {
		display: grid;
		grid-template-columns: 70px 1fr 70px;
		align-items: center;
		gap: 16px;
	}
}

/* REVIEWS WIDGET
* FLANKING NAV BUTTONS */
.css-reviews-nav-btn {
	display: none;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: 0;
	background: var(--c-grey-light, #f5f5f5);
	color: var(--c-dark, #242128);
	font-size: 22px;
	cursor: pointer;
	line-height: 1;
	align-items: center;
	justify-content: center;
	transition: background .15s ease, color .15s ease, transform .15s ease;
	flex-shrink: 0;
	margin: 0 auto;
}

/* REVIEWS WIDGET
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-reviews-nav-btn {
		display: flex;
	}
}

.css-reviews-nav-btn:hover {
	background: var(--c-dark, #242128);
	color: var(--c-primary, #edcb20);
	transform: translateY(-1px);
}

.css-reviews-nav-btn i {
	display: block;
	line-height: 1;
}

/* REVIEWS WIDGET
* BREAKPOINT: 767PX
* Stacked, the flanking buttons were hidden and the carousel was swipe-only.
* They now sit centred beneath the carousel — the same eyebrow → heading →
* carousel → arrows order as the other carousel sections. */
@media (max-width: 767px) {
	.css-reviews-carousel-row {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px;
	}

	.css-reviews-carousel-row .css-reviews-carousel {
		flex: 0 0 100%;
		order: -1;
		min-width: 0;
	}

	.css-reviews-nav-btn {
		display: flex;
		width: 52px;
		height: 52px;
		font-size: 18px;
		margin: 8px 0 0;
	}
}

/* REVIEWS WIDGET
* THREE CARD CAROUSEL OVERRIDE */
.css-reviews-carousel .css-carousel__item {
	flex-basis: calc(100% - 8px);
}

/* RESPONSIVE
* BREAKPOINT: 600PX */
@media (min-width: 600px) {
	.css-reviews-carousel .css-carousel__item {
		flex-basis: calc(50% - 10px);
	}
}

/* RESPONSIVE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-reviews-carousel .css-carousel__item {
		flex-basis: calc(33.333% - 14px);
	}
}

.css-review-card {
	background: var(--c-white);
	border-radius: 20px;
	padding: 28px 24px;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}

/* The name row wraps: on a narrow card the stars drop beneath the reviewer
* instead of squeezing the name into one word per line. */
.css-review-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.css-review-card__meta > div {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.css-review-card__meta img {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.css-review-card__avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex-shrink: 0;
	background: var(--c-grey-mid, #d9d9d9);
	color: var(--c-dark, #242128);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
}

.css-review-card__meta strong {
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: var(--c-dark, #242128);
}

.css-review-card__meta small {
	display: block;
	font-size: 13px;
	opacity: .6;
	margin-top: 2px;
}

.css-review-card__stars {
	color: var(--c-primary, #edcb20);
	font-size: 16px;
	letter-spacing: 2px;
	flex-shrink: 0;
}

.css-review-card__body {
	font-size: 15px;
	opacity: .7;
	line-height: 1.65;
	margin: 0;
}

/* REVIEWS LISTING
* RESPONSIVE GRIDS */
.css-reviews-listing__grid {
	display: grid;
	gap: 20px;
	grid-template-columns: minmax(0, 1fr);
}
.css-reviews-listing {
	background:var(--c-grey-light);
}


/* RESPONSIVE
* BREAKPOINT: 600PX */
@media (min-width: 600px) {
	.css-reviews-listing__grid--cols-2,
.css-reviews-listing__grid--cols-3,
.css-reviews-listing__grid--cols-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* RESPONSIVE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-reviews-listing__grid--cols-3 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

.css-reviews-listing__grid--cols-4 {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

/* RESOURCES BAR (FILTER CHIPS + SEARCH + COUNT)
* SECTION STYLES */
.css-resources-bar {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 40px;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-resources-bar {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 24px;
	}

.css-resources-bar .css-filter-chips {
		margin-bottom: 0;
		flex-shrink: 0;
	}
}

/* RESOURCES BAR
* SEARCH + COUNT
* Wraps onto its own row when the chips need the full width (below ~1370px
* the chips and the search do not fit side by side), and the search field
* itself shrinks and the count wraps beneath it on narrow screens, so the
* group can never be wider than the bar. */
.css-resources-bar__right {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	flex: 0 1 auto;
	min-width: 0;
	max-width: 100%;
}

.css-resources-search {
	display: flex;
	flex: 1 1 auto;
	min-width: 0;
	align-items: center;
	gap: 10px;
	background: var(--c-white, #fff);
	border: 1px solid #ddd;
	border-radius: var(--radius-pill, 999px);
	padding: 10px 18px;
	transition: border-color .15s ease;
}

.css-resources-search:focus-within {
	border-color: var(--c-primary);
}

.css-resources-search svg {
	color: #aaa;
	flex-shrink: 0;
}

.css-resources-search input {
	border: none;
	outline: none;
	background: transparent;
	font-size: 14px;
	color: var(--c-dark);
	font-family: inherit;
	width: 180px;
	max-width: 100%;
	min-width: 0;
}

.css-resources-search input::placeholder {
	color: #aaa;
}

.css-resources-count {
	font-size: 13px;
	color: var(--c-grey-text, #6b6875);
	white-space: nowrap;
}

.css-resources-count strong {
	color: var(--c-dark);
	font-weight: 600;
}

/* RESOURCES BAR
* SEARCH HIDDEN CARDS */
.css-resource-card[hidden] {
	display: none;
}

/* RESOURCES BLOCK
* SECTION STYLES
* minmax(0, 1fr) so a card can never force its column wider than a third of
* the container. */
.css-resources-block__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 24px;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-resources-block__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* RESOURCE CARD
* CARD
* The card is a size container: the meta bar below lays itself out from the
* card's own width rather than the viewport's, so it behaves the same in the
* three-up listing, the Latest Resources block and Related Resources. */
.css-resource-card {
	background: transparent;
	border-radius: 0;
	overflow: visible;
	border: none;
	display: flex;
	flex-direction: column;
	gap: 0;
	transition: none;
	min-width: 0;
	container-type: inline-size;
	container-name: resource-card;
}

/* RESOURCE CARD
* MEDIA WRAP — positions the author pill over the image. */
.css-resource-card__media-wrap {
	position: relative;
	margin-bottom: 26px;
}

/* RESOURCE CARD
* MEDIA */
.css-resource-card__media {
	display: block;
	aspect-ratio: 16 / 11.5;
	background: var(--c-grey-light, #f5f5f5);
	overflow: hidden;
	border-radius: 18px;
}

/* RESOURCE CARD
* AUTHOR PILL — bottom-left of the image. */
.css-resource-card__author-pill {
	position: absolute;
	left: 12px;
	bottom: 12px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: calc(100% - 24px);
	min-height: 32px;
	padding: 4px 12px 4px 4px;
	border-radius: var(--radius-pill, 100px);
	background: var(--c-white, #fff);
	color: var(--c-dark, #242128);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.css-resource-card__author-pill .css-resource-card__author-photo {
	width: 24px;
	height: 24px;
	aspect-ratio: 1 / 1;
	flex: 0 0 24px;
	border-radius: 50%;
	object-fit: cover;
}

/* Pill without a photo keeps an even inset. */
.css-resource-card__author-pill .css-resource-card__author-name:first-child {
	padding-left: 8px;
}

.css-resource-card__author-name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* RESOURCE CARD
* IMAGE */
.css-resource-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s ease;
}

/* RESOURCE CARD
* IMAGE HOVER */
.css-resource-card:hover .css-resource-card__media img {
	transform: scale(1.04);
}

/* RESOURCE CARD
* BODY */
.css-resource-card__body {
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 13px;
	flex: 1;
}

/* RESOURCE CARD
* TITLE */
.css-resource-card h3 {
	font-size: clamp(20px, 2vw, 24px);
	line-height: 1.1;
	margin: 0;
	color: var(--c-dark, #242128);
}

/* RESOURCE CARD
* TITLE LINK */
.css-resource-card h3 a {
	color: inherit;
	text-decoration: none;
}

/* RESOURCE CARD
* EXCERPT */
.css-resource-card p {
	font-size: clamp(15px, 1.2vw, 16px);
	line-height: 1.35;
	opacity: .65;
	margin: 0 0 20px;
}

/* RESOURCE CARD
* META BAR — Read Time and Date only (the author sits on the image). Two
* equal columns, so the pair stays side by side at every supported card
* width; the condensed values ("4 Minutes", "29th Jul 26") are short enough
* to fit a 130px column. */
.css-resource-card__meta {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 16px;
	align-items: center;
	font-size: 15px;
	color: var(--c-dark, #242128);
	margin-top: auto;
	padding: 14px 18px;
	border: none;
	border-radius: 10px;
	background: var(--c-grey-light, #f5f5f5);
}

/* RESOURCE CARD
* META ITEM */
.css-resource-card__meta-item {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

/* RESOURCE CARD
* META LABEL */
.css-resource-card__meta-label {
	display: block;
	font-size: 12px;
	line-height: 1.2;
	color: rgba(36, 33, 40, .58);
}

/* RESOURCE CARD
* META VALUE */
.css-resource-card__meta-value {
	display: block;
	font-size: 15px;
	line-height: 1.15;
	color: var(--c-dark, #242128);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* RESOURCE CARD
* META BAR — VERY NARROW CARD
* Only below ~190px (narrower than any supported grid column — the three-up
* grid at 768px gives ~213px) does the pair stack, decided by the card's own
* width (see container-type on the card). */
@container resource-card (max-width: 189px) {
	.css-resource-card__meta {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* RESOURCE CARD
* BREAKPOINT: 768PX */
@media (max-width: 768px) {
	.css-resource-card__media-wrap {
		margin-bottom: 20px;
	}
}

/* ABOUT SHORT
* SECTION STYLES
* minmax(0, 1fr): the image slot's min-height + aspect-ratio would otherwise
* transfer into a 416px minimum track width and overflow narrow phones. */
.css-about-short__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 40px;
	align-items: center;
}

/* ABOUT SHORT
* IMAGE SLOT
*
* The slot owns its height and its rounded frame; the photograph only fills it.
* Stacked, that height is a 16:10 floored at 260px — released at 768px, where
* the grid row takes over. Without the ratio the height would come from the
* image's own intrinsic size, since the percentage height on the img cannot
* resolve against an auto-height parent. */
.css-about-short__image {
	position: relative;
	/* An explicit width: a grid item with an aspect-ratio is start-aligned,
	* not stretched, so without one it sizes itself from the min-height
	* (260px tall at 16:10 = 416px wide) and overflows a phone screen. */
	width: 100%;
	min-width: 0;
	min-height: 260px;
	aspect-ratio: 16 / 10;
	border-radius: var(--radius-card, 30px);
	overflow: hidden;
}

/* ABOUT SHORT
* IMAGE
* Out of flow, so it can never contribute to the row's height. The instructor
* and delegate in this frame stand in the upper half, above the table. */
.css-about-short__image img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 40%;
	border-radius: 0;
}

/* ABOUT SHORT
* BREAKPOINT: 992PX
*
* Side by side the copy defines the row height and the image slot stretches to
* meet it, so it can never finish above the text beside it.
*
* Two columns start at 992px rather than 768px: in the 768–991px band the
* columns are ~310px wide against a ~670px copy, and stretching a single
* landscape photograph to match that leaves a tall, thin crop. Below 992px it
* stacks and the 16:10 above governs instead. */
@media (min-width: 992px) {
	.css-about-short__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 64px;
	}

	.css-about-short__image {
		align-self: stretch;
		height: 100%;
		min-height: 420px;
		aspect-ratio: auto;
	}
}

.css-about-short h2 {
	color: inherit;
}

.css-about-short .css-eyebrow {
	color: var(--c-primary);
}

/* ACCREDITATIONS STRIP
* SECTION STYLES */
.css-accred-strip {
	text-align: center;
	overflow: hidden;
}

.css-accred-strip .css-eyebrow {
	opacity: .5;
	color: var(--c-dark, #242128);
}

.css-accred-strip__heading {
	font-size: 32px;
	margin: 4px 0 8px;
}

.css-accred-strip__logos {
	width: 100vw;
	margin-top: 50px;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow: hidden;
}

.css-accred-strip__logos:not(.is-marquee-ready) {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 60px;
}

.css-accred-strip__logos img {
	display: block;
	width: auto;
	max-width: 220px;
	max-height: 64px;
	object-fit: contain;
	opacity: .8;
	transition: opacity .2s ease;
}

.css-accred-strip__logos a:hover img,
.css-accred-strip__logos img:hover {
	opacity: 1;
}

/* ACCREDITATIONS STRIP
* MARQUEE TRACK */
.css-accred-strip__marquee-track {
	display: flex;
	align-items: center;
	gap: 60px;
	width: max-content;
	will-change: transform;
	animation: css-accred-marquee var(--css-accred-marquee-duration, 42s) linear infinite;
}

.css-accred-strip__logo-group {
	display: flex;
	align-items: center;
	gap: 60px;
	flex: 0 0 auto;
}

.css-accred-strip__logo-group > a,
.css-accred-strip__logo-group > img {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.css-accred-strip__logo-group > a {
	text-decoration: none;
}

@keyframes css-accred-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(calc(var(--css-accred-marquee-distance, 50%) * -1), 0, 0);
	}
}

/* ACCREDITATIONS STRIP
* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
	.css-accred-strip__marquee-track {
		animation: none;
		transform: none;
	}
}

/* ACCREDITATIONS STRIP
* BREAKPOINT: 767PX */
@media (max-width: 767px) {
	.css-accred-strip__logos,
	.css-accred-strip__logos:not(.is-marquee-ready),
	.css-accred-strip__marquee-track,
	.css-accred-strip__logo-group {
		gap: 60px;
	}

	.css-accred-strip__logos img {
		max-width: 180px;
		max-height: 56px;
	}
}

/* PAGE HEADER (INNER PAGES)
* SECTION STYLES */
.css-page-header {
	position: relative;
	overflow: hidden;
	background: var(--c-dark, #242128);
	color: var(--c-white);
	padding: 80px 0;
}

/* PAGE HEADER (INNER PAGES)
* INNER */
.css-page-header__inner {
	position: relative;
	z-index: 1;
	width: calc(100% - 60px);
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
}

/* PAGE HEADER (INNER PAGES)
* CONTENT */
.css-page-header__content {
	position: relative;
	z-index: 1;
}

/* PAGE HEADER (INNER PAGES)
* DECORATION */
.css-page-header__content::before {
	content: "";
	position: absolute;
	z-index: -1;
	width: clamp(360px, 45vw, 780px);
	height: clamp(360px, 45vw, 780px);
	left: clamp(-260px, -16vw, -120px);
	top: 50%;
	background-image: url('/wp-content/uploads/2026/06/css-icon-white.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.06;
	transform: translateY(-50%);
	pointer-events: none;
}

/* PAGE HEADER (INNER PAGES)
* EYEBROW */
.css-page-header .css-eyebrow {
	color: rgba(255, 255, 255, 0.55);
	opacity: 1;
	text-transform: uppercase;
}

/* PAGE HEADER (INNER PAGES)
* HEADINGS */
.css-page-header h1,
.css-page-header h2 {
	color: var(--c-white);
	font-size: clamp(35px, 4.2vw, 50px);
	line-height: 1.05;
    max-width:460px;
}

/* PAGE HEADER (INNER PAGES)
* HEADING */
.css-page-header__heading {
	margin: 0;
	font-size: clamp(38px, 4.2vw, 64px);
	line-height: 1.05;
}

/* PAGE HEADER (INNER PAGES)
* YELLOW TEXT */
.css-page-header__kicker {
	margin-top: 24px;
	color: var(--c-primary, #edcb20);
	font-size: clamp(16px, 1.45vw, 19px);
	font-weight: 600;
	line-height: 1.35;
}

/* PAGE HEADER (INNER PAGES)
* SUBHEADING */
.css-page-header__sub {
	max-width: 540px;
	margin-top: 26px;
}

/* PAGE HEADER (INNER PAGES)
* IMAGE
*
* The slot owns its height; the photograph only fills it. Below 992px that
* height is the 3:2 the header has always been drawn at (floored at 320px on
* narrow screens); at 992px and up the grid row and the 620px min-height take
* over and the ratio is released.
*
* Without the ratio here the height would come from the image's own intrinsic
* size, because the percentage height on the img below cannot resolve against
* an auto-height parent. A portrait photograph would then stretch the whole
* hero instead of being cropped into it. */
.css-page-header__image {
	position: relative;
	overflow: hidden;
	min-height: 320px;
	aspect-ratio: 3 / 2;
}

/* PAGE HEADER (INNER PAGES)
* IMAGE ELEMENT
* Taken out of flow so it can never contribute to the section's height —
* whatever its aspect ratio, it is cropped to the slot above. */
.css-page-header__image img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 0;
}

/* PAGE HEADER (INNER PAGES)
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-page-header {
		min-height: 620px;
		padding: 0;
	}

	.css-page-header.has-image .css-page-header__inner {
		width: 100%;
		max-width: none;
		min-height: 620px;
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 0;
	}

	/* The copy column is capped so that, together with its right-hand margin,
	* it always leaves at least the container gutter on the left. With a flat
	* 500px cap the column over-filled the half-width track below ~1180px and
	* the auto left margin collapsed to zero, leaving the heading flush against
	* the viewport edge. From 1440px the cap resolves to 500px as before. */
	.css-page-header.has-image .css-page-header__content {
		width: calc(100% - 60px);
		max-width: min(500px, calc(100% - var(--container-padding) - clamp(70px, 7vw, 130px)));
		margin-left: auto;
		margin-right: clamp(70px, 7vw, 130px);
	}

	/* The grid row governs from here up, so the 3:2 is released. */
	.css-page-header.has-image .css-page-header__image {
		align-self: stretch;
		height: 100%;
		min-height: 620px;
		aspect-ratio: auto;
	}
}

/* PAGE HEADER (INNER PAGES)
* BREAKPOINT: 991PX */
@media (max-width: 991px) {
	.css-page-header.has-image .css-page-header__image {
		width: calc(100% + 60px);
		margin-left: -30px;
		margin-right: -30px;
	}
}

/* TRAINING CATEGORIES GRID
* SECTION STYLES */
.css-training-categories__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

/* TRAINING CATEGORIES GRID
* BREAKPOINT: 600PX */
@media (min-width: 600px) {
	.css-training-categories__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* TRAINING CATEGORIES GRID
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-training-categories__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* TRAINING CATEGORIES CARD
* SECTION STYLES */
.css-cat-card {
	min-height: 0;
}

/* TRAINING CATEGORIES CARD
* CARD MEDIA */
.css-cat-card__media {
	position: relative;
	inset: auto;
	z-index: auto;
}

/* TRAINING CATEGORIES CARD
* CARD BODY */
.css-cat-card__body {
	position: relative;
	z-index: 1;
}

/* TRAINING CATEGORIES CARD
* CARD TITLE */
.css-cat-card__title {
	margin: 0;
}

/* TRAINING CATEGORIES CARD
* CARD META */
.css-cat-card__meta {
	display: grid;
}

/* TRAINING CATEGORIES CARD
* CARD META ITEM */
.css-cat-card__meta-item {
	display: flex;
}

/* TRAINING CATEGORIES CARD
* CARD CTA */
.css-cat-card__cta {
	margin-top: auto;
}

/* CONSULTANCY SERVICES GRID
* INTRO */
.css-consultancy-grid__intro {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.85fr);
	gap: 70px;
	align-items: end;
	margin-bottom: 52px;
}

/* CONSULTANCY SERVICES GRID
* HEADING */
.css-consultancy-grid__heading h2 {
	margin: 0;
}

/* CONSULTANCY SERVICES GRID
* BODY */
.css-consultancy-grid__body {
	justify-self: end;
	color: var(--c-text, #242128);
	font-size: 16px;
	line-height: 1.6;
}

/* CONSULTANCY SERVICES GRID
* BODY PARAGRAPH */
.css-consultancy-grid__body p {
	margin: 0;
}

/* CONSULTANCY SERVICES GRID
* GRID */
.css-consultancy-grid__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

/* CONSULTANCY SERVICES GRID
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-consultancy-grid__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* CONSULTANCY SERVICES GRID
* BREAKPOINT: 1200PX */
@media (min-width: 1200px) {
	.css-consultancy-grid__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* CONSULTANCY SERVICES GRID
* BREAKPOINT: 900PX */
@media (max-width: 900px) {
	.css-consultancy-grid__intro {
		grid-template-columns: 1fr;
		gap: 20px;
		align-items: start;
		margin-bottom: 34px;
	}

	.css-consultancy-grid__body {
		justify-self: start;
	}
}

/* CONSULTANCY SERVICES CARD
* IMAGE OVERLAY CARD */
.css-svc-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
	min-height: 500px;
	border-radius: var(--radius-card, 30px);
	overflow: hidden;
	background: var(--c-dark, #242128);
	text-decoration: none;
	color: var(--c-white, #fff);
	transition: transform .25s ease, box-shadow .25s ease;
}

/* CONSULTANCY SERVICES CARD
* HOVER */
.css-svc-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

/* CONSULTANCY SERVICES CARD
* MEDIA */
.css-svc-card__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

/* CONSULTANCY SERVICES CARD
* IMAGE */
.css-svc-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* CONSULTANCY SERVICES CARD
* OVERLAY */
.css-svc-card::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .22) 58%, transparent 100%);
}

/* CONSULTANCY SERVICES CARD
* BODY */
.css-svc-card__body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 30px 34px;
}

/* CONSULTANCY SERVICES CARD
* TITLE */
.css-svc-card__body h3 {
	max-width: 320px;
	margin: 0;
	color: var(--c-white, #fff);
	/* Responsive, capped at 30px. */
	font-size: clamp(22px, 2.2vw, 30px);
	line-height: 1.05;
}

/* CONSULTANCY SERVICES CARD
* TEXT */
.css-svc-card__body p {
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255, 255, 255, .8);
}

/* CONSULTANCY SERVICES CARD
* BREAKPOINT: 767PX */
@media (max-width: 767px) {
	.css-svc-card {
		min-height: 340px;
	}
}

/* WHO WE WORK WITH
* SECTION STYLES */
.css-who-section {
	background: var(--c-grey-light, #f5f5f5);
	overflow: hidden;
}

/* WHO WE WORK WITH
* HEADER */
.css-who-section__header {
	margin-bottom: 34px;
}

/* WHO WE WORK WITH
* HEADER TITLE */
.css-who-section__header h2 {
	margin: 0;
}

/* WHO WE WORK WITH
* CAROUSEL TRACK */
.css-who-section__carousel .css-carousel__track {
	gap: 20px;
}

/* WHO WE WORK WITH
* CAROUSEL ITEM */
.css-who-section__carousel .css-carousel__item {
	flex: 0 0 calc(100% - 8px);
}

/* WHO WE WORK WITH
* BREAKPOINT: 600PX */
@media (min-width: 600px) {
	.css-who-section__carousel .css-carousel__item {
		flex-basis: calc(50% - 10px);
	}
}

/* WHO WE WORK WITH
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-who-section__carousel .css-carousel__item {
		flex-basis: calc(33.333% - 14px);
	}
}

/* WHO WE WORK WITH
* BREAKPOINT: 1200PX */
@media (min-width: 1200px) {
	.css-who-section__carousel .css-carousel__item {
		flex-basis: calc(33.333% - 14px);
	}
}

/* WHO WE WORK WITH
* INDUSTRY CARD */
.css-who-card {
	position: relative;
	min-height: 550px;
	border-radius: var(--radius-card, 30px);
	overflow: hidden;
	background: var(--c-dark, #242128);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

/* WHO WE WORK WITH
* MEDIA */
.css-who-card__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

/* WHO WE WORK WITH
* IMAGE */
.css-who-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* WHO WE WORK WITH
* OVERLAY */
.css-who-card::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(to top, rgba(0, 0, 0, .80) 0%, rgba(0, 0, 0, .10) 60%, transparent 100%);
}

/* WHO WE WORK WITH
* BODY */
.css-who-card__body {
	position: relative;
	z-index: 2;
	padding: 26px 28px;
}

/* WHO WE WORK WITH
* TITLE */
.css-who-card__body h3 {
	margin: 0;
	color: var(--c-white, #fff);
	font-size: clamp(24px, 3vw, 28px);
	line-height: 1;
}

/* WHO WE WORK WITH
* ACCREDITATIONS OVERRIDE */
.css-who-section + .css-accred-strip {
	background: var(--c-white, #fff) !important;
}

/* WHO WE WORK WITH
* BREAKPOINT: 767PX */
@media (max-width: 767px) {
	.css-who-card {
		min-height: 340px;
	}
}

/* CONSULTANCY SERVICE SINGLE
* SECTION STYLES */
.css-cons-single__hero {
	min-height: 520px;
	display: flex;
	align-items: flex-end;
	background: var(--c-dark, #242128) center/cover no-repeat;
	color: var(--c-white, #fff);
	padding-bottom: 64px;
}

.css-cons-single__hero .css-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.css-cons-single__hero h1 {
	font-size: clamp(32px, 5vw, 64px);
	line-height: 1.1;
	color: var(--c-white, #fff);
	margin: 0;
}

.css-cons-single__subtitle {
	font-size: 18px;
	color: rgba(255,255,255,.8);
	max-width: 640px;
	margin: 0;
	line-height: 1.6;
}

.css-cons-single__hero-actions {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}

.css-cons-single__back {
	color: rgba(255,255,255,.7);
	font-size: 14px;
	text-decoration: none;
	transition: color .15s;
}

.css-cons-single__back:hover {
	color: var(--c-white);
}

.css-cons-single__body {
	background: var(--c-white, #fff);
}

.css-cons-single__body-wrap {
	max-width: 820px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.8;
}

.css-cons-single__body-wrap h2 {
	font-size: var(--fs-h2, clamp(32px, 4vw, 36px));
	color: var(--c-dark);
	margin: 40px 0 16px;
}

.css-cons-single__body-wrap h3 {
	font-size: var(--fs-h3, clamp(22px, 3vw, 24px));
	color: var(--c-dark);
	margin: 32px 0 12px;
}

.css-cons-single__body-wrap p {
	color: var(--c-grey-text, #6b6875);
	margin: 0 0 20px;
}

.css-cons-single__faqs {
	background: var(--c-grey-light, #f5f5f5);
}

.css-cons-single__cta {
	background: var(--c-dark, #242128);
	color: var(--c-white, #fff);
	text-align: center;
}

.css-cons-single__cta-inner {
	max-width: 680px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.css-cons-single__cta h2 {
	font-size: clamp(24px, 3vw, 40px);
	color: var(--c-white, #fff);
	margin: 0;
}

.css-cons-single__cta p {
	color: rgba(255,255,255,.75);
	font-size: 16px;
	margin: 0;
	line-height: 1.6;
}

/* FILTER CHIPS
* SECTION STYLES */
.css-filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}

.css-chip {
	background: var(--c-white);
	color: var(--c-dark, #242128);
	padding: 8px 20px;
	border-radius: var(--radius-pill);
	border: 1px solid var(--c-grey-mid, #d9d9d9);
	text-decoration: none;
	font-size: 14px;
	cursor: pointer;
	transition: background .15s ease, border-color .15s ease;
}

.css-chip.is-active {
	background: var(--c-dark, #242128);
	color: var(--c-white);
	border-color: var(--c-dark, #242128);
}

.css-chip:hover {
	border-color: var(--c-dark, #242128);
}

/* FAQ ACCORDION
* SECTION STYLES */
.css-faq {
	max-width: 900px;
	margin: 0 auto;
}

.css-faq__item {
	border-bottom: 1px solid var(--c-grey-mid, #e0e0e0);
}

.css-faq__q {
	width: 100%;
	text-align: left;
	background: transparent;
	border: 0;
	padding: 22px 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 17px;
	font-weight: 600;
	color: var(--c-dark, #242128);
	font-family: var(--font-heading, 'Instrument Sans', system-ui, sans-serif);
}

.css-faq__icon {
	font-size: 24px;
	transition: transform .2s ease;
	flex-shrink: 0;
	line-height: 1;
}

.css-faq__item.is-open .css-faq__icon {
	transform: rotate(45deg);
	color: var(--c-primary);
}

.css-faq__a {
	padding: 0 0 22px;
	max-width: 800px;
	color: var(--c-grey-text);
	line-height: 1.7;
}

/* CONTACT PAGE — TWO-COLUMN LAYOUT
* SECTION STYLES */
.css-section.css-contact-two-col {
	padding:90px 0 30px;
}
.css-contact-two-col {
	background: var(--c-grey-light, #f5f5f5);
}

.css-contact-two-col__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 48px;
	align-items: start;
}

.css-contact-two-col__left,
.css-contact-two-col__right {
	min-width: 0;
}

/* RESPONSIVE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-contact-two-col__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 80px;
	}
}

.css-contact-two-col__left h2 {
	font-size: var(--fs-h2, clamp(32px, 4vw, 45px));
	color: var(--c-dark);
	margin-bottom: 16px;
}

.css-contact-two-col__intro {
	color: var(--c-grey-text, #6b6875);
	margin-bottom: 32px;
	line-height: 1.7;
	font-size: 15px;
}

/* Stacked cards in left column */
.css-contact-cards__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.css-contact-card {
	background: var(--c-white, #fff);
	border: none;
	border-radius: 16px;
	padding: 20px 24px;
	display: flex;
	flex-direction: row;
	gap: 16px;
	align-items: center;
	text-align: left;
}

.css-contact-card__icon {
	width: 70px;
	height: 70px;
	border-radius: 10px;
	flex-shrink: 0;
	background: var(--c-grey-light, #fff);
	color: var(--c-dark, #242128);
	display: flex;
	align-items: center;
	justify-content: center;
}

.css-contact-card__icon .css-feature-icon__fa {
	font-size: 28px;
	line-height: 1;
}

.css-contact-card__info {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.css-contact-card h3 {
	margin: 0;
	font-size: clamp(14px, 1.5vw, 15px);
	font-weight: 700;
	color: var(--c-dark);
}

.css-contact-card a {
	color: var(--c-grey-text, #6b6875);
	text-decoration: none;
	font-size: 14px;
	/* An email address cannot wrap on its own; on a 360px phone it was
	* pushing the card 20px past the viewport. */
	overflow-wrap: anywhere;
}

.css-contact-card a:hover {
	color: var(--c-primary);
}

/* Right column form card */
.css-contact-form-card {
	background: var(--c-white, #fff);
	border-radius: var(--radius-card, 30px);
	padding: 36px 40px;
}

.css-contact-form-card h3 {
	margin: 0 0 24px;
	font-size: clamp(18px, 2vw, 20px);
	color: var(--c-dark);
	text-align: center;
}

.css-contact-placeholder-form,
.css-contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.css-form-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.css-form-field label {
	font-size: 13px;
	font-weight: 600;
	color: var(--c-dark);
}

.css-form-field label span {
	font-weight: 400;
	opacity: .65;
}

.css-form-required {
	color: var(--c-primary);
	font-weight: 700;
	opacity: 1 !important;
}

.css-contact-form-card .css-form-field input,
.css-contact-form-card .css-form-field textarea,
.css-contact-form-card .wpforms-container input[type="text"],
.css-contact-form-card .wpforms-container input[type="email"],
.css-contact-form-card .wpforms-container input[type="tel"],
.css-contact-form-card .wpforms-container input[type="number"],
.css-contact-form-card .wpforms-container input[type="url"],
.css-contact-form-card .wpforms-container select,
.css-contact-form-card .wpforms-container textarea {
	background: var(--c-grey-light, #f5f5f5) !important;
	border: 1px solid #ddd !important;
	border-radius: 10px !important;
	padding: 12px 16px !important;
	font-size: 15px !important;
	color: var(--c-dark) !important;
	font-family: inherit !important;
	transition: border-color .15s ease;
	outline: none;
}

.css-contact-form-card .css-form-field input:focus,
.css-contact-form-card .css-form-field textarea:focus,
.css-contact-form-card .wpforms-container input:focus,
.css-contact-form-card .wpforms-container select:focus,
.css-contact-form-card .wpforms-container textarea:focus {
	border-color: var(--c-primary, #edcb20) !important;
}

.css-form-field textarea {
	resize: vertical;
}

.css-form-notice {
	border-radius: 12px;
	padding: 16px 20px;
	margin-bottom: 16px;
	font-size: 14px;
	font-weight: 500;
}

.css-form-notice p {
	margin: 0;
}

.css-form-notice--success {
	background: #e6f9ef;
	color: #1a6b3c;
	border: 1px solid #a3e0be;
}

.css-form-notice--error {
	background: #fef0f0;
	color: #9b1c1c;
	border: 1px solid #fbc7c7;
}

.css-btn--dark {
	background: var(--c-dark, #242128);
	color: var(--c-white, #fff);
}

.css-btn--dark:hover {
	background: #3a3740;
}

.css-btn--full {
	width: 100%;
	justify-content: center;
}

/* CONTACT MAP
* CENTERED HEADING AND FULL WIDTH MAP */
.css-section.css-contact-map {
	padding:90px 0 90px;
}
.css-contact-map {
	background: var(--c-grey-light, #f5f5f5);
}

.css-contact-map__copy {
	text-align: center;
	margin-bottom: 40px;
}

.css-contact-map__copy h2 {
	font-size: var(--fs-h2, clamp(32px, 4vw, 45px));
	color: var(--c-dark);
	margin-bottom: 12px;
}

.css-contact-map__copy p {
	color: var(--c-grey-text, #6b6875);
	font-size: 15px;
}

.css-contact-map__embed {
	border-radius: 20px;
	overflow: hidden;
}


.css-contact-faqs {
	background: var(--c-white, #fff);
}
.css-contact-faqs .css-container {
	width:calc(100% - 60px);
	max-width:1250px;
	margin:0 auto;
}

/* CONTACT FAQS
* FILTER CHIPS */
.css-contact-faqs .css-filter-chips {
	justify-content: flex-start;
	margin-top: 24px;
}

/* LEGAL
* SECTION STYLES */
.css-legal {
	background: var(--c-white, #fff);
}

/* LEGAL
* INNER LAYOUT */
.css-legal__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

/* LEGAL
* BODY CONTENT */
.css-legal__body {
	min-width: 0;
	font-size: 16px;
	line-height: 1.65;
}

/* LEGAL
* CONTENT SECTIONS */
.css-legal__section {
	padding-bottom: 34px;
	margin-bottom: 34px;
	border-bottom: 1px solid var(--c-grey-border, #c5c5c5);
}

/* LEGAL
* CONTENT SECTIONS LAST */
.css-legal__section:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}

/* LEGAL
* CONTENT HEADINGS */
.css-legal__body h4 {
	margin: 0 0 14px;
	color: var(--c-dark, #242128);
	font-size: clamp(20px, 2vw, 24px);
	line-height: 1.2;
}

/* LEGAL
* CONTENT COPY */
.css-legal__section-body p {
	margin: 0 0 16px;
}

/* LEGAL
* CONTENT COPY LAST */
.css-legal__section-body p:last-child {
	margin-bottom: 0;
}

/* LEGAL
* SIDEBAR */
.css-legal__sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 0;
	align-self: start;
}

/* LEGAL
* PAGES CARD */
.css-legal__pages-card {
	width: 100%;
	max-width: 400px;
	padding: 28px;
	margin-left: auto;
	border: 1px solid var(--c-grey-border, #c5c5c5);
	border-radius: 24px;
	background: var(--c-grey-light, #f5f5f5);
}

/* LEGAL
* PAGES CARD HEADING */
.css-legal__pages-card h3 {
	margin: 0 0 16px;
	color: var(--c-dark, #242128);
	font-size: 20px;
	line-height: 1.2;
}

/* LEGAL
* PAGES LIST */
.css-legal__pages-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* LEGAL
* PAGES LIST ITEM */
.css-legal__pages-card li {
	margin: 0 0 8px;
}

/* LEGAL
* PAGES LIST ITEM LAST */
.css-legal__pages-card li:last-child {
	margin-bottom: 0;
}

/* LEGAL
* PAGES LINKS */
.css-legal__pages-card a {
	color: var(--c-body, #3f3f3f);
	font-size: 16px;
	line-height: 1.45;
	text-decoration: none;
}

/* LEGAL
* PAGES LINKS ACTIVE */
.css-legal__pages-card li.is-active a,
.css-legal__pages-card a:hover {
	color: var(--c-dark, #242128);
}

/* LEGAL
* CONTACT CARD */
.css-legal__contact-card {
	display: grid;
	grid-template-columns: 118px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	width: 100%;
	max-width: 400px;
	padding: 22px;
	margin-left: auto;
	border-radius: 24px;
	background: var(--c-dark, #242128);
	color: var(--c-white, #fff);
}

/* LEGAL
* CONTACT IMAGE */
.css-legal__contact-image {
	width: 100%;
	aspect-ratio: 1 / 1.15;
	overflow: hidden;
	border-radius: 10px;
	background: var(--c-white, #fff);
}

/* LEGAL
* CONTACT IMAGE MEDIA */
.css-legal__contact-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* LEGAL
* CONTACT CONTENT */
.css-legal__contact-content {
	min-width: 0;
}

/* LEGAL
* CONTACT INTRO */
.css-legal__contact-intro {
	max-width: 220px;
	margin: 0 0 16px;
	color: var(--c-white, #fff);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

/* LEGAL
* PHONE LINK */
.css-legal__phone {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--c-white, #fff);
	text-decoration: none;
}

/* LEGAL
* PHONE ICON */
.css-legal__phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	border-radius: 50%;
	background: var(--c-primary, #edcb20);
	color: var(--c-dark, #242128);
	font-size: 18px;
}

/* LEGAL
* PHONE TEXT */
.css-legal__phone-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 13px;
	line-height: 1.2;
}

/* LEGAL
* PHONE NUMBER */
.css-legal__phone-text strong {
	color: var(--c-white, #fff);
	font-size: 19px;
	font-weight: 800;
	line-height: 1.05;
}

/* LEGAL
* BREAKPOINT: 1100PX */
@media (min-width: 1100px) {
	.css-legal__inner {
		grid-template-columns: minmax(0, 1fr) 400px;
		gap: 58px;
	}

	.css-legal__sidebar {
		position: sticky;
		top: 120px;
	}
}

/* LEGAL
* BREAKPOINT: 900PX */
@media (max-width: 900px) {
	.css-legal__pages-card,
	.css-legal__contact-card {
		max-width: none;
		margin-left: 0;
	}
}

/* LEGAL
* BREAKPOINT: 600PX */
@media (max-width: 600px) {
	.css-legal__pages-card,
	.css-legal__contact-card {
		padding: 22px;
		border-radius: 22px;
	}

	.css-legal__contact-card {
		grid-template-columns: 110px minmax(0, 1fr);
	}

	.css-legal__contact-intro {
		max-width: none;
	}
}

/* COURSE SINGLE
* SECTION STYLES */

/* COURSE SINGLE
* HERO LAYOUT */
.css-course-single__hero {
	background: var(--c-white, #fff);
}

/* COURSE SINGLE
* TITLE ROW */
.css-course-single__title-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-bottom: 36px;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-course-single__title-row {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
		align-items: end;
	}
}

.css-course-single__intro {
	color: var(--c-grey-text, #6b6875);
	font-size: 16px;
	line-height: 1.7;
	margin: 0;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-course-single__intro {
		padding-bottom: 6px;
	}
}

/* COURSE SINGLE
* MAIN AND SIDEBAR LAYOUT */
.css-course-single__layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: start;
}

/* RESPONSIVE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-course-single__layout {
		grid-template-columns: 1fr 400px;
		gap: 48px;
	}
}

/* COURSE SINGLE
* GALLERY */
.css-course-single__gallery {
	border-radius: var(--radius-card, 30px);
	overflow: hidden;
	aspect-ratio: 16/9;
	background: #c8c8c8;
}

.css-course-single__gallery.is-placeholder {
	background: var(--c-grey-mid, #e0e0e0);
}

.css-course-single__gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* COURSE SINGLE
* META TILES */
.css-course-single__meta {
	list-style: none;
	padding: 0;
	margin: 20px 0 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.css-course-single__meta li {
	background: var(--c-grey-light, #f5f5f5);
	border-radius: 12px;
	padding: 14px 16px;
}

.css-course-single__meta strong {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--c-grey-text, #6b6875);
	margin-bottom: 4px;
	font-weight: 600;
}

.css-course-single__meta span {
	color: var(--c-dark, #242128);
	font-weight: 600;
	font-size: 15px;
}

/* COURSE SINGLE
* BOOKING CARD */
.css-booking-card {
	background: var(--c-dark, #242128);
	color: var(--c-white);
	border-radius: var(--radius-card, 30px);
	padding: 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.css-booking-card__next {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(255,255,255,.12);
}

.css-booking-card__next-label {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255,255,255,.55);
	margin-bottom: 4px;
}

.css-booking-card__next-date {
	font-size: 20px;
	font-weight: 700;
	color: var(--c-white);
}

.css-booking-card__spaces {
	background: var(--c-primary, #edcb20);
	color: var(--c-dark, #242128);
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
	white-space: nowrap;
}

.css-booking-card__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.css-booking-card__actions .css-btn {
	width: 100%;
	justify-content: center;
	text-align: center;
}

.css-booking-card__min {
	font-size: 14px;
	color: rgba(255,255,255,.65);
	margin: 0;
}

.css-booking-card__ireland {
	border-top: 1px solid rgba(255,255,255,.12);
	padding-top: 16px;
	font-size: 14px;
}

.css-booking-card__ireland strong {
	display: block;
	margin-bottom: 6px;
	color: var(--c-primary, #edcb20);
}

.css-booking-card__ireland p {
	color: rgba(255,255,255,.7);
	margin: 0;
	font-size: 13px;
	line-height: 1.6;
}

/* COURSE SINGLE
* BODY WIDTH */
.css-course-single__body-wrap {
	max-width: 800px;
}

.css-course-single__body {
	font-size: 16px;
	line-height: 1.8;
}

.css-course-single__body p {
	margin: 0 0 1em;
}

/* COURSE SINGLE
* CONTENT MODULES */
.css-course-modules {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-course-modules {
		grid-template-columns: repeat(2, 1fr);
	}
}

.css-course-module {
	display: flex;
	gap: 16px;
	background: var(--c-grey-light);
	padding: 22px;
	border-radius: 18px;
}

.css-module-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--c-primary);
	color: var(--c-dark, #242128);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

/* COURSE SINGLE
* UPCOMING DATES */
.css-course-dates {
	list-style: none;
	padding: 0;
	margin: 0;
}

.css-course-dates li {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
	padding: 16px;
	border-bottom: 1px solid var(--c-grey-mid, #e0e0e0);
}

/* RESPONSIVE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-course-dates li {
		grid-template-columns: repeat(4, 1fr);
		align-items: center;
	}
}

/* COURSE SINGLE
* OTHER COURSES */
.css-course-single__other {
	background: var(--c-dark, #242128);
	color: var(--c-white);
}

.css-course-single__other h2 {
	color: var(--c-white);
}

.css-course-single__other .css-carousel-arrows button {
	border-color: rgba(255,255,255,.3);
	color: var(--c-white);
}

.css-course-single__other .css-carousel-arrows button:hover {
	border-color: var(--c-primary);
	background: var(--c-primary);
	color: var(--c-dark);
}

/* RESOURCE SINGLE
* HERO */
.css-resource-single__hero {
	position: relative;
	min-height: clamp(420px, 52vw, 620px);
	display: flex;
	align-items: flex-end;
	background-color: var(--c-dark, #242128);
	background-position: center;
	background-size: cover;
	color: var(--c-white);
	overflow: hidden;
}

/* RESOURCE SINGLE
* HERO OVERLAY */
.css-resource-single__hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(36, 33, 40, .1) 0%, rgba(36, 33, 40, .64) 58%, rgba(36, 33, 40, .88) 100%);
	pointer-events: none;
}

/* RESOURCE SINGLE
* HERO INNER */
.css-resource-single__hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 170px;
	padding-bottom: 58px;
}

/* RESOURCE SINGLE
* HERO CONTENT */
.css-resource-single__hero-content {
	max-width: 100%;
}

/* RESOURCE SINGLE
* CATEGORY TAG */
.css-resource-single__hero .css-resource-card__tag {
	margin: 0 0 18px;
}

/* RESOURCE SINGLE
* HERO TITLE */
.css-resource-single__hero h1 {
	max-width: 760px;
	margin: 0;
	color: var(--c-white);
	font-size: clamp(36px, 6vw, 72px);
	line-height: 1;
}

/* RESOURCE SINGLE
* HERO BOTTOM */
.css-resource-single__hero-bottom {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 40px;
	margin-top: 24px;
}

/* RESOURCE SINGLE
* HERO DESCRIPTION */
.css-resource-single__description {
	max-width: 640px;
	font-size: clamp(16px, 1.35vw, 20px);
	line-height: 1.45;
	color: rgba(255, 255, 255, .86);
}

.css-resource-single__description p {
	margin: 0;
}

/* RESOURCE SINGLE
* META */
.css-resource-single__meta {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	gap: clamp(18px, 3vw, 44px);
	min-width: min(100%, 520px);
	color: var(--c-white);
}

/* RESOURCE SINGLE
* META ITEM */
.css-resource-single__meta-item {
	display: grid;
	gap: 7px;
	font-size: 14px;
	line-height: 1.2;
}

/* RESOURCE SINGLE
* META LABEL */
.css-resource-single__meta-label {
	font-size: 13px;
	font-weight: 700;
	color: rgba(255, 255, 255, .72);
}

/* RESOURCE SINGLE
* META VALUE */
.css-resource-single__meta-value {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 15px;
	font-weight: 600;
	color: var(--c-white);
	white-space: nowrap;
}

/* RESOURCE SINGLE
* META IMAGE
* Doubled selector so the fixed height outranks the global `.css-safety img
* { height: auto }` reset regardless of source order; flex: 0 0 auto so the
* avatar can never be squeezed by the name beside it. */
.css-resource-single__meta .css-resource-single__meta-value img {
	width: 28px;
	height: 28px;
	aspect-ratio: 1 / 1;
	flex: 0 0 28px;
	border-radius: 50%;
	object-fit: cover;
}

/* RESOURCE SINGLE
* BODY WRAP */
.css-resource-single__body-wrap {
	display: grid;
	grid-template-columns: 1fr;
	gap:0px;
	align-items: start;
    max-width:1250px;
    width:calc(100% - 60px);
}

/* RESOURCE SINGLE
* BODY */
.css-resource-single__body {
	background: var(--c-white);
	font-size: 16px;
	line-height: 1.65;
	color: var(--c-text, #242128);
}

/* RESOURCE SINGLE
* BLOCK HEADINGS */
.css-resource-single__block-heading {
	grid-column: 1 / -1;
	margin: 0 0 10px;
    font-size:clamp(24px,4vw,30px);
	line-height: 1.1;
	color: var(--c-dark, #242128);
}

.css-resource-single__block-heading + .css-resource-single__text {
	margin-top: 0;
}

/* RESOURCE SINGLE
* TEXT BLOCKS */
.css-resource-single__text {
	margin: 0 0 30px;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(36, 33, 40, .78);
}

.css-resource-single__text p {
	margin: 0 0 18px;
}

.css-resource-single__text p:last-child {
	margin-bottom: 0;
}

.css-resource-single__text--intro {
	font-size: 17px;
    margin-bottom:30px;
}

/* RESOURCE SINGLE
* FIGURES */
.css-resource-single__figure {
	margin: 10px 0 8px;
}

.css-resource-single__figure img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 330px;
	border-radius: 12px;
	object-fit: cover;
}

/* RESOURCE SINGLE
* WIDE FIGURE */
.css-resource-single__figure--wide {
	grid-column: 1 / -1;
    margin-bottom:30px;
}

.css-resource-single__figure--wide img {
	min-height: clamp(360px, 34vw, 520px);
}

/* RESOURCE SINGLE
* HALF FIGURE */
.css-resource-single__figure--half {
	grid-column: span 1;
}

/* RESOURCE SINGLE
* QUOTE */
.css-resource-single__quote {
	grid-column: 1 / -1;
	margin: 12px 0;
	padding: 28px 32px;
	border-left: 5px solid var(--c-primary, #edcb20);
	border-radius: 12px;
	background: var(--c-grey-light, #f5f5f5);
	font-size: clamp(20px, 2vw, 28px);
	font-style: italic;
	line-height: 1.35;
	color: var(--c-dark, #242128);
}

.css-resource-single__quote p {
	margin: 0;
}

.css-resource-single__quote cite {
	display: block;
	margin-top: 12px;
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	color: rgba(36, 33, 40, .7);
}

/* RESOURCE SINGLE
* RELATED */
.css-resource-single__related {
	background: var(--c-grey-light, #f5f5f5);
}
.css-resource-single__related h2 {
	margin-bottom:30px;
	font-size:clamp(30px,4vw,35px);
}
.css-resource-single__related .css-resource-card__meta {
background:white;
}
/* RESOURCE SINGLE
* BREAKPOINT: 1100PX */
@media (max-width: 1100px) {
	.css-resource-single__hero-bottom {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.css-resource-single__meta {
		justify-content: flex-start;
		flex-wrap: wrap;
		min-width: 0;
	}
}

/* RESOURCE SINGLE
* BREAKPOINT: 900PX */
@media (max-width: 900px) {
	.css-resource-single__body-wrap {
		grid-template-columns: 1fr;
	}

	.css-resource-single__figure--half {
		grid-column: 1 / -1;
	}

	.css-resource-single__figure img,
	.css-resource-single__figure--wide img {
		min-height: 280px;
	}
}

/* RESOURCE SINGLE
* BREAKPOINT: 600PX */
@media (max-width: 600px) {
	.css-resource-single__hero {
		min-height: 520px;
	}

	.css-resource-single__hero-inner {
		padding-top: 130px;
		padding-bottom: 42px;
	}

	.css-resource-single__meta {
		display: grid;
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.css-resource-single__meta-value {
		white-space: normal;
	}

	.css-resource-single__figure img,
	.css-resource-single__figure--wide img {
		min-height: 230px;
	}
}

/* COURSES GRID (CATEGORY PAGE)
* SECTION STYLES */
.css-courses-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

/* RESPONSIVE
* BREAKPOINT: 600PX */
@media (min-width: 600px) {
	.css-courses-grid--cols-2,
.css-courses-grid--cols-3,
.css-courses-grid--cols-4 {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* RESPONSIVE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-courses-grid--cols-3 {
		grid-template-columns: repeat(3, 1fr);
	}

.css-courses-grid--cols-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* EDIT PENCIL (ADMIN ONLY)
* SECTION STYLES */
.css-edit-pencil {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 4;
	background: rgba(255,184,0,.9);
	color: var(--c-black);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 16px;
	opacity: 0;
	transition: opacity .2s ease;
}

.css-section:hover .css-edit-pencil {
	opacity: 1;
}

/* RESOURCES BOTTOM CTA
* SECTION STYLES */
.css-resources-cta {
	background: var(--c-dark, #242128);
	color: var(--c-white);
	text-align: center;
}

.css-resources-cta h2 {
	color: var(--c-white);
}

.css-resources-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
/* CONSULTANCY CAROUSEL
* DESKTOP FOUR CARD LAYOUT */
.css-carousel--dark .css-carousel__item {
	flex: 0 0 calc(100% - 8px);
}

/* CONSULTANCY CAROUSEL
* BREAKPOINT: 600PX */
@media (min-width: 600px) {
	.css-carousel--dark .css-carousel__item {
		flex-basis: calc(50% - 10px);
	}
}

/* CONSULTANCY CAROUSEL
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-carousel--dark .css-carousel__item {
		flex-basis: calc(33.333% - 14px);
	}
}

/* CONSULTANCY CAROUSEL
* BREAKPOINT: 1200PX */
@media (min-width: 1200px) {
	.css-carousel--dark .css-carousel__item {
		flex-basis: calc(25% - 15px);
	}
}
/* ABOUT MERGED SECTION
* OUTER SECTION */
.css-home-about {
	background: var(--c-grey-light, #f5f5f5);
	color: var(--c-white, #fff);
}

/* ABOUT MERGED SECTION
* DARK PANEL */
.css-home-about__panel {
	position: relative;
	overflow: hidden;
	background: var(--c-dark, #242128);
	border-radius: 30px;
	padding: 40px;
}

.css-home-about__panel::before {
	content: '';
	position: absolute;
	left: -180px;
	top: -130px;
	width: 620px;
	height: 620px;
	background-image: url(/wp-content/uploads/2026/06/css-icon-white.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: .06;
	pointer-events: none;
}

/* ABOUT MERGED SECTION
* TOP GRID */
.css-home-about__top {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
}

.css-home-about__top.has-media {
	align-items: center;
}

/* ABOUT MERGED SECTION
* CONTENT COLUMN */
.css-home-about__copy {
	position: relative;
	z-index: 1;
	max-width: 500px;
	margin: 0 auto;
}

.css-home-about__copy .css-eyebrow {
	color: rgba(255, 255, 255, .62);
}

.css-home-about__copy h2 {
	color: var(--c-primary, #edcb20);
}

.css-home-about__body {
	color: rgba(255, 255, 255, .7);
	font-size: 16px;
	line-height: 1.65;
}

/* ABOUT MERGED SECTION
* MEDIA STACK */
.css-home-about__media-stack {
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-height: 700px;
}

.css-home-about__video-tile,
.css-home-about__image-tile {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: var(--radius-card, 30px);
	background: rgba(255, 255, 255, .08);
}

.css-home-about__video-tile {
	flex: 0 0 calc(60% - 10px);
}

.css-home-about__image-tile {
	flex: 0 0 calc(40% - 10px);
}

/* ABOUT MERGED SECTION
* TILE IMAGERY
* Out of flow inside the tile, so the photograph's own proportions can never
* set the tile height. Focal point sits above centre — the trainer and
* delegates occupy the upper half of these frames. */
.css-home-about__image-tile img,
.css-home-about__video-tile img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 38%;
	border-radius: 0;
}

/* ABOUT MERGED SECTION
* SHORT TILE FOCAL POINT
* The lower tile is the wide one (40% of the stack), so it crops hardest
* vertically — roughly a quarter of the frame's height is lost. Pulling the
* focal point up keeps the trainer's head inside the crop instead of slicing
* it at the top edge. */
.css-home-about__image-tile img {
	object-position: center 22%;
}

.css-home-about .css-video-embed {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	padding-top: 0;
	border-radius: inherit;
	overflow: hidden;
	background: var(--c-dark, #242128);
}

.css-home-about .css-video-embed iframe,
.css-home-about .css-training-video__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* ABOUT MERGED SECTION
* WHY CHOOSE US CARD GRID */
.css-home-about__wcu-grid {
	position: relative;
	width: 100%;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 20px;
}

.css-home-about__wcu-card {
	min-width: 0;
	display: grid;
	grid-template-columns: 72px 1fr;
	grid-template-rows: auto auto;
	column-gap: 18px;
	row-gap: 16px;
	align-items: start;
	background: var(--c-white, #fff);
	color: var(--c-dark, #242128);
	border-radius: 24px;
	padding: 28px;
}

.css-home-about__wcu-icon {
	width: 72px;
	height: 72px;
	border-radius: 18px;
	background: var(--c-dark, #242128);
	color: var(--c-primary, #edcb20);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.css-home-about__wcu-icon .css-feature-icon__fa {
	font-size: 32px;
	line-height: 1;
}

.css-home-about__wcu-content {
	display: contents;
}

.css-home-about__wcu-content h3 {
	grid-column: 2;
	grid-row: 1;
	align-self: center;
	font-size: clamp(22px, 2vw, 30px);
	line-height: 1.05;
    max-width:200px;
	margin: 0;
	color: var(--c-dark, #242128);
}

.css-home-about__wcu-content p {
	grid-column: 1 / -1;
	grid-row: 2;
	font-size: 15px;
	line-height: 1.55;
	color: rgba(36, 33, 40, .68);
	margin: 0;
}

/* ABOUT MERGED SECTION
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-home-about__wcu-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ABOUT MERGED SECTION
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-home-about__top.has-media {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 60px;
	}

	.css-home-about__wcu-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

/* ABOUT MERGED SECTION
* BREAKPOINT: 1200PX */
@media (min-width: 1200px) {
	.css-home-about__top.has-media {
		gap: 80px;
	}

	.css-home-about__wcu-grid {
		margin-top: 20px;
	}
}


/* ABOUT MERGED SECTION
* BREAKPOINT: 1199PX */
@media (max-width: 1199px) {
	.css-home-about__media-stack {
		min-height: 620px;
	}
}

/* ABOUT MERGED SECTION
* BREAKPOINT: 991PX */
@media (max-width: 991px) {
	.css-home-about__top {
		gap: 36px;
	}

	.css-home-about__copy {
		max-width: none;
		margin: 0;
	}

	.css-home-about__media-stack {
		min-height: auto;
	}

	.css-home-about__video-tile {
		flex: none;
		aspect-ratio: 16 / 10;
	}

	.css-home-about__image-tile {
		flex: none;
		aspect-ratio: 16 / 8.5;
	}
}

/* ABOUT MERGED SECTION
* BREAKPOINT: 767PX */
@media (max-width: 767px) {
	.css-home-about__panel {
		border-radius: 24px;
		padding: 36px 24px;
	}

	.css-home-about__media-stack {
		min-height: auto;
	}

	.css-home-about__video-tile {
		flex: none;
		aspect-ratio: 16 / 10;
	}

	.css-home-about__image-tile {
		flex: none;
		aspect-ratio: 16 / 8.5;
	}

	.css-home-about__wcu-card {
		grid-template-columns: 60px 1fr;
		padding: 24px;
	}

	.css-home-about__wcu-icon {
		width: 60px;
		height: 60px;
		border-radius: 16px;
	}

	.css-home-about__wcu-icon .css-feature-icon__fa {
		font-size: 26px;
	}
}
/* ABOUT MERGED SECTION
* MEDIA STACK HEIGHT
*
* 700px is a floor, not a fixed height: the stack stretches to the grid row so
* that a copy column longer than 700px pulls the media up with it rather than
* leaving the tiles finishing short of the text. The copy stays optically
* centred against the stack — only the media is stretched. */
.css-home-about__media-stack {
	align-self: stretch;
	height: 100%;
	min-height: 700px;
}

.css-home-about__video-tile,
.css-home-about__image-tile {
	min-height: 0;
}

.css-home-about__video-tile {
	flex: 1 1 60%;
}

.css-home-about__image-tile {
	flex: 1 1 40%;
}

.css-home-about__video-tile .css-video-embed,
.css-home-about__video-tile iframe {
	display: block;
}

.css-home-about__video-tile .css-training-video__cover:empty {
	display: none;
}

/* ABOUT MERGED SECTION
* BREAKPOINT: 1199PX */
@media (max-width: 1199px) {
	.css-home-about__media-stack {
		height: 100%;
		min-height: 620px;
	}
}

/* ABOUT MERGED SECTION
* BREAKPOINT: 991PX
* Stacked: the stack stops stretching and the tiles fall back to their own
* controlled ratios, so a long copy column cannot drag the photography into an
* absurdly tall crop. */
@media (max-width: 991px) {
	.css-home-about__media-stack {
		align-self: auto;
		height: auto;
		min-height: 0;
	}

	.css-home-about__video-tile {
		flex: none;
		aspect-ratio: 16 / 10;
	}

	.css-home-about__image-tile {
		flex: none;
		aspect-ratio: 16 / 8.5;
	}
}
/* COURSE SINGLE
* PAGE WRAPPER */
.css-course-single__hero {
	background: var(--c-white, #ffffff);
}

/* COURSE SINGLE
* TITLE ROW */
.css-course-single__title-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
	align-items: end;
	margin-bottom: 30px;
}

/* COURSE SINGLE
* INTRO */
.css-course-single__intro {
	margin: 0;
	color: var(--c-grey-text, #6b6875);
	font-size: 16px;
	line-height: 1.6;
}

/* COURSE SINGLE
* MAIN GRID */
.css-course-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

/* COURSE SINGLE
* MAIN COLUMN */
.css-course-single__main {
	min-width: 0;
}

/* COURSE SINGLE
* SIDEBAR COLUMN */
.css-course-single__sidebar {
	min-width: 0;
}

/* COURSE SINGLE
* SIDEBAR STICKY */
.css-course-single__sidebar-sticky {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* COURSE SINGLE
* GALLERY GRID */
.css-course-single__gallery-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
	margin-bottom: 16px;
}

/* COURSE SINGLE
* GALLERY ITEM */
.css-course-single__gallery-item {
	min-width: 0;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	border-radius: 10px;
	background: var(--c-grey-light, #f5f5f5);
	aspect-ratio: 16 / 10;
}

/* COURSE SINGLE
* GALLERY LEAD ITEM */
.css-course-single__gallery-item--lead {
	aspect-ratio: 16 / 10;
}

/* COURSE SINGLE
* GALLERY IMAGE */
.css-course-single__gallery-item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* COURSE SINGLE
* META TILES */
.css-course-single__meta {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 8px;
}

/* COURSE SINGLE
* META TILE */
.css-course-single__meta li {
	background: var(--c-grey-light, #f5f5f5);
	border: 1px solid var(--c-grey-border, #c5c5c5);
	border-radius: 8px;
	padding: 14px 16px;
}

/* COURSE SINGLE
* META LABEL */
.css-course-single__meta strong {
	display: block;
	margin-bottom: 4px;
	color: var(--c-dark, #242128);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

/* COURSE SINGLE
* META VALUE */
.css-course-single__meta span {
	display: block;
	color: var(--c-grey-text, #6b6875);
	font-size: 14px;
	font-weight: 600;
}

/* COURSE SINGLE
* CONTENT SECTION */
.css-course-single__content-section {
	margin-top: 40px;
}

/* COURSE SINGLE
* CONTENT SECTION HEADING */
.css-course-single__content-section h2 {
	margin: 0 0 16px;
    font-size:clamp(20px,4vw,24px);
    line-height:1.1;
}

/* COURSE SINGLE
* BODY */
.css-course-single__body {
	font-size: 16px;
	line-height: 1.75;
	color: var(--c-grey-text, #6b6875);
}

/* COURSE SINGLE
* BODY PARAGRAPH */
.css-course-single__body p {
	margin: 0 0 1em;
}

/* COURSE SINGLE
* DETAILS SUBSECTION
* Accreditation / About this course sit under the Course Details heading as
* distinct subsections. Each is rendered only when its field has content, so
* the spacing here never applies to an empty block. */
.css-course-single__subsection {
	margin-top: 24px;
	padding-top: 22px;
	border-top: 1px solid var(--c-border, rgba(36, 33, 40, .1));
}

/* COURSE SINGLE
* DETAILS SUBSECTION HEADING */
.css-course-single__subheading {
	margin: 0 0 10px;
	font-size: clamp(17px, 2.4vw, 19px);
	line-height: 1.2;
	color: var(--c-heading, #242128);
}

/* COURSE SINGLE
* DETAILS SUBSECTION LAST PARAGRAPH
* Trims the trailing paragraph margin so subsections don't stack up height. */
.css-course-single__subsection .css-course-single__body > p:last-child {
	margin-bottom: 0;
}

/* COURSE SINGLE
* MODULE GRID */
.css-course-modules {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
}

/* COURSE SINGLE
* MODULE CARD */
.css-course-module {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 18px;
	border: 1px solid var(--c-grey-border, #c5c5c5);
	border-radius: 8px;
	background: var(--c-grey-light, #f5f5f5);
	color: var(--c-dark, #242128);
}

/* COURSE SINGLE
* FEATURED MODULE CARD */
.css-course-module.is-featured {
	background: var(--c-dark, #242128);
	border-color: var(--c-dark, #242128);
	color: var(--c-white, #ffffff);
}

/* COURSE SINGLE
* MODULE ICON */
.css-module-icon {
	width: 58px;
	height: 58px;
	border-radius: 6px;
	flex: 0 0 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--c-dark, #242128);
	color: var(--c-primary, #edcb20);
	font-size: 24px;
}

/* COURSE SINGLE
* FEATURED MODULE ICON */
.css-course-module.is-featured .css-module-icon {
	background: var(--c-white, #ffffff);
	color: var(--c-dark, #242128);
}

/* COURSE SINGLE
* FONT AWESOME UNICODE */
.css-fa-unicode {
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	line-height: 1;
}

/* COURSE SINGLE
* MODULE TITLE */
.css-course-module h3 {
	margin: 0 0 3px;
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.15;
	color: inherit;
}

/* COURSE SINGLE
* MODULE TEXT */
.css-course-module p {
	margin: 0;
	color: inherit;
	font-size: 14px;
	line-height: 1.45;
	opacity: 0.76;
}

/* COURSE SINGLE
* BOOKING CARD */
.css-booking-card {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 16px;
	border: 1px solid var(--c-grey-border, #c5c5c5);
	border-radius: 10px;
	background: var(--c-grey-light, #f5f5f5);
	color: var(--c-dark, #242128);
}

/* COURSE SINGLE
* NEXT COURSE */
.css-booking-card__next {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	border: 0;
	border-radius: 8px;
	background: var(--c-dark, #242128);
	color: var(--c-white, #ffffff);
}

/* COURSE SINGLE
* NEXT COURSE LABEL */
.css-booking-card__next-label {
	display: block;
	margin-bottom: 4px;
	color: var(--c-primary, #edcb20);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

/* COURSE SINGLE
* NEXT COURSE DATE */
.css-booking-card__next-date {
	color: var(--c-white, #ffffff);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.1;
}

/* COURSE SINGLE
* SPACES PILL */
.css-booking-card__spaces {
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--c-white, #ffffff);
	color: var(--c-dark, #242128);
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

/* COURSE SINGLE
* DATE LIST */
.css-booking-card__dates {
	padding: 12px 14px;
	border-radius: 8px;
	background: var(--c-white, #ffffff);
}

/* COURSE SINGLE
* DATE LIST TITLE */
.css-booking-card__dates > strong {
	display: block;
	margin-bottom: 8px;
	font-size: 14px;
}

/* COURSE SINGLE
* DATE ROW */
.css-booking-card__date-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
	border-top: 1px solid var(--c-grey-light, #f5f5f5);
	font-size: 13px;
}

/* COURSE SINGLE
* BOOKING ACTIONS */
.css-booking-card__actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* COURSE SINGLE
* BOOKING BUTTON */
.css-booking-card__actions .css-btn {
	width: 100%;
	justify-content: center;
	text-align: center;
}

/* COURSE SINGLE
* MINIMUM BOOKING */
.css-booking-card__min {
	margin: 0;
	color: var(--c-grey-text, #6b6875);
	font-size: 13px;
	line-height: 1.5;
}

/* COURSE SINGLE
* IRELAND CARD */
.css-course-ireland-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px;
	border: 1px solid var(--c-grey-border, #c5c5c5);
	border-radius: 10px;
	background: var(--c-grey-light, #f5f5f5);
	color: var(--c-dark, #242128);
}

/* COURSE SINGLE
* IRELAND ICON */
.css-course-ireland-card__icon {
	width: 58px;
	height: 58px;
	border-radius: 10px;
	flex: 0 0 58px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--c-dark, #242128);
	color: var(--c-primary, #edcb20);
	font-size: 25px;
}

/* COURSE SINGLE
* IRELAND TITLE */
.css-course-ireland-card strong {
	display: block;
	margin-bottom: 6px;
	font-size: 17px;
	line-height: 1.2;
}

/* COURSE SINGLE
* IRELAND TEXT */
.css-course-ireland-card p {
	margin: 0;
	color: var(--c-grey-text, #6b6875);
	font-size: 14px;
	line-height: 1.55;
}

/* COURSE SINGLE
* BREAKPOINT: 640PX */
@media (min-width: 640px) {
	.css-course-single__meta {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* COURSE SINGLE
* BREAKPOINT: 768PX */
@media (min-width: 768px) {
	.css-course-single__title-row {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
		gap: 54px;
	}

	.css-course-single__gallery-grid {
		grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
		grid-template-rows: repeat(3, minmax(0, 1fr));
	}

	.css-course-single__gallery-item {
		aspect-ratio: auto;
	}

	.css-course-single__gallery-item--lead {
		grid-row: span 3;
		min-height: 360px;
	}

	/* COURSE SINGLE
	* GALLERY: FEWER THAN FOUR IMAGES
	* The four-up layout is a 2-column grid with the lead spanning three rows.
	* With fewer images that leaves empty cells, so the grid is re-shaped to the
	* number actually supplied rather than stretching or padding the images. */
	.css-course-single__gallery-grid--count-1 {
		grid-template-columns: minmax(0, 1fr);
		grid-template-rows: auto;
	}

	.css-course-single__gallery-grid--count-1 .css-course-single__gallery-item--lead {
		grid-row: auto;
		aspect-ratio: 16 / 9;
		min-height: 0;
	}

	.css-course-single__gallery-grid--count-2 {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-rows: auto;
	}

	.css-course-single__gallery-grid--count-2 .css-course-single__gallery-item {
		aspect-ratio: 4 / 3;
	}

	.css-course-single__gallery-grid--count-2 .css-course-single__gallery-item--lead {
		grid-row: auto;
		min-height: 0;
	}

	.css-course-single__gallery-grid--count-3 {
		grid-template-rows: repeat(2, minmax(0, 1fr));
	}

	.css-course-single__gallery-grid--count-3 .css-course-single__gallery-item--lead {
		grid-row: span 2;
		min-height: 300px;
	}
}

/* COURSE SINGLE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-course-single__layout {
		grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
		gap: 48px;
	}

	.css-course-single__sidebar-sticky {
		position: sticky;
		top: 120px;
	}
}

/* COURSE SINGLE
* BREAKPOINT: 1200PX */
@media (min-width: 1200px) {
	.css-course-single__layout {
		grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
		gap: 58px;
	}
}

/* COURSE SINGLE
* BREAKPOINT: 600PX */
@media (max-width: 600px) {
	.css-course-single__hero {
		padding-top: 54px;
	}

	.css-course-module,
	.css-course-ireland-card {
		align-items: flex-start;
	}

	.css-booking-card__next {
		align-items: flex-start;
		flex-direction: column;
	}
}
/* COURSE SINGLE
* STICKY SIDEBAR COLUMN */
.css-course-single__layout {
	overflow: visible;
}

/* COURSE SINGLE
* SIDEBAR COLUMN */
.css-course-single__sidebar {
	align-self: start;
}

/* COURSE SINGLE
* DATE SELECT LABEL */
.css-booking-card__dates label {
	display: block;
	margin-bottom: 8px;
	color: var(--c-dark, #242128);
	font-size: 14px;
	font-weight: 800;
}

/* COURSE SINGLE
* DATE SELECT WRAP */
.css-booking-card__select-wrap {
	position: relative;
}

/* COURSE SINGLE
* DATE SELECT */
.css-booking-card__date-select {
	width: 100%;
	min-height: 46px;
	padding: 10px 40px 10px 12px;
	border: 1px solid var(--c-grey-border, #c5c5c5);
	border-radius: 6px;
	background: var(--c-white, #ffffff);
	color: var(--c-dark, #242128);
	font-size: 14px;
	font-weight: 600;
	appearance: none;
}

/* COURSE SINGLE
* DATE SELECT ICON */
.css-booking-card__select-wrap::after {
	content: "\f107";
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: var(--c-dark, #242128);
	pointer-events: none;
}

/* COURSE SINGLE
* MODULE CARD CONSISTENCY */
.css-course-module,
.css-course-module.is-featured {
	border: 1px solid var(--c-grey-border, #c5c5c5);
	background: var(--c-grey-light, #f5f5f5);
	color: var(--c-dark, #242128);
}

/* COURSE SINGLE
* MODULE ICON CONSISTENCY */
.css-course-module .css-module-icon,
.css-course-module.is-featured .css-module-icon {
	background: var(--c-dark, #242128);
	color: var(--c-primary, #edcb20);
}

/* COURSE SINGLE
* FAQ LIST */
.css-course-single__faqs .css-faq {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 14px;
    max-width:unset;
}

/* COURSE SINGLE
* FAQ ITEM */
.css-course-single__faqs .css-faq__item {
	overflow: hidden;
	border: 1px solid var(--c-grey-border, #c5c5c5);
	border-radius: 8px;
	background: var(--c-grey-light, #f5f5f5);
}

/* COURSE SINGLE
* FAQ QUESTION */
.css-course-single__faqs .css-faq__q {
	width: 100%;
	min-height: 74px;
	padding: 20px 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	border: 0;
	background: transparent;
	color: var(--c-dark, #242128);
	font-size: clamp(18px, 2vw, 22px);
	font-weight: 500;
	line-height: 1.25;
	text-align: left;
	cursor: pointer;
}

/* COURSE SINGLE
* FAQ ICON */
.css-course-single__faqs .css-faq__icon {
	flex: 0 0 auto;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

/* COURSE SINGLE
* FAQ ANSWER */
.css-course-single__faqs .css-faq__a {
	padding: 0 26px 22px;
	color: var(--c-grey-text, #6b6875);
	font-size: 15px;
	line-height: 1.6;
}

/* COURSE SINGLE
* FAQ OPEN ICON */
.css-course-single__faqs .css-faq__item.is-open .css-faq__icon {
	transform: rotate(45deg);
}

/* COURSE SINGLE
* BREAKPOINT: 992PX */
@media (min-width: 992px) {
	.css-course-single__sidebar {
		position: sticky;
		top: 120px;
	}

	.css-course-single__sidebar-sticky {
		position: static;
		top: auto;
	}
}
/* CONSULTANCY SERVICE TEMPLATE
* HERO */
.css-cons-single-hero {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: var(--c-dark, #242128);
	color: var(--c-white, #fff);
}

/* CONSULTANCY SERVICE TEMPLATE
* HERO BACKGROUND */
.css-cons-single-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* CONSULTANCY SERVICE TEMPLATE
* HERO OVERLAY */
.css-cons-single-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(36, 33, 40, 0.84) 0%, rgba(36, 33, 40, 0.54) 52%, rgba(36, 33, 40, 0.22) 100%);
}

/* CONSULTANCY SERVICE TEMPLATE
* HERO INNER */
.css-cons-single-hero__inner {
	position: relative;
	z-index: 1;
	padding-top: 160px;
	padding-bottom: 72px;
}

/* CONSULTANCY SERVICE TEMPLATE
* HERO CONTENT */
.css-cons-single-hero__content {
	max-width: 660px;
}

/* CONSULTANCY SERVICE TEMPLATE
* HERO HEADING */
.css-cons-single-hero__content h1 {
	margin: 0 0 18px;
	color: var(--c-white, #fff);
	font-size: clamp(42px, 6vw, 78px);
	line-height: 1;
}

/* CONSULTANCY SERVICE TEMPLATE
* HERO BODY */
.css-cons-single-hero__content p {
	max-width: 540px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 17px;
	line-height: 1.55;
}

/* CONSULTANCY SERVICE TEMPLATE
* HERO BACK LINK */
.css-cons-single-hero__back {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	color: var(--c-white, #fff);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

/* CONSULTANCY SERVICE TEMPLATE
* INTRO */
.css-cons-single-intro {
	background: var(--c-white, #fff);
}

/* CONSULTANCY SERVICE TEMPLATE
* INTRO INNER */
.css-cons-single-intro__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
	gap: 48px;
	align-items: center;
}

/* CONSULTANCY SERVICE TEMPLATE
* INTRO COPY */
.css-cons-single-intro__copy h2 {
	max-width: 720px;
	margin: 0 0 24px;
	color: var(--c-dark, #242128);
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.05;
}

/* CONSULTANCY SERVICE TEMPLATE
* INTRO BODY */
.css-cons-single-intro__body {
	max-width: 660px;
	margin-bottom: 26px;
	color: var(--c-grey-text, #5f5d66);
	font-size: 16px;
	line-height: 1.7;
}

/* CONSULTANCY SERVICE TEMPLATE
* INTRO MEDIA
*
* The slot owns its height; the photograph only fills it. Stacked (below
* 1025px) that height is a 16:10 floored at 260px; from 1025px up the grid row
* takes over — see the breakpoint below — and the ratio is released.
*
* Without the ratio here the height would come from the image's own intrinsic
* size, because the percentage height on the img below cannot resolve against
* an auto-height parent. */
.css-cons-single-intro__media {
	position: relative;
	/* An explicit width: a grid item with an aspect-ratio is start-aligned,
	* not stretched, so without one it sizes itself from the min-height
	* (260px tall at 16:10 = 416px wide) and overflows a phone screen. */
	width: 100%;
	min-width: 0;
	min-height: 260px;
	aspect-ratio: 16 / 10;
	border-radius: 20px;
	overflow: hidden;
}

/* CONSULTANCY SERVICE TEMPLATE
* INTRO IMAGE
* Taken out of flow so it can never contribute to the row's height — whatever
* its aspect ratio, it is cropped to the slot above. Focal point sits above
* centre: this photography is shot at room scale, so faces fall in the upper
* third and the lower edge is table or floor. */
.css-cons-single-intro__media img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 38%;
}

/* CONSULTANCY SERVICE TEMPLATE
* DETAILS */
.css-cons-single-details {
	background: var(--c-white, #fff);
	padding-top: 0;
}

/* CONSULTANCY SERVICE TEMPLATE
* DETAIL ROW */
.css-cons-single-detail {
	display: grid;
	grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
	margin-bottom: 72px;
}

/* CONSULTANCY SERVICE TEMPLATE
* DETAIL ROW REVERSED */
.css-cons-single-detail.is-reversed {
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
}

/* CONSULTANCY SERVICE TEMPLATE
* DETAIL ROW REVERSED MEDIA */
.css-cons-single-detail.is-reversed .css-cons-single-detail__media {
	order: 2;
}

/* CONSULTANCY SERVICE TEMPLATE
* DETAIL MEDIA
* Same contract as the intro slot above: ratio governs while stacked, the grid
* row governs from 1025px up. */
.css-cons-single-detail__media {
	position: relative;
	width: 100%; /* see .css-cons-single-intro__media */
	min-width: 0;
	min-height: 300px;
	aspect-ratio: 16 / 10;
	border-radius: 22px;
	overflow: hidden;
}

/* CONSULTANCY SERVICE TEMPLATE
* DETAIL IMAGE */
.css-cons-single-detail__media img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 38%;
}

/* CONSULTANCY SERVICE TEMPLATE
* DETAIL COPY */
.css-cons-single-detail__copy h2 {
	margin: 0 0 18px;
	color: var(--c-dark, #242128);
	font-size: clamp(28px, 3.5vw, 40px);
	line-height: 1.1;
}

/* CONSULTANCY SERVICE TEMPLATE
* DETAIL BODY */
.css-cons-single-detail__copy p {
	margin: 0 0 18px;
	color: var(--c-grey-text, #5f5d66);
	font-size: 16px;
	line-height: 1.7;
}

/* CONSULTANCY SERVICE TEMPLATE
* USPS */
.css-cons-single-usps {
	background: var(--c-grey-light, #f5f5f5);
}

/* CONSULTANCY SERVICE TEMPLATE
* USPS GRID */
.css-cons-single-usps__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

/* CONSULTANCY SERVICE TEMPLATE
* USP CARD */
.css-cons-single-usp-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 18px;
	align-items: flex-start;
	min-height: 180px;
	padding: 26px;
	border-radius: 18px;
	background: var(--c-white, #fff);
}

/* CONSULTANCY SERVICE TEMPLATE
* USP ICON */
.css-cons-single-usp-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 54px;
	border-radius: 14px;
	background: var(--c-dark, #242128);
	color: var(--c-yellow, #ffd100);
}

/* CONSULTANCY SERVICE TEMPLATE
* USP ICON FA */
.css-cons-single-usp-card__icon .css-feature-icon__fa {
	font-size: 24px;
	line-height: 1;
}

/* CONSULTANCY SERVICE TEMPLATE
* USP HEADING */
.css-cons-single-usp-card h3 {
	margin: 0 0 10px;
	color: var(--c-dark, #242128);
	font-size: clamp(21px, 2vw, 28px);
	line-height: 1.05;
}

/* CONSULTANCY SERVICE TEMPLATE
* USP BODY */
.css-cons-single-usp-card p {
	margin: 0;
	color: var(--c-grey-text, #5f5d66);
	font-size: 15px;
	line-height: 1.55;
}

/* CONSULTANCY SERVICE TEMPLATE
* FAQS */
.css-cons-single-faqs {
	background: var(--c-white, #fff);
    max-width:1250px;
	margin:0 auto;
}

/* CONSULTANCY SERVICE TEMPLATE
* FORM SECTION */
.css-cons-single-form {
	position: relative;
	background: var(--c-dark, #242128);
	color: var(--c-white, #fff);
	overflow: hidden;
}

/* CONSULTANCY SERVICE TEMPLATE
* FORM INNER */
.css-cons-single-form__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.75fr);
	gap: 54px;
	align-items: center;
}

/* CONSULTANCY SERVICE TEMPLATE
* FORM COPY */
.css-cons-single-form__copy h2 {
	margin: 0 0 18px;
	color: var(--c-white, #fff);
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1;
}

/* CONSULTANCY SERVICE TEMPLATE
* FORM COPY BODY */
.css-cons-single-form__copy p {
	max-width: 560px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 17px;
	line-height: 1.65;
}

/* CONSULTANCY SERVICE TEMPLATE
* FORM CARD */
.css-cons-single-form__card {
	background: var(--c-white, #fff);
	color: var(--c-dark, #242128);
}

/* CONSULTANCY SERVICE TEMPLATE
* BREAKPOINT: 1025PX
*
* Side by side, the copy defines the row height and the media slot stretches to
* meet it, so the photograph can never finish above the text beside it. The
* copy stays optically centred; only the media is stretched. The stacked ratio
* is released here because the row now supplies a definite height. */
@media (min-width: 1025px) {
	.css-cons-single-intro__media,
	.css-cons-single-detail__media {
		align-self: stretch;
		height: 100%;
		aspect-ratio: auto;
	}

	.css-cons-single-intro__media {
		min-height: 460px;
	}

	.css-cons-single-detail__media {
		min-height: 420px;
	}
}

/* CONSULTANCY SERVICE TEMPLATE
* BREAKPOINT: 1024PX */
@media (max-width: 1024px) {
	/* minmax(0, 1fr), not 1fr: the media slots below carry a min-height and
	* an aspect-ratio, and that pair transfers into a minimum WIDTH (260px
	* tall at 16:10 is 416px wide). A plain 1fr track honours that minimum
	* and grows past the viewport on phones; a 0 floor keeps the track at
	* the container width and the slot simply crops harder. */
	.css-cons-single-intro__inner,
	.css-cons-single-detail,
	.css-cons-single-detail.is-reversed,
	.css-cons-single-form__inner {
		grid-template-columns: minmax(0, 1fr);
	}

	.css-cons-single-intro__media,
	.css-cons-single-detail__media {
		min-width: 0;
	}

	.css-cons-single-detail.is-reversed .css-cons-single-detail__media {
		order: 0;
	}

	.css-cons-single-usps__grid {
		grid-template-columns: 1fr;
	}
}

/* CONSULTANCY SERVICE TEMPLATE
* BREAKPOINT: 767PX */
@media (max-width: 767px) {
	.css-cons-single-hero {
		min-height: 500px;
	}

	.css-cons-single-hero__inner {
		padding-top: 130px;
		padding-bottom: 52px;
	}

	.css-cons-single-detail {
		gap: 28px;
		margin-bottom: 48px;
	}

	/* Slot only — the image is absolutely positioned inside it, so a
	* min-height on the image would push it past the frame instead of
	* filling it. */
	.css-cons-single-detail__media {
		min-height: 240px;
	}

	.css-cons-single-usp-card {
		grid-template-columns: 1fr;
	}
}
/* CONSULTANCY SERVICE TEMPLATE
* PAGE HEADER OVERRIDE */
.css-cons-single-page-header {
	background: var(--c-dark, #242128);
}

/* CONSULTANCY SERVICE TEMPLATE
* PAGE HEADER CONTENT */
.css-cons-single-page-header .css-page-header__content {
	align-self: center;
}

/* CONSULTANCY SERVICE TEMPLATE
* PAGE HEADER IMAGE
* Heights live on the slot only — the image is absolutely positioned and
* cover-cropped into it, so a min-height on the image itself would push it
* past the frame instead of filling it. */
.css-cons-single-page-header .css-page-header__image {
	min-height: 520px;
}

/* CONSULTANCY SERVICE TEMPLATE
* DETAIL WITHOUT MEDIA */
.css-cons-single-detail:not(:has(.css-cons-single-detail__media)) {
	display: block;
	max-width: 980px;
}

/* CONSULTANCY SERVICE TEMPLATE
* FORM BACKGROUND */
.css-cons-single-form__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* CONSULTANCY SERVICE TEMPLATE
* FORM OVERLAY */
.css-cons-single-form__overlay {
	position: absolute;
	inset: 0;
	background: rgba(36, 33, 40, 0.76);
}

/* CONSULTANCY SERVICE TEMPLATE
* FORM INNER LAYER */
.css-cons-single-form__inner {
	position: relative;
	z-index: 1;
}

/* CONSULTANCY SERVICE TEMPLATE
* FORM DESCRIPTION */
.css-cons-single-form__desc {
	max-width: 560px;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 17px;
	line-height: 1.65;
}

/* CONSULTANCY SERVICE TEMPLATE
* FORM DESCRIPTION PARAGRAPH */
.css-cons-single-form__desc p {
	margin: 0 0 14px;
	color: inherit;
}

/* CONSULTANCY SERVICE TEMPLATE
* TRAINING BLOCK OVERRIDE */
.css-cons-single .css-training-block.css-section {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	background: var(--c-white, #fff) !important;
}

/* CONSULTANCY SERVICE TEMPLATE
* BREAKPOINT: 1024PX */
@media (max-width: 1024px) {
	.css-cons-single-page-header .css-page-header__image {
		min-height: 360px;
	}
}

/* CONSULTANCY SERVICE TEMPLATE
* BREAKPOINT: 767PX */
@media (max-width: 767px) {
	.css-cons-single-page-header .css-page-header__image {
		min-height: 280px;
	}
}
/* HEADER
* NAV ALIGNMENT */
.css-header__nav {
	justify-content: flex-end !important;
}

/* HEADER
* ACTION ORDER */
.css-header__actions {
	flex-direction: row !important;
}

/* HEADER
* PHONE ICON */
.css-header__phone-icon {
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: var(--c-primary, #edcb20);
	color: var(--c-dark, #242128);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	line-height: 1;
	opacity: 1;
	flex: 0 0 auto;
}

/* HEADER
* PHONE TEXT */
.css-header__phone-text strong {
	color: var(--c-white, #fff) !important;
}

/* FAQ ACCORDION
* SECTION STYLES */
.css-faq {
	width: 100%;
	max-width: none !important;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 16px;
}

/* FAQ ACCORDION
* ITEM */
.css-faq__item,
.css-course-single__faqs .css-faq__item {
	overflow: hidden;
	border: 1px solid var(--c-grey-border, #c5c5c5) !important;
	border-radius: 8px !important;
	background: var(--c-grey-light, #f5f5f5) !important;
}

/* FAQ ACCORDION
* QUESTION */
.css-faq__q,
.css-course-single__faqs .css-faq__q {
	width: 100%;
	min-height: 86px;
	padding: 24px 32px !important;
	border: 0 !important;
	background: transparent !important;
	color: var(--c-dark, #242128) !important;
	font-size: clamp(18px, 2vw, 22px) !important;
	font-weight: 500 !important;
	line-height: 1.25 !important;
	text-align: left;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

/* FAQ ACCORDION
* ICON */
.css-faq__icon,
.css-course-single__faqs .css-faq__icon {
	flex: 0 0 auto;
	font-size: 20px !important;
	font-weight: 600;
	line-height: 1;
	color: var(--c-dark, #242128) !important;
	transition: transform .2s ease, color .2s ease;
}

/* FAQ ACCORDION
* ANSWER */
.css-faq__a,
.css-course-single__faqs .css-faq__a {
	max-width: 860px;
	padding: 0 32px 28px !important;
	color: var(--c-grey-text, #6b6875) !important;
	font-size: 15px;
	line-height: 1.65;
}

/* FAQ ACCORDION
* OPEN STATE */
.css-faq__item.is-open .css-faq__icon,
.css-course-single__faqs .css-faq__item.is-open .css-faq__icon {
	transform: rotate(45deg);
	color: var(--c-primary, #edcb20) !important;
}

/* FAQ ACCORDION
* BREAKPOINT: 640PX */
@media (max-width: 640px) {
	.css-faq__q,
	.css-course-single__faqs .css-faq__q {
		min-height: 74px;
		padding: 20px 22px !important;
	}

	.css-faq__a,
	.css-course-single__faqs .css-faq__a {
		padding: 0 22px 24px !important;
	}
}

/* FOOTER
* LAYOUT */
.css-footer__inner {
	padding-top: 80px !important;
	padding-bottom: 56px !important;
}

/* FOOTER
* ROWS
*
* The footer is two stacked rows at every width: the brand on its own
* full-width row, then the content columns. An earlier revision of this block
* re-imposed a "brand | columns" two-column grid from 1200px up (with
* !important), which is what kept the logo sitting as a fifth column on
* desktop; the row layout defined with the footer above now stands at all
* widths, and this block only sizes the logo and the columns. */

/* FOOTER
* LOGO */
.css-footer__logo {
	max-height: 96px;
	max-width: 280px;
	width: auto;
	margin-bottom: 0;
}

/* FOOTER
* COLUMNS
*
* Four equal, fully fluid columns across the whole footer width from 992px
* — minmax(0, 1fr) rather than a 150px floor, so the grid can never be wider
* than the space it is given. Two columns between 600px and 991px, one below
* (see the breakpoints defined with the footer above). */
@media (min-width: 992px) {
	.css-footer__columns {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: clamp(32px, calc(32px + (100vw - 992px) * 0.06), 56px);
		align-items: start;
	}
}

/* FOOTER
* COLUMN CONTENT
* Columns may not grow to fit an unbreakable string; long contact details
* (an email address) wrap inside the column instead of running into the
* next one. The footer template also inserts a soft break after the "@". */
.css-footer__col {
	min-width: 0;
}

.css-footer__contact a,
.css-footer__contact address {
	overflow-wrap: anywhere;
}

/* FOOTER
* COLUMN HEADINGS */
.css-footer__col h4 {
	margin-bottom: 18px !important;
	color: var(--c-primary, #edcb20) !important;
	font-size: 16px !important;
	font-weight: 700 !important;
}

/* FOOTER
* COLUMN TEXT */
.css-footer__contact,
.css-footer__contact p,
.css-footer__contact address,
.css-footer__newsletter p {
	color: rgba(255,255,255,.62) !important;
	font-size: 15px !important;
	line-height: 1.65 !important;
}

/* FOOTER
* COLUMN LINKS
* The resting colour is deliberately not !important: an !important colour
* here would beat every :hover / :focus-visible rule, which is what stopped
* the column and contact links turning yellow. The selector is prefixed with
* .css-footer instead so it outranks the global `.css-safety a { color:
* inherit }` reset. Every footer link (columns, contact details, social
* icons, legal bar) shares the same yellow hover. */
.css-footer .css-footer__col a {
	color: rgba(255,255,255,.62);
	font-size: 15px !important;
	line-height: 1.65 !important;
	transition: color .15s ease;
}

.css-footer .css-footer__col a:hover,
.css-footer .css-footer__col a:focus-visible,
.css-footer .css-footer__contact a:hover,
.css-footer .css-footer__contact a:focus-visible,
.css-footer .css-footer__socials a:hover,
.css-footer .css-footer__socials a:focus-visible,
.css-footer .css-footer__legal a:hover,
.css-footer .css-footer__legal a:focus-visible {
	color: var(--c-primary, #edcb20);
}

/* FOOTER
* CONTACT COLUMN */
.css-footer__contact {
	margin-top: 0 !important;
	gap: 8px !important;
}

.css-footer__contact p {
	margin: 0;
}

/* FOOTER
* NEWSLETTER FORM */
.css-footer__nl-form input[type="email"] {
	min-height: 64px;
	border-radius: 8px !important;
	border: 1px solid rgba(255,255,255,.75) !important;
	background: transparent !important;
	color: var(--c-white, #fff) !important;
}

/* FOOTER
* NEWSLETTER BUTTON */
.css-footer__nl-form button {
	min-height: 56px;
	border-radius: 4px !important;
	background: var(--c-primary, #edcb20) !important;
	color: #000 !important;
	font-weight: 500 !important;
}

/* FOOTER
* BOTTOM BAR */
.css-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.12) !important;
	padding: 24px 0 !important;
}

/* FOOTER
* BACK TO TOP */
.css-footer__back-top::after {
	content: none;
}

/* FOOTER
* BREAKPOINT: 599PX */
@media (max-width: 599px) {
	.css-footer__inner {
		gap: 36px !important;
		padding-top: 56px !important;
	}
}

/* FAQ LISTING
* SECTION STYLES */
.css-faqs-listing {
	background: var(--c-white, #fff);
}

/* FAQ LISTING
* CONTAINER */
.css-faqs-listing .css-container {
	width: calc(100% - 60px);
	max-width: 1250px;
	margin: 0 auto;
	padding: 0;
}

/* FILTER CHIPS
* CHIP */
.css-chip {
	min-width: 130px;
	text-align: center;
}

/* FILTER CHIPS
* ACTIVE / HOVER */
.css-chip.is-active,
.css-chip:hover {
	background: var(--c-primary, #edcb20);
	border-color: var(--c-primary, #edcb20);
}
/* COURSE SINGLE
* BOOKING ENQUIRY FORM */
.css-booking-enquiry {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 12px;
	padding-top: 4px;
}

/* COURSE SINGLE
* BOOKING ENQUIRY FORM HIDDEN */
.css-booking-enquiry[hidden] {
	display: none;
}

/* COURSE SINGLE
* BOOKING ENQUIRY HEADER — only the Back control is visible; the heading is
* screen-reader only (the mode is already clear from the submit label). */
.css-booking-enquiry__head {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	padding: 0;
	margin-bottom: -2px;
}

/* COURSE SINGLE
* BOOKING ENQUIRY BACK */
.css-booking-enquiry__back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--c-dark, #242128);
	font-size: 13px;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
	cursor: pointer;
}

.css-booking-enquiry__back i {
	font-size: 11px;
}

/* COURSE SINGLE
* BOOKING ENQUIRY FIELD */
.css-booking-enquiry__field {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 6px;
	margin: 0;
}

/* COURSE SINGLE
* BOOKING ENQUIRY INPUTS */
.css-booking-enquiry__field input,
.css-booking-enquiry__field select,
.css-booking-enquiry__field textarea {
	width: 100%;
	min-height: 48px;
	padding: 12px 14px;
	border: 1px solid var(--c-grey-border, #c5c5c5);
	border-radius: 6px;
	background: var(--c-white, #ffffff);
	color: var(--c-dark, #242128);
	font-size: 14px;
	font-weight: 500;
	font-family: inherit;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.css-booking-enquiry__field input:focus,
.css-booking-enquiry__field select:focus,
.css-booking-enquiry__field textarea:focus {
	outline: none;
	border-color: var(--c-dark, #242128);
	box-shadow: 0 0 0 3px rgba(237, 203, 32, .45);
}

/* Validation states are rendered by the shared validator in frontend.js
* (.is-invalid on the field wrapper, aria-invalid on the control, a
* .css-field-error message) — see FORM VALIDATION below. */

/* FLOATING LABELS
* The label is a real <label for>, positioned inside the field. Empty +
* inactive it reads as a placeholder on the left; focused, populated,
* autofilled or (for selects) always, it eases to a small tag on the right
* inside the field. The control's end padding grows with the measured label
* width (--css-label-w, set by booking.js) so a long value never runs under
* the tag. */
.css-float-field {
	position: relative;
}

.css-float-field input,
.css-float-field select {
	padding-right: 14px;
}

.css-float-field label {
	position: absolute;
	top: 24px; /* half the 48px control height */
	left: 14px;
	max-width: calc(100% - 28px);
	margin: 0;
	padding: 0;
	color: rgba(36, 33, 40, .6);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	pointer-events: none;
	transform: translateY(-50%);
	transform-origin: right center;
	transition: left .22s ease, transform .22s ease, font-size .22s ease, color .22s ease, background .22s ease, padding .22s ease;
}

/* Floated: to the right, smaller, on a white chip so it stays legible over
* the value. */
.css-float-field input:focus ~ label,
.css-float-field input:not(:placeholder-shown) ~ label,
.css-float-field input:-webkit-autofill ~ label,
.css-float-field input:autofill ~ label,
.css-float-field.is-filled label,
.css-float-field--select label {
	left: calc(100% - 12px);
	transform: translate(-100%, -50%) scale(.8);
	padding: 2px 6px;
	border-radius: 4px;
	background: var(--c-white, #fff);
	color: rgba(36, 33, 40, .55);
	max-width: calc(100% - 24px);
}

.css-float-field input:focus ~ label,
.css-float-field.is-filled input:focus ~ label {
	color: var(--c-dark, #242128);
}

/* Reserve room for the floated tag so the value stays fully readable. */
.css-float-field input:focus,
.css-float-field input:not(:placeholder-shown),
.css-float-field input:-webkit-autofill,
.css-float-field input:autofill,
.css-float-field.is-filled input {
	padding-right: calc(var(--css-label-w, 96px) + 24px);
}

/* Selects show a value from the start, so the label always sits floated,
* and the chevron needs its own room beyond the tag. */
.css-float-field select {
	appearance: none;
	-webkit-appearance: none;
	padding-right: calc(var(--css-label-w, 96px) + 42px);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23242128' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 8px;
	text-overflow: ellipsis;
}

.css-float-field--select label {
	left: calc(100% - 34px);
}

/* Chrome autofill paints its own background; keep the text readable. */
.css-float-field input:-webkit-autofill {
	-webkit-text-fill-color: var(--c-dark, #242128);
	box-shadow: 0 0 0 1000px var(--c-white, #fff) inset;
}

/* Number spinner sits beside the tag rather than under it. */
.css-float-field input[type="number"] {
	-moz-appearance: textfield;
}

.css-float-field input[type="number"]::-webkit-inner-spin-button,
.css-float-field input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

@media (prefers-reduced-motion: reduce) {
	.css-float-field label {
		transition: none;
	}
}

/* COURSE SINGLE
* BOOKING GUIDANCE — below the Total; the link switches the card between the
* standard and group forms. */
.css-booking-enquiry__guidance {
	margin: 0;
	color: rgba(36, 33, 40, .7);
	font-size: 13px;
	line-height: 1.5;
}

.css-booking-enquiry__guidance a {
	color: var(--c-dark, #242128);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.css-booking-enquiry__guidance a:hover,
.css-booking-enquiry__guidance a:focus-visible {
	text-decoration-thickness: 2px;
}

.css-booking-enquiry__guidance [hidden] {
	display: none;
}

/* COURSE SINGLE
* SIDEBAR THAT NO LONGER FITS
* booking.js adds this when the sidebar (with the form open) is taller than
* the viewport; it then scrolls with the page instead of pinning its bottom
* off-screen. */
.css-course-single__sidebar.is-unsticky {
	position: static;
}

/* COURSE SINGLE
* BOOKING ENQUIRY TEXTAREA */
.css-booking-enquiry__field textarea {
	min-height: 96px;
	resize: vertical;
}

/* COURSE SINGLE
* BOOKING ENQUIRY SUBMIT */
.css-booking-enquiry__submit {
	width: 100%;
	justify-content: center;
	margin-top: 2px;
}

/* COURSE SINGLE
* BOOKING ENQUIRY PRICE */
.css-booking-enquiry__price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0;
	padding: 12px 14px;
	border-radius: 8px;
	background: var(--c-white, #ffffff);
	color: var(--c-dark, #242128);
	font-size: 14px;
}

/* COURSE SINGLE
* BOOKING ENQUIRY PRICE VALUE */
.css-booking-enquiry__price span {
	font-weight: 800;
}

/* Group enquiries have no total: the hidden attribute must win over the
* flex display above. */
.css-booking-enquiry__price[hidden] {
	display: none;
}

/* COURSE SINGLE
* BOOKING NOTICE */
.css-booking-card__notice {
	margin: 12px 0 0;
	padding: 12px 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

/* COURSE SINGLE
* BOOKING SUCCESS NOTICE */
.css-booking-card__notice--success {
	background: #e8f6ee;
	color: #17663a;
}

/* COURSE SINGLE
* BOOKING ERROR NOTICE */
.css-booking-card__notice--error {
	background: #fdecec;
	color: #8f1f1f;
}
/* COURSE BOOKING
* ENQUIRY ACTIVE STATE */
.css-booking-card.is-enquiry-active .css-booking-card__next,
.css-booking-card.is-enquiry-active .css-booking-card__dates,
.css-booking-card.is-enquiry-active .css-booking-card__actions,
.css-booking-card.is-enquiry-active .css-booking-card__price,
.css-booking-card.is-enquiry-active .css-booking-card__min {
	display: none !important;
}
/* ABOUT PAGE HERO
* SECTION */
.css-about-hero {
	position: relative;
	overflow: hidden;
	min-height: 620px;
	background-color: var(--c-dark, #242128);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	color: var(--c-white, #ffffff);
}

/* ABOUT PAGE HERO
* OVERLAY */
.css-about-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(36, 33, 40, 0.2) 0%, rgba(36, 33, 40, 0.48) 48%, rgba(36, 33, 40, 0.86) 100%);
	pointer-events: none;
}

/* ABOUT PAGE HERO
* INNER */
.css-about-hero__inner {
	position: relative;
	z-index: 1;
	min-height: 620px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding-top: 170px;
	padding-bottom: 120px;
}

/* ABOUT PAGE HERO
* CONTENT */
.css-about-hero__content {
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

/* ABOUT PAGE HERO
* EYEBROW */
.css-about-hero .css-eyebrow {
	justify-content: center;
	color: rgba(255, 255, 255, 0.76);
	margin-bottom: 14px;
}

/* ABOUT PAGE HERO
* HEADING */
.css-about-hero__heading {
	max-width: 760px;
	margin: 0 auto;
	color: var(--c-white, #ffffff);
	font-size: clamp(38px, 5vw, 64px);
	line-height: 1.02;
}

/* ABOUT PAGE HERO
* KICKER */
.css-about-hero__kicker {
	margin-top: 16px;
	color: var(--c-primary, #edcb20);
	font-size: clamp(15px, 1.4vw, 18px);
	font-weight: 700;
	line-height: 1.35;
}

/* ABOUT PAGE HERO
* SUBHEADING */
.css-about-hero__sub {
	max-width: 680px;
	margin: 18px auto 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 16px;
	line-height: 1.6;
}

/* ABOUT PAGE HERO
* ACTIONS */
.css-about-hero__actions {
	justify-content: center;
	margin-top: 24px;
}

/* ABOUT PAGE HERO
* LOGOS */
.css-about-hero__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 22px;
	margin-top: 28px;
}

/* ABOUT PAGE HERO
* LOGO IMAGE */
.css-about-hero__logos img {
	display: block;
	width: auto;
	max-width: 140px;
	max-height: 42px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.84;
}

/* ABOUT PAGE
* ABOUT SECTION */
.css-about-page .css-about-hero + .css-home-about {
	position: relative;
	z-index: 4;
	margin-top: 0 !important;
}

/* ABOUT PAGE
* ABOUT PANEL STACKING */
.css-about-page .css-about-hero + .css-home-about .css-container {
	position: relative;
	z-index: 5;
}

/* ABOUT PAGE
* HERO LOGOS REMOVED */
.css-about-page .css-about-hero__logos {
	display: none !important;
}

/* ABOUT PAGE
* ACCREDITATIONS POSITION */
.css-about-page .css-resources-block + .css-accred-strip {
	background: var(--c-grey-light, #f5f5f5) !important;
}

/* ABOUT PAGE HERO
* BREAKPOINT: 991PX */
@media (max-width: 991px) {
	.css-about-hero {
		min-height: 560px;
	}

	.css-about-hero__inner {
		min-height: 560px;
		padding-top: 140px;
		padding-bottom: 110px;
	}

}

/* ABOUT PAGE HERO
* BREAKPOINT: 767PX */
@media (max-width: 767px) {
	.css-about-hero {
		min-height: 520px;
	}

	.css-about-hero__inner {
		min-height: 520px;
		padding-top: 120px;
		padding-bottom: 96px;
	}

	.css-about-hero__content {
		text-align: left;
	}

	.css-about-hero .css-eyebrow,
	.css-about-hero__actions,
	.css-about-hero__logos {
		justify-content: flex-start;
	}

	.css-about-hero__heading,
	.css-about-hero__sub {
		margin-left: 0;
		margin-right: 0;
	}

}

/* ==========================================================================
   ONLINE BOOKING
   Added by the booking integration. Scoped to booking/checkout/account
   components only — no global WooCommerce overrides, so existing site
   components are untouched.
   ========================================================================== */

/* COURSE SIDEBAR
* PRICE SUMMARY */
.css-booking-card__price {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
	margin: 12px 0 0;
}

.css-booking-card__price strong {
	color: var(--c-dark, #242128);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.1;
}

.css-booking-card__price-note {
	color: var(--c-body, #3f3f3f);
	font-size: 13px;
	font-weight: 500;
}

/* COURSE SIDEBAR
* UNAVAILABLE STATE */
.css-booking-card__next--unavailable .css-booking-card__next-date {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}

/* COURSE SIDEBAR
* INLINE FIELD HELP */
.css-booking-enquiry__help:empty {
	display: none;
}

.css-booking-enquiry__help {
	display: block;
	margin-top: 6px;
	color: var(--c-body, #3f3f3f);
	font-size: 12px;
	line-height: 1.4;
}

/* COURSE SIDEBAR
* DISABLED SUBMIT */
.css-booking-enquiry__submit[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}

/* HEADER
* ACCOUNT LINK
* Icon only. The 42px target matches the phone icon beside it so the two align
* on the same optical line, but it stays unfilled — the header already has one
* solid button and does not need a second. */
.css-header__account {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: 0 0 auto;
	border-radius: 999px;
	color: var(--c-white, #fff);
	text-decoration: none;
	transition: background-color .15s ease, color .15s ease;
}

.css-header__account:hover,
.css-header__account:focus-visible {
	background: rgba(255, 255, 255, .1);
	color: var(--c-primary, #edcb20);
}

.css-header__account:focus-visible {
	outline: 2px solid var(--c-primary, #edcb20);
	outline-offset: 2px;
}

.css-header__account-icon {
	display: inline-flex;
	align-items: center;
}

/* HEADER
* ACCOUNT TOOLTIP
* Hover and keyboard focus only, no JavaScript, so it can never stick open.
* It is aria-hidden: the link's own aria-label is what assistive tech reads. */
.css-header__account-tip {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(-2px);
	padding: 5px 9px;
	border-radius: 4px;
	background: var(--c-dark, #242128);
	/* A hairline, because the header is the same dark colour — without it the
	   tooltip has no edge where it overlaps the header. */
	border: 1px solid rgba(255, 255, 255, .18);
	color: var(--c-white, #fff);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity .12s ease, transform .12s ease, visibility .12s;
	z-index: 30;
}

.css-header__account:hover .css-header__account-tip,
.css-header__account:focus-visible .css-header__account-tip {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.css-header__account,
	.css-header__account-tip {
		transition: none;
	}
}

/* HEADER
* ACCOUNT LINK IN THE MOBILE MENU
* Worded, not iconic: there is no hover in the burger panel, and a bare icon
* among a list of labelled links reads as a mistake. */
.css-header__mobile .css-header__account {
	width: 100%;
	height: auto;
	justify-content: center;
	gap: 10px;
	margin: 0;
	padding: 12px 0;
	border-radius: 0;
	font-size: 15px;
	font-weight: 600;
}

.css-header__mobile .css-header__account:hover,
.css-header__mobile .css-header__account:focus-visible {
	background: transparent;
}
