:root {
	--lbbc-navy: #0b1745;
	--lbbc-navy-dark: #071032;
	--lbbc-navy-soft: #16265b;
	--lbbc-red: #c41220;
	--lbbc-red-dark: #9f0d18;
	--lbbc-white: #ffffff;
	--lbbc-light: #f5f6f8;
	--lbbc-light-blue: #f2f5fb;
	--lbbc-border: #e2e5eb;
	--lbbc-text: #151d3d;
	--lbbc-muted: #62697a;
	--lbbc-success: #166534;
	--lbbc-error: #991b1b;
	--lbbc-shadow: 0 14px 36px rgba(7, 16, 50, 0.08);
	--lbbc-shadow-soft: 0 8px 24px rgba(7, 16, 50, 0.06);
	--lbbc-radius: 10px;
	--lbbc-radius-lg: 16px;
	--lbbc-container: 1320px;
	--lbbc-transition: 180ms ease;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--lbbc-white);
	color: var(--lbbc-text);
	font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--lbbc-red);
}

button,
input,
select,
textarea {
	font: inherit;
}

button,
select {
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.65em;
	color: var(--lbbc-navy);
	font-weight: 750;
	line-height: 1.18;
	letter-spacing: -0.025em;
}

h1 {
	font-size: clamp(2.45rem, 4.5vw, 4.65rem);
}

h2 {
	font-size: clamp(1.75rem, 2.6vw, 2.65rem);
}

h3 {
	font-size: 1.1rem;
}

p {
	margin: 0 0 1rem;
}

ul,
ol {
	margin-top: 0;
}

svg {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lbbc-container {
	width: min(100% - 48px, var(--lbbc-container));
	margin-inline: auto;
}

.section {
	padding-block: 78px;
}

.section--white {
	background: var(--lbbc-white);
}

.section--light {
	background: var(--lbbc-light);
}

.section-heading {
	margin-bottom: 34px;
}

.section-heading h2 {
	margin-bottom: 10px;
}

.section-heading p {
	max-width: 720px;
	margin-bottom: 0;
	color: var(--lbbc-muted);
}

.section-heading--center {
	text-align: center;
}

.section-heading--center p {
	margin-inline: auto;
}

.section-heading--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
}

.eyebrow {
	margin-bottom: 12px;
	color: var(--lbbc-red);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--lbbc-red);
	font-weight: 750;
}

.text-link:hover span {
	transform: translateX(3px);
}

.text-link span {
	transition: transform var(--lbbc-transition);
}

.text-link--light {
	color: var(--lbbc-white);
}

.button {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 11px 20px;
	border: 1px solid transparent;
	border-radius: 5px;
	font-size: 0.9rem;
	font-weight: 750;
	line-height: 1;
	transition: background-color var(--lbbc-transition), border-color var(--lbbc-transition), color var(--lbbc-transition), transform var(--lbbc-transition), box-shadow var(--lbbc-transition);
}

.button:hover {
	transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid rgba(196, 18, 32, 0.35);
	outline-offset: 3px;
}

.button--primary {
	background: var(--lbbc-red);
	color: var(--lbbc-white);
	box-shadow: 0 7px 18px rgba(196, 18, 32, 0.2);
}

.button--primary:hover {
	background: var(--lbbc-red-dark);
	color: var(--lbbc-white);
}

.button--secondary {
	border-color: var(--lbbc-border);
	background: var(--lbbc-white);
	color: var(--lbbc-navy);
}

.button--secondary:hover {
	border-color: var(--lbbc-navy);
	background: var(--lbbc-navy);
	color: var(--lbbc-white);
}

.button--ghost-red {
	border-color: #efc7cb;
	background: #fffafa;
	color: var(--lbbc-red);
}

.button--ghost-red:hover {
	border-color: var(--lbbc-red);
	background: var(--lbbc-red);
	color: var(--lbbc-white);
}

.button--outline-light {
	border-color: rgba(255, 255, 255, 0.72);
	background: transparent;
	color: var(--lbbc-white);
}

.button--outline-light:hover {
	border-color: var(--lbbc-white);
	background: var(--lbbc-white);
	color: var(--lbbc-navy);
}

.button--full {
	width: 100%;
}

.button-icon {
	width: 18px;
	height: 18px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	top: 10px;
	left: 10px;
	z-index: 99999;
	width: auto;
	height: auto;
	padding: 12px 16px;
	clip: auto;
	background: var(--lbbc-white);
	color: var(--lbbc-navy);
}

/* Header */
.utility-bar {
	background: var(--lbbc-navy-dark);
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.76rem;
}

.utility-bar__inner {
	display: flex;
	min-height: 34px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.utility-bar__contact,
.utility-menu {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.utility-bar a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: inherit;
}

.utility-bar a:hover {
	color: var(--lbbc-white);
}

.utility-icon {
	width: 14px;
	height: 14px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid rgba(226, 229, 235, 0.9);
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 5px 18px rgba(7, 16, 50, 0.04);
	backdrop-filter: blur(12px);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: grid;
	min-height: 76px;
	align-items: center;
	grid-template-columns: minmax(220px, 290px) 1fr auto;
	gap: 24px;
}

.site-branding img,
.custom-logo {
	width: auto;
	max-width: 275px;
	max-height: 58px;
	object-fit: contain;
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(15px, 1.7vw, 28px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu li {
	position: relative;
}

.primary-menu > li > a {
	display: flex;
	min-height: 76px;
	align-items: center;
	color: var(--lbbc-text);
	font-size: 0.88rem;
	font-weight: 700;
}

.primary-menu > li > a:hover,
.primary-menu > .current-menu-item > a,
.primary-menu > .current-menu-ancestor > a {
	color: var(--lbbc-red);
}

.primary-menu .sub-menu {
	position: absolute;
	top: calc(100% - 2px);
	left: -18px;
	z-index: 20;
	min-width: 230px;
	margin: 0;
	padding: 10px;
	visibility: hidden;
	border: 1px solid var(--lbbc-border);
	border-radius: var(--lbbc-radius);
	background: var(--lbbc-white);
	box-shadow: var(--lbbc-shadow);
	opacity: 0;
	list-style: none;
	transform: translateY(8px);
	transition: opacity var(--lbbc-transition), transform var(--lbbc-transition), visibility var(--lbbc-transition);
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.primary-menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 6px;
	font-size: 0.88rem;
	font-weight: 650;
}

.primary-menu .sub-menu a:hover {
	background: var(--lbbc-light);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.site-search-toggle,
.menu-toggle {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--lbbc-navy);
}

.header-search-icon,
.menu-icon {
	width: 21px;
	height: 21px;
}

.menu-toggle {
	display: none;
}

.menu-toggle__close {
	display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__open {
	display: none;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__close {
	display: inline-flex;
}

.site-search-panel {
	border-top: 1px solid var(--lbbc-border);
	background: var(--lbbc-light);
	padding-block: 18px;
}

.site-search-panel .search-form {
	display: flex;
	gap: 10px;
}

.site-search-panel label {
	flex: 1;
}

.site-search-panel .search-field {
	width: 100%;
	height: 48px;
	padding: 0 14px;
	border: 1px solid var(--lbbc-border);
	border-radius: 6px;
}

.site-search-panel .search-submit {
	min-width: 120px;
	border: 0;
	border-radius: 5px;
	background: var(--lbbc-red);
	color: var(--lbbc-white);
	font-weight: 750;
}

/* Hero */
.hero-section {
	position: relative;
	z-index: 2;
	background: var(--lbbc-navy);
	color: var(--lbbc-white);
}

.hero-section__inner {
	display: grid;
	min-height: 500px;
	grid-template-columns: 43% 57%;
}

.hero-copy {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 54px 50px 95px 0;
}

.hero-copy::after {
	position: absolute;
	top: 0;
	right: -130px;
	bottom: 0;
	z-index: -1;
	width: 220px;
	background: linear-gradient(90deg, var(--lbbc-navy) 10%, rgba(11, 23, 69, 0));
	content: "";
}

.hero-copy h1 {
	max-width: 690px;
	margin-bottom: 20px;
	color: var(--lbbc-white);
	font-size: clamp(2.4rem, 4vw, 4.15rem);
}

.hero-copy p {
	max-width: 590px;
	margin-bottom: 26px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.02rem;
}

.hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.hero-advisor-link {
	margin-left: 4px;
	color: var(--lbbc-white);
	font-size: 0.9rem;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 5px;
}

.hero-media {
	min-width: 0;
	overflow: hidden;
}

.hero-media img {
	width: 100%;
	height: 100%;
	min-height: 500px;
	object-fit: cover;
	object-position: center;
}

.programme-search-wrap {
	position: relative;
	z-index: 10;
	margin-top: -49px;
}

.programme-search-panel {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
	gap: 14px;
	padding: 14px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 8px;
	background: var(--lbbc-navy-soft);
	box-shadow: 0 18px 38px rgba(7, 16, 50, 0.18);
}

.form-field label {
	display: block;
	margin-bottom: 6px;
	color: var(--lbbc-text);
	font-size: 0.78rem;
	font-weight: 750;
}

.programme-filter-field label {
	color: rgba(255, 255, 255, 0.84);
}

.form-field input,
.form-field select,
.form-field textarea {
	width: 100%;
	border: 1px solid var(--lbbc-border);
	border-radius: 5px;
	background: var(--lbbc-white);
	color: var(--lbbc-text);
}

.form-field input,
.form-field select {
	height: 48px;
	padding-inline: 13px;
}

.form-field textarea {
	padding: 12px 13px;
	resize: vertical;
}

.programme-search-submit {
	align-self: end;
	min-width: 188px;
	height: 48px;
}

/* Trust */
.trust-section {
	padding: 32px 0 58px;
}

.trust-grid {
	display: grid;
	margin-bottom: 32px;
	grid-template-columns: repeat(4, 1fr);
	border-bottom: 1px solid var(--lbbc-border);
}

.trust-item {
	display: flex;
	min-height: 82px;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 16px 22px;
	border-right: 1px solid var(--lbbc-border);
	color: var(--lbbc-navy);
	font-size: 0.9rem;
	font-weight: 750;
}

.trust-item:last-child {
	border-right: 0;
}

.trust-icon {
	width: 38px;
	height: 38px;
	flex: 0 0 38px;
	stroke-width: 1.55;
}

.partner-groups {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr 2fr;
	gap: 0;
}

.partner-group {
	padding: 0 28px;
	border-right: 1px solid var(--lbbc-border);
	text-align: center;
}

.partner-group:first-child {
	padding-left: 0;
}

.partner-group:last-child {
	padding-right: 0;
	border-right: 0;
}

.partner-group h2 {
	margin-bottom: 15px;
	color: var(--lbbc-muted);
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.partner-logo-row {
	display: flex;
	min-height: 72px;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

.partner-logo {
	display: flex;
	min-width: 105px;
	min-height: 62px;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 7px;
	background: var(--lbbc-white);
}

.partner-logo img {
	width: auto;
	max-width: 150px;
	height: 48px;
	object-fit: contain;
}

.partner-logo span {
	color: var(--lbbc-navy);
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1.15;
}

/* Pathways */
.pathway-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}

.pathway-card {
	display: flex;
	min-height: 196px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 25px 16px;
	border: 1px solid var(--lbbc-border);
	border-radius: var(--lbbc-radius);
	background: var(--lbbc-white);
	box-shadow: var(--lbbc-shadow-soft);
	text-align: center;
	transition: border-color var(--lbbc-transition), transform var(--lbbc-transition), box-shadow var(--lbbc-transition);
}

.pathway-card:hover {
	border-color: rgba(196, 18, 32, 0.42);
	color: inherit;
	box-shadow: var(--lbbc-shadow);
	transform: translateY(-4px);
}

.pathway-icon {
	width: 44px;
	height: 44px;
	margin-bottom: 15px;
	color: var(--lbbc-navy);
}

.pathway-card h3 {
	margin-bottom: 8px;
	font-size: 0.98rem;
}

.pathway-card p,
.pathway-card__text p {
	margin: 0;
	color: var(--lbbc-muted);
	font-size: 0.79rem;
	line-height: 1.45;
}

/* Programmes */
.programme-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	margin-bottom: 26px;
	flex-wrap: wrap;
}

.programme-tab {
	padding: 7px 15px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--lbbc-muted);
	font-size: 0.82rem;
	font-weight: 700;
}

.programme-tab:hover,
.programme-tab.is-active {
	background: var(--lbbc-navy);
	color: var(--lbbc-white);
}

.programme-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.programme-grid--archive {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.programme-card {
	display: flex;
	overflow: hidden;
	min-width: 0;
	flex-direction: column;
	border: 1px solid var(--lbbc-border);
	border-radius: var(--lbbc-radius);
	background: var(--lbbc-white);
	box-shadow: var(--lbbc-shadow-soft);
	transition: transform var(--lbbc-transition), box-shadow var(--lbbc-transition), border-color var(--lbbc-transition);
}

.programme-card:hover {
	border-color: #ccd2df;
	box-shadow: var(--lbbc-shadow);
	transform: translateY(-4px);
}

.programme-card[hidden] {
	display: none;
}

.programme-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #dfe4ec;
}

.programme-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.programme-card:hover .programme-card__image img {
	transform: scale(1.035);
}

.programme-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px;
}

.programme-card__body h3 {
	margin-bottom: 9px;
	font-size: 1.05rem;
}

.programme-card__body h3 a:hover {
	color: var(--lbbc-red);
}

.programme-card__body > p,
.programme-card__excerpt {
	margin-bottom: 15px;
	color: var(--lbbc-muted);
	font-size: 0.86rem;
	line-height: 1.55;
}

.programme-card__excerpt p {
	margin: 0;
}

.programme-facts {
	display: grid;
	gap: 7px;
	margin: auto 0 18px;
	padding: 14px 0 0;
	border-top: 1px solid var(--lbbc-border);
	list-style: none;
}

.programme-facts li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--lbbc-muted);
	font-size: 0.76rem;
	line-height: 1.35;
}

.fact-icon {
	width: 15px;
	height: 15px;
	flex: 0 0 15px;
	color: var(--lbbc-navy);
}

.programme-card__actions {
	display: grid;
	grid-template-columns: 1fr 0.82fr;
	gap: 9px;
}

.programme-card__actions .button {
	min-height: 40px;
	padding: 9px 10px;
	font-size: 0.78rem;
}

/* Schools */
.school-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.school-card {
	overflow: hidden;
	border: 1px solid var(--lbbc-border);
	border-radius: var(--lbbc-radius);
	background: var(--lbbc-white);
	box-shadow: var(--lbbc-shadow-soft);
}

.school-card__image {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.school-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 400ms ease;
}

.school-card:hover .school-card__image img {
	transform: scale(1.035);
}

.school-card__body {
	padding: 20px;
}

.school-card__body h3 {
	margin-bottom: 9px;
}

.school-card__body p {
	color: var(--lbbc-muted);
	font-size: 0.84rem;
	line-height: 1.55;
}

.school-card__body .text-link {
	font-size: 0.82rem;
}

/* Benefits */
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
}

.benefit-item {
	padding: 12px 22px;
	border-right: 1px solid var(--lbbc-border);
	text-align: center;
}

.benefit-item:last-child {
	border-right: 0;
}

.benefit-icon {
	width: 50px;
	height: 50px;
	margin: 0 auto 14px;
	color: var(--lbbc-navy);
	stroke-width: 1.4;
}

.benefit-item h3 {
	margin-bottom: 8px;
	font-size: 0.97rem;
}

.benefit-item p {
	margin: 0;
	color: var(--lbbc-muted);
	font-size: 0.78rem;
	line-height: 1.5;
}

/* Testimonial */
.testimonial-section {
	background: var(--lbbc-navy);
}

.testimonial-shell {
	display: grid;
	min-height: 430px;
	grid-template-columns: 43% 57%;
}

.testimonial-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 55px 54px 55px 8px;
	color: rgba(255, 255, 255, 0.84);
}

.testimonial-copy h2 {
	color: var(--lbbc-white);
	font-size: clamp(1.8rem, 2.3vw, 2.65rem);
}

.testimonial-copy .eyebrow {
	color: #f09aa3;
}

.testimonial-quote-mark {
	height: 45px;
	color: var(--lbbc-white);
	font-family: Georgia, serif;
	font-size: 5rem;
	line-height: 0.9;
}

.testimonial-copy blockquote {
	margin: 8px 0 24px;
	font-size: 0.97rem;
}

.testimonial-copy blockquote p:last-child {
	margin-bottom: 0;
}

.testimonial-person {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.testimonial-avatar {
	display: flex;
	overflow: hidden;
	width: 66px;
	height: 66px;
	align-items: center;
	justify-content: center;
	flex: 0 0 66px;
	border: 3px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: var(--lbbc-white);
	font-size: 1.4rem;
	font-weight: 800;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-person strong,
.testimonial-person span {
	display: block;
}

.testimonial-person strong {
	color: var(--lbbc-white);
}

.testimonial-person span {
	font-size: 0.78rem;
}

.testimonial-image {
	overflow: hidden;
}

.testimonial-image img {
	width: 100%;
	height: 100%;
	min-height: 430px;
	object-fit: cover;
}

/* Progression */
.progression-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 275px;
	gap: 28px;
	align-items: stretch;
}

.progression-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	border: 1px solid var(--lbbc-border);
	border-radius: var(--lbbc-radius);
	background: var(--lbbc-white);
}

.progression-step {
	position: relative;
	padding: 28px 22px;
	text-align: center;
}

.progression-step:not(:last-child)::after {
	position: absolute;
	top: 50%;
	right: -9px;
	z-index: 2;
	width: 18px;
	height: 18px;
	border-top: 1px solid var(--lbbc-border);
	border-right: 1px solid var(--lbbc-border);
	background: var(--lbbc-white);
	content: "";
	transform: translateY(-50%) rotate(45deg);
}

.progression-step__number {
	display: flex;
	width: 28px;
	height: 28px;
	align-items: center;
	justify-content: center;
	margin: 0 auto 10px;
	border-radius: 50%;
	background: var(--lbbc-red);
	color: var(--lbbc-white);
	font-size: 0.78rem;
	font-weight: 800;
}

.progression-icon {
	width: 43px;
	height: 43px;
	margin: 0 auto 12px;
	color: var(--lbbc-navy);
}

.progression-step h3 {
	font-size: 0.92rem;
}

.progression-step p {
	margin: 0;
	color: var(--lbbc-muted);
	font-size: 0.75rem;
	line-height: 1.5;
}

.progression-partners {
	padding: 24px;
	border: 1px solid var(--lbbc-border);
	border-radius: var(--lbbc-radius);
	background: var(--lbbc-white);
}

.progression-partners h3 {
	font-size: 0.95rem;
	text-align: center;
}

.progression-partners__logos {
	display: grid;
	gap: 10px;
}

.progression-partner-logo {
	display: flex;
	min-height: 62px;
	align-items: center;
	justify-content: center;
	padding: 9px;
	border: 1px solid var(--lbbc-border);
	border-radius: 7px;
	text-align: center;
}

.progression-partner-logo img {
	width: auto;
	max-width: 180px;
	height: 44px;
	object-fit: contain;
}

.progression-partner-logo span {
	font-size: 0.82rem;
	font-weight: 750;
}

.progression-disclaimer {
	max-width: 940px;
	margin: 20px auto 0;
	color: var(--lbbc-muted);
	font-size: 0.78rem;
	font-style: italic;
	text-align: center;
}

/* Information */
.information-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.info-panel {
	display: flex;
	min-height: 420px;
	flex-direction: column;
	padding: 26px;
	border: 1px solid var(--lbbc-border);
	border-radius: var(--lbbc-radius);
	background: var(--lbbc-white);
	box-shadow: var(--lbbc-shadow-soft);
}

.info-panel__heading {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
}

.info-panel__heading h2 {
	margin: 0;
	font-size: 1.08rem;
}

.panel-heading-icon {
	width: 25px;
	height: 25px;
	color: var(--lbbc-navy);
}

.intake-list,
.scholarship-list,
.news-mini-list {
	display: grid;
	gap: 16px;
	margin-bottom: 20px;
}

.intake-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--lbbc-border);
}

.intake-date {
	overflow: hidden;
	width: 52px;
	flex: 0 0 52px;
	border: 1px solid var(--lbbc-border);
	border-radius: 6px;
	text-align: center;
}

.intake-date strong,
.intake-date span {
	display: block;
}

.intake-date strong {
	padding: 3px;
	background: var(--lbbc-red);
	color: var(--lbbc-white);
	font-size: 0.68rem;
}

.intake-date span {
	padding: 5px 3px;
	color: var(--lbbc-navy);
	font-size: 1rem;
	font-weight: 800;
}

.intake-details h3,
.scholarship-item h3,
.news-mini h3 {
	margin-bottom: 2px;
	font-size: 0.86rem;
}

.intake-details span,
.intake-details a,
.news-mini time,
.news-mini span {
	display: block;
	font-size: 0.72rem;
}

.intake-details span,
.news-mini time {
	color: var(--lbbc-muted);
}

.intake-details a,
.news-mini span {
	color: var(--lbbc-red);
	font-weight: 750;
}

.scholarship-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.scholarship-icon {
	width: 29px;
	height: 29px;
	flex: 0 0 29px;
	color: var(--lbbc-navy);
}

.scholarship-item p {
	margin: 0;
	color: var(--lbbc-muted);
	font-size: 0.75rem;
	line-height: 1.45;
}

.news-mini {
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 12px;
	color: inherit;
}

.news-mini__image {
	display: flex;
	overflow: hidden;
	width: 72px;
	height: 68px;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	background: var(--lbbc-light-blue);
}

.news-mini__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-placeholder-icon {
	width: 28px;
	height: 28px;
	color: var(--lbbc-navy);
}

.info-panel > .text-link {
	margin-top: auto;
	font-size: 0.8rem;
}

/* Student life */
.student-life-section {
	padding: 0 0 28px;
}

.student-life-banner {
	display: grid;
	overflow: hidden;
	grid-template-columns: 58% 42%;
	border-radius: var(--lbbc-radius);
	background: var(--lbbc-navy);
	box-shadow: var(--lbbc-shadow);
}

.student-life-banner__media {
	min-height: 250px;
}

.student-life-banner__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.student-life-banner__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 38px 42px;
	color: rgba(255, 255, 255, 0.83);
}

.student-life-banner__content h2 {
	color: var(--lbbc-white);
}

/* Enquiry */
.enquiry-section {
	padding: 24px 0;
	background: var(--lbbc-light);
}

.enquiry-shell {
	display: grid;
	overflow: hidden;
	grid-template-columns: 42% 58%;
	border-radius: var(--lbbc-radius);
	background: var(--lbbc-navy);
	box-shadow: var(--lbbc-shadow);
}

.enquiry-callout {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 42px;
	color: rgba(255, 255, 255, 0.84);
}

.enquiry-callout-icon {
	width: 42px;
	height: 42px;
	margin-bottom: 15px;
	color: var(--lbbc-white);
}

.enquiry-callout h2 {
	color: var(--lbbc-white);
}

.enquiry-callout__actions {
	display: flex;
	gap: 10px;
	margin-top: 7px;
	flex-wrap: wrap;
}

.enquiry-form-card {
	margin: 12px;
	padding: 24px;
	border-radius: 8px;
	background: var(--lbbc-white);
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 13px;
}

.form-field--full {
	grid-column: 1 / -1;
}

.consent-field {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 14px 0;
	color: var(--lbbc-muted);
	font-size: 0.76rem;
}

.consent-field input {
	margin-top: 4px;
}

.honeypot-field {
	position: absolute;
	left: -9999px;
}

.form-notice {
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 6px;
	font-size: 0.84rem;
}

.form-notice--success {
	border: 1px solid #bbf7d0;
	background: #f0fdf4;
	color: var(--lbbc-success);
}

.form-notice--error {
	border: 1px solid #fecaca;
	background: #fef2f2;
	color: var(--lbbc-error);
}

.form-notice ul {
	margin: 6px 0 0;
	padding-left: 20px;
}

/* Footer */
.site-footer {
	background: var(--lbbc-navy-dark);
	color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.55fr repeat(5, 0.8fr);
	gap: 34px;
	padding-block: 58px 46px;
}

.footer-logo {
	display: inline-flex;
	margin-bottom: 15px;
	padding: 7px;
	border-radius: 5px;
	background: var(--lbbc-white);
}

.footer-logo img {
	width: auto;
	max-width: 220px;
	height: 50px;
	object-fit: contain;
}

.footer-brand p {
	max-width: 330px;
	font-size: 0.78rem;
}

.footer-contact-list,
.footer-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-contact-list {
	display: grid;
	gap: 8px;
	font-size: 0.76rem;
}

.footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.footer-contact-icon {
	width: 15px;
	height: 15px;
	flex: 0 0 15px;
	margin-top: 3px;
}

.site-footer a {
	color: inherit;
}

.site-footer a:hover {
	color: var(--lbbc-white);
}

.social-links {
	display: flex;
	gap: 7px;
	margin-top: 15px;
}

.social-links a {
	display: flex;
	width: 30px;
	height: 30px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 50%;
	font-size: 0.68rem;
	font-weight: 800;
}

.footer-column h2 {
	margin-bottom: 16px;
	color: var(--lbbc-white);
	font-size: 0.88rem;
}

.footer-menu {
	display: grid;
	gap: 8px;
	font-size: 0.76rem;
}

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

.footer-bottom__inner {
	display: flex;
	min-height: 62px;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	font-size: 0.7rem;
}

.footer-bottom__inner p {
	margin: 0;
}

.footer-bottom nav {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}

/* Inner pages */
.inner-hero {
	padding: 74px 0;
	background: linear-gradient(120deg, var(--lbbc-navy-dark), var(--lbbc-navy-soft));
	color: rgba(255, 255, 255, 0.82);
}

.inner-hero h1 {
	max-width: 920px;
	margin-bottom: 12px;
	color: var(--lbbc-white);
}

.inner-hero p,
.inner-hero .archive-description {
	max-width: 760px;
	margin-bottom: 0;
}

.content-layout,
.prose-content {
	padding-block: 62px;
}

.prose-content {
	max-width: 940px;
}

.prose-content--wide {
	max-width: var(--lbbc-container);
}

.prose-content h2,
.prose-content h3 {
	margin-top: 1.6em;
}

.prose-content a {
	color: var(--lbbc-red);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.prose-content table {
	width: 100%;
	border-collapse: collapse;
}

.prose-content th,
.prose-content td {
	padding: 11px;
	border: 1px solid var(--lbbc-border);
	text-align: left;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.post-card {
	overflow: hidden;
	border: 1px solid var(--lbbc-border);
	border-radius: var(--lbbc-radius);
	background: var(--lbbc-white);
	box-shadow: var(--lbbc-shadow-soft);
}

.post-card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.post-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__body {
	padding: 22px;
}

.post-card__body time {
	color: var(--lbbc-muted);
	font-size: 0.75rem;
}

.post-card__body h2 {
	margin-top: 6px;
	font-size: 1.2rem;
}

.post-card__body p {
	color: var(--lbbc-muted);
	font-size: 0.87rem;
}

.single-featured-image {
	margin-bottom: 34px;
	border-radius: var(--lbbc-radius);
	overflow: hidden;
}

.navigation.pagination {
	margin-top: 38px;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 7px;
}

.page-numbers {
	display: inline-flex;
	min-width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border: 1px solid var(--lbbc-border);
	border-radius: 5px;
	background: var(--lbbc-white);
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--lbbc-navy);
	background: var(--lbbc-navy);
	color: var(--lbbc-white);
}

.no-results,
.error-page__inner {
	padding: 90px 0;
	text-align: center;
}

.error-page {
	background: var(--lbbc-light);
}

.error-code {
	display: block;
	color: var(--lbbc-red);
	font-size: clamp(5rem, 13vw, 10rem);
	font-weight: 900;
	line-height: 0.9;
}

/* Programme archive */
.archive-filter-section {
	padding: 28px 0;
	border-bottom: 1px solid var(--lbbc-border);
	background: var(--lbbc-white);
}

.archive-filter-form {
	display: grid;
	grid-template-columns: 1.3fr repeat(5, 1fr);
	gap: 12px;
}

.archive-filter-actions {
	display: flex;
	grid-column: 1 / -1;
	justify-content: flex-end;
	gap: 10px;
	padding-top: 4px;
}

.archive-result-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 25px;
}

.archive-result-heading h2,
.archive-result-heading p {
	margin: 0;
}

.archive-result-heading p {
	color: var(--lbbc-muted);
}

/* Single programme */
.programme-hero {
	background: var(--lbbc-navy);
	color: rgba(255, 255, 255, 0.82);
}

.programme-hero__grid {
	display: grid;
	min-height: 470px;
	grid-template-columns: 48% 52%;
}

.programme-hero__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 55px 50px 55px 0;
}

.programme-hero__copy h1 {
	color: var(--lbbc-white);
}

.programme-hero__intro {
	max-width: 640px;
	font-size: 1.05rem;
}

.programme-hero__actions {
	display: flex;
	gap: 11px;
	margin-top: 12px;
}

.programme-hero__image {
	overflow: hidden;
}

.programme-hero__image img {
	width: 100%;
	height: 100%;
	min-height: 470px;
	object-fit: cover;
}

.programme-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 350px;
	gap: 55px;
	padding-block: 64px;
	align-items: start;
}

.programme-main-content {
	padding: 0;
}

.programme-main-content section {
	padding-bottom: 28px;
	margin-bottom: 28px;
	border-bottom: 1px solid var(--lbbc-border);
}

.programme-main-content section:last-child {
	border-bottom: 0;
}

.programme-sidebar {
	position: sticky;
	top: 105px;
}

.programme-info-card {
	padding: 28px;
	border: 1px solid var(--lbbc-border);
	border-radius: var(--lbbc-radius);
	background: var(--lbbc-white);
	box-shadow: var(--lbbc-shadow);
}

.programme-info-card h2 {
	font-size: 1.3rem;
}

.programme-info-card dl {
	margin: 0 0 22px;
}

.programme-info-card dl > div {
	padding: 11px 0;
	border-bottom: 1px solid var(--lbbc-border);
}

.programme-info-card dt {
	color: var(--lbbc-muted);
	font-size: 0.73rem;
	font-weight: 700;
	text-transform: uppercase;
}

.programme-info-card dd {
	margin: 2px 0 0;
	font-weight: 700;
}

.programme-info-card .button + .button {
	margin-top: 9px;
}

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