/* ============================================================
   Laidlaw off-canvas mega menu

   Every value is taken from the approved design, measured at a
   1920px viewport (the mockup is a 924px capture of it, so
   mockup px x 2.078 = the values below).
   ============================================================ */

.lmm-overlay {
	/* The overlay renders at body level, outside the Elementor scope that
	   carries the brand font, so it declares Lato itself. */
	font-family: Lato, sans-serif;

	--lmm-right-w: 580px;
	--lmm-right-pad: 80px;
	--lmm-left-pad: 104px;
	--lmm-grid-w: 914px;
	--lmm-light: #e8e8e8;
	--lmm-hair: rgba(0, 0, 0, 0.09);
	--lmm-label: #444444;
	--lmm-muted: #777777;
}


/* -- Neutralise theme styling inside the overlay ------------- */

/* This reset outranks a plain class, so any link that needs a colour of its
   own declares it id-scoped too. Links with no colour rule inherit from their
   container, which is what .lmm-legal and .lmm-card rely on. */
#lmm-overlay a,
#lmm-overlay a:hover,
#lmm-overlay a:focus,
#lmm-overlay a:active {
	color: inherit;
	text-decoration: none;
}

/* The theme reset styles buttons via [type="button"], which ties with a
   single class, so button rules below are id-scoped to win the cascade. */
#lmm-overlay button {
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0;
	background: none;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-align: left;
	text-transform: none;
	white-space: normal;
	cursor: pointer;
}

#lmm-overlay button:hover,
#lmm-overlay button:focus {
	background: none;
	color: inherit;
}

#lmm-overlay p {
	margin: 0;
}

/* Lists are reset per component rather than via a #id selector, so the
   layout rules below can still set their own margins. */
.lmm-acc__list,
.lmm-quicklinks,
.lmm-legal {
	list-style: none;
}

.lmm-acc__list li,
.lmm-quicklinks li,
.lmm-legal li {
	margin: 0;
	padding: 0;
	list-style: none;
}


/* -- Trigger -------------------------------------------------- */

.lmm-trigger {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border: none;
	background: none;
	color: inherit;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
}

.lmm-trigger__bars {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.lmm-trigger__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: currentColor;
}


/* -- Shell ---------------------------------------------------- */

.lmm-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	overflow: hidden;
}

.lmm-overlay[hidden] {
	display: none;
}


/* ============================================================
   LEFT PANEL
   ============================================================ */

.lmm-left {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	overflow-y: auto;
	overflow-x: hidden;
	background-color: #0d0d0d;
	transform: translateX(-100%);
	transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.lmm-overlay.is-open .lmm-left {
	transform: translateX(0);
}

/* The design ramps the panel from near-black top-left to light grey
   bottom-right; --lmm-left-pattern can layer the brand motif over it. */
.lmm-left::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		var(--lmm-left-pattern, linear-gradient(transparent, transparent)),
		linear-gradient(
			140deg,
			#030303 0%,
			#0e0e0e 14%,
			#242424 30%,
			#4e4e4e 50%,
			#7f7f7f 70%,
			#a9a9a9 86%,
			#c4c4c4 100%
		);
	background-repeat: no-repeat, no-repeat;
	background-size: cover, cover;
}

.lmm-left__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 100px var(--lmm-left-pad) 12px;
}


/* Brand ------------------------------------------------------- */

.lmm-brand {
	display: block;
	width: 226px;
	flex: 0 0 auto;
}

.lmm-brand__img {
	display: block;
	width: 226px;
	height: auto;
	filter: brightness(0) invert(1);
}

.lmm-brand__text {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}


/* Rule above the quick nav ------------------------------------ */

.lmm-dash {
	display: block;
	width: 70px;
	height: 6px;
	margin-top: 59px;
	background: #fff;
	flex: 0 0 auto;
}


/* Quick nav --------------------------------------------------- */

.lmm-quicknav {
	display: flex;
	flex-direction: column;
	margin-top: 8px;
	flex: 0 0 auto;
}

/* Sizing stays at class weight so the responsive overrides below still win;
   only the colour is id-scoped, to clear the link reset. */
.lmm-quicknav__item {
	font-size: 100px;
	font-weight: 700;
	line-height: 0.99;
	letter-spacing: -0.015em;
	transition: color 0.25s ease;
}

#lmm-overlay .lmm-quicknav__item {
	color: rgba(255, 255, 255, 0.45);
}

/* These behave as tabs: the selected one stays white, hover only previews. */
#lmm-overlay .lmm-quicknav__item.is-active,
#lmm-overlay .lmm-quicknav__item:hover,
#lmm-overlay .lmm-quicknav__item:focus-visible {
	color: #fff;
}


/* Feed -------------------------------------------------------- */

.lmm-feed {
	width: var(--lmm-grid-w);
	max-width: 100%;
	margin-top: 160px;
	flex: 0 0 auto;
}


/* Tabs */

.lmm-tabs {
	display: flex;
	align-items: baseline;
	gap: 28px;
	padding: 12px 0 0 30px;
	border-top: 2px solid rgba(255, 255, 255, 0.28);
}

#lmm-overlay .lmm-tab {
	display: inline-block;
	font-size: 31px;
	font-weight: 400;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.45);
	transition: color 0.2s ease;
	white-space: nowrap;
}

#lmm-overlay .lmm-tab.is-active {
	color: #fff;
	font-weight: 700;
}

#lmm-overlay .lmm-tab:hover,
#lmm-overlay .lmm-tab:focus-visible {
	color: #fff;
}

.lmm-tabs__sep {
	font-size: 31px;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.3);
}


/* Pager */

.lmm-pager {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 14px;
	height: 26px;
	margin-top: 90px;
	color: rgba(255, 255, 255, 0.6);
}

.lmm-pager__index {
	font-size: 20px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.75);
}

#lmm-overlay .lmm-pager__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 20px;
	color: rgba(255, 255, 255, 0.6);
	transition: color 0.2s ease;
}

.lmm-pager__arrow:hover,
.lmm-pager__arrow:focus-visible {
	color: #fff;
}

.lmm-pager__track {
	position: relative;
	width: 168px;
	height: 2px;
	background: rgba(255, 255, 255, 0.25);
}

.lmm-pager__fill {
	position: absolute;
	inset: 0 auto 0 0;
	width: 33%;
	background: rgba(255, 255, 255, 0.85);
	transition: width 0.3s ease, transform 0.3s ease;
}


/* Cards */

.lmm-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.lmm-cards[hidden] {
	display: none;
}

.lmm-card {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	border-radius: 12px;
	overflow: hidden;
	background: #1c1c1c;
}

.lmm-card__media {
	position: absolute;
	inset: 0;
	background-color: #232323;
	background-position: center;
	background-size: cover;
	transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}

.lmm-card__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.28) 30%, rgba(0, 0, 0, 0) 58%);
}

.lmm-card:hover .lmm-card__media {
	transform: scale(1.04);
}

.lmm-card__body {
	position: absolute;
	right: 29px;
	bottom: 10px;
	left: 29px;
}

.lmm-card__tag {
	display: inline-block;
	height: 24px;
	margin-bottom: 12px;
	padding: 0 11px;
	border-radius: 12px;
	background: #fff;
	color: #1a1a1a;
	font-size: 12px;
	font-weight: 700;
	line-height: 24px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.lmm-card__title {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	line-height: 24px;
}


/* Legal strip ------------------------------------------------- */

.lmm-legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin: auto 0 0 20px;
	padding: 90px 0 0;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.78);
}

.lmm-legal li {
	display: flex;
	align-items: center;
	gap: 14px;
}

.lmm-legal li + li::before {
	content: '|';
	color: rgba(255, 255, 255, 0.35);
}

.lmm-legal a:hover {
	color: #fff;
}


/* ============================================================
   RIGHT PANEL
   ============================================================ */

.lmm-right {
	flex: 0 0 var(--lmm-right-w);
	width: var(--lmm-right-w);
	overflow-y: auto;
	background: var(--lmm-light);
	transform: translateX(100%);
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
	will-change: transform;
}

.lmm-overlay.is-open .lmm-right {
	transform: translateX(0);
}

.lmm-right__inner {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 96px var(--lmm-right-pad) 16px;
}


/* Header ------------------------------------------------------ */

.lmm-right__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
}

.lmm-right__title {
	font-size: 26px;
	font-weight: 400;
	line-height: 1.2;
	color: #666;
}

#lmm-overlay .lmm-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-right: -6px;
	color: #4a4a4a;
	transition: color 0.2s ease, transform 0.3s ease;
}

#lmm-overlay .lmm-close:hover,
#lmm-overlay .lmm-close:focus-visible {
	color: #000;
	transform: rotate(90deg);
}


/* Decorative glyph strip -------------------------------------- */

.lmm-glyphs {
	display: block;
	height: 36px;
	margin-top: 34px;
	background-image: var(--lmm-glyphs, none);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: auto 100%;
	opacity: 0.4;
}


/* Accordion --------------------------------------------------- */

.lmm-acc {
	margin-top: 40px;
}

#lmm-overlay .lmm-acc__trigger {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	min-height: 85px;
	padding-bottom: 6px;
	border-bottom: 1px solid var(--lmm-hair);
	text-align: left;
}

#lmm-overlay .lmm-acc__item:first-child .lmm-acc__trigger {
	min-height: 72px;
}

#lmm-overlay .lmm-acc__item:last-child .lmm-acc__trigger {
	min-height: 93px;
}

.lmm-acc__label {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--lmm-label);
	transition: color 0.2s ease;
}

.lmm-acc__trigger:hover .lmm-acc__label {
	color: #111;
}

.lmm-acc__toggle {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin-bottom: -4px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	color: #666;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.2s ease, color 0.2s ease;
}

.lmm-acc__item.is-open .lmm-acc__toggle {
	transform: rotate(180deg);
}

.lmm-acc__trigger:hover .lmm-acc__toggle {
	border-color: rgba(0, 0, 0, 0.45);
	color: #111;
}

.lmm-acc__panel {
	overflow: hidden;
}

.lmm-acc__panel[hidden] {
	display: none;
}

.lmm-acc__list {
	margin: 0;
	padding: 27px 0 0;
}

.lmm-acc__link {
	display: flex;
	align-items: flex-end;
	min-height: 54px;
	padding-bottom: 3px;
	border-bottom: 1px solid var(--lmm-hair);
	font-size: 20px;
	line-height: 1.2;
	transition: color 0.2s ease;
}

#lmm-overlay .lmm-acc__link {
	color: var(--lmm-muted);
}

#lmm-overlay .lmm-acc__link:hover,
#lmm-overlay .lmm-acc__link:focus-visible {
	color: #111;
}


/* CTA bar ----------------------------------------------------- */

.lmm-ctabar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	height: 83px;

	/* the bar sits 36px from the panel edges, inside an 80px gutter */
	margin: 66px calc((var(--lmm-right-pad) - 36px) * -1) 0;
	padding: 0 46px;
	border-radius: 12px;
	background: #6a6a6a;
}

.lmm-ctabar__item {
	font-size: 20px;
	line-height: 1.2;
	white-space: nowrap;
	transition: color 0.2s ease;
}

#lmm-overlay .lmm-ctabar__item {
	color: rgba(255, 255, 255, 0.82);
}

.lmm-ctabar__item.is-active {
	font-weight: 700;
}

#lmm-overlay .lmm-ctabar__item.is-active,
#lmm-overlay .lmm-ctabar__item:hover,
#lmm-overlay .lmm-ctabar__item:focus-visible {
	color: #fff;
}


/* Quick links ------------------------------------------------- */

.lmm-quicklinks {
	margin: 42px 0 0;
	padding: 0;
}

.lmm-quicklinks a {
	display: flex;
	align-items: flex-end;
	min-height: 54px;
	padding-bottom: 3px;
	border-bottom: 1px solid var(--lmm-hair);
	font-size: 20px;
	line-height: 1.2;
	transition: color 0.2s ease;
}

#lmm-overlay .lmm-quicklinks a {
	color: #5a5a5a;
}

#lmm-overlay .lmm-quicklinks a:hover,
#lmm-overlay .lmm-quicklinks a:focus-visible {
	color: #111;
}


/* Socials ----------------------------------------------------- */

.lmm-socials {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 21px;
	margin-top: 72px;
}

.lmm-socials__item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	transition: color 0.2s ease, transform 0.2s ease;
}

#lmm-overlay .lmm-socials__item {
	color: #4d4d4d;
}

.lmm-socials__item svg {
	display: block;
	width: 30px;
	height: 30px;
}

.lmm-socials__item:hover {
	transform: translateY(-2px);
}

#lmm-overlay .lmm-socials__item:hover {
	color: #000;
}


/* Footer ------------------------------------------------------ */

.lmm-right__foot {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	margin-top: auto;
	padding-top: 100px;
}

.lmm-right__logo {
	display: block;
	width: 216px;
	height: auto;
}

.lmm-right__logo-text {
	color: #333;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.15;
	text-align: right;
	text-transform: uppercase;
}

.lmm-right__copy {
	margin-top: 28px;
	font-size: 12px;
	color: #8a8a8a;
}


/* ============================================================
   Motion
   ============================================================ */

@keyframes lmm-rise {
	from { opacity: 0; transform: translateY(24px); }
	to   { opacity: 1; transform: translateY(0); }
}

@keyframes lmm-fade-out {
	from { opacity: 1; }
	to   { opacity: 0; }
}

.lmm-brand,
.lmm-dash,
.lmm-quicknav__item,
.lmm-feed,
.lmm-legal {
	opacity: 0;
}

.lmm-overlay.is-open .lmm-brand              { animation: lmm-rise 0.5s ease 0.18s forwards; }
.lmm-overlay.is-open .lmm-dash               { animation: lmm-rise 0.5s ease 0.24s forwards; }
.lmm-overlay.is-open .lmm-quicknav__item:nth-child(1) { animation: lmm-rise 0.5s ease 0.28s forwards; }
.lmm-overlay.is-open .lmm-quicknav__item:nth-child(2) { animation: lmm-rise 0.5s ease 0.34s forwards; }
.lmm-overlay.is-open .lmm-quicknav__item:nth-child(3) { animation: lmm-rise 0.5s ease 0.40s forwards; }
.lmm-overlay.is-open .lmm-quicknav__item:nth-child(4) { animation: lmm-rise 0.5s ease 0.46s forwards; }
.lmm-overlay.is-open .lmm-feed               { animation: lmm-rise 0.5s ease 0.50s forwards; }
.lmm-overlay.is-open .lmm-legal              { animation: lmm-rise 0.5s ease 0.58s forwards; }

.lmm-overlay.is-closing .lmm-brand,
.lmm-overlay.is-closing .lmm-dash,
.lmm-overlay.is-closing .lmm-quicknav__item,
.lmm-overlay.is-closing .lmm-feed,
.lmm-overlay.is-closing .lmm-legal {
	animation: lmm-fade-out 0.3s ease forwards;
}

.lmm-card {
	opacity: 0;
	transition: opacity 0.4s ease;
}

.lmm-card.is-visible {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.lmm-overlay *,
	.lmm-overlay *::before,
	.lmm-overlay *::after {
		animation-duration: 0.001s !important;
		transition-duration: 0.001s !important;
	}

	.lmm-brand,
	.lmm-dash,
	.lmm-quicknav__item,
	.lmm-feed,
	.lmm-legal,
	.lmm-card {
		opacity: 1;
	}
}

body.lmm-open {
	overflow: hidden;
}


/* ============================================================
   Down-scaling for narrower viewports
   ============================================================ */

@media (max-width: 1700px) {
	.lmm-overlay {
		--lmm-left-pad: 72px;
		--lmm-grid-w: 780px;
	}

	.lmm-quicknav__item { font-size: 84px; }
	.lmm-left__inner    { padding-top: 80px; }
	.lmm-feed           { margin-top: 110px; }
	.lmm-pager          { margin-top: 60px; }
	.lmm-legal          { padding-top: 60px; }
}

@media (max-width: 1400px) {
	.lmm-overlay {
		--lmm-right-w: 480px;
		--lmm-right-pad: 60px;
		--lmm-left-pad: 56px;
		--lmm-grid-w: 640px;
	}

	.lmm-quicknav__item  { font-size: 64px; }
	#lmm-overlay .lmm-tab,
	.lmm-tabs__sep       { font-size: 24px; }
	.lmm-card__title     { font-size: 18px; }
	.lmm-acc__label      { font-size: 22px; }
	.lmm-right__title    { font-size: 24px; }
	.lmm-acc__link       { font-size: 18px; min-height: 46px; }
	.lmm-quicklinks a    { font-size: 18px; min-height: 46px; }

	#lmm-overlay .lmm-acc__trigger,
	#lmm-overlay .lmm-acc__item:first-child .lmm-acc__trigger,
	#lmm-overlay .lmm-acc__item:last-child .lmm-acc__trigger { min-height: 70px; }
	.lmm-ctabar          { height: 68px; padding: 0 32px; }
	.lmm-ctabar__item    { font-size: 17px; }
	.lmm-right__inner    { padding-top: 64px; }
}

@media (max-width: 1100px) {
	.lmm-left {
		display: none;
	}

	.lmm-right {
		flex: 1 1 auto;
		width: 100%;
	}

	.lmm-right__inner {
		max-width: 620px;
		margin: 0 auto;
	}
}

@media (max-width: 640px) {
	.lmm-overlay {
		--lmm-right-pad: 28px;
	}

	.lmm-right__inner  { padding-top: 40px; }
	.lmm-right__title  { font-size: 20px; }
	.lmm-acc__label    { font-size: 20px; }

	#lmm-overlay .lmm-acc__trigger,
	#lmm-overlay .lmm-acc__item:first-child .lmm-acc__trigger,
	#lmm-overlay .lmm-acc__item:last-child .lmm-acc__trigger { min-height: 58px; }

	.lmm-ctabar        { flex-wrap: wrap; height: auto; padding: 20px 24px; gap: 14px 20px; }
	.lmm-socials       { justify-content: flex-start; }
	.lmm-right__foot   { align-items: flex-start; padding-top: 60px; }
	.lmm-right__logo   { width: 170px; }
}


/* ============================================================
   Short viewports

   The design canvas is ~2117px tall at 1920 wide, so on a real
   desktop window the rhythm is compressed and the feed shows one
   page of four cards (the pager reaches the rest) rather than
   scrolling the panels.
   ============================================================ */

@media (max-height: 2116px) and (min-width: 1101px) {
	.lmm-overlay {
		/* Grows back toward the design's 914px as the window gets taller. */
		--lmm-grid-w: clamp(780px, 62vh, 914px);
	}

	/* Left panel */
	.lmm-left__inner  { padding-top: 48px; padding-bottom: 12px; }
	.lmm-brand,
	.lmm-brand__img   { width: 190px; }
	.lmm-dash         { width: 60px; height: 5px; margin-top: 32px; }
	.lmm-quicknav     { margin-top: 6px; }
	.lmm-quicknav__item { font-size: clamp(64px, 6vh, 100px); }
	.lmm-feed         { margin-top: 40px; }
	.lmm-tabs         { padding: 10px 0 0 24px; }
	.lmm-tabs__sep    { font-size: 24px; }
	.lmm-pager        { height: 22px; margin-top: 32px; }
	.lmm-pager__track { width: 130px; }
	.lmm-cards        { gap: 16px; margin-top: 26px; }
	.lmm-card__body   { right: 22px; bottom: 8px; left: 22px; }
	.lmm-card__tag    { height: 20px; margin-bottom: 8px; font-size: 10px; line-height: 20px; }
	.lmm-card__title  { font-size: 17px; line-height: 19px; }
	.lmm-legal        { padding-top: 16px; font-size: 11px; }

	#lmm-overlay .lmm-tab { font-size: 24px; }

	/* Right panel */
	.lmm-right__inner { padding-top: 40px; padding-bottom: 14px; }
	.lmm-right__head  { min-height: 28px; }
	.lmm-right__title { font-size: 20px; }
	.lmm-glyphs       { height: 24px; margin-top: 18px; }
	.lmm-acc          { margin-top: 16px; }
	.lmm-acc__label   { font-size: 20px; }
	.lmm-acc__toggle  { width: 24px; height: 24px; margin-bottom: -2px; border-radius: 4px; }
	.lmm-acc__list    { padding-top: 10px; }
	.lmm-acc__link    { min-height: 30px; padding-bottom: 2px; font-size: 16px; }
	.lmm-ctabar       { height: 52px; margin-top: 26px; padding: 0 30px; border-radius: 9px; }
	.lmm-ctabar__item { font-size: 16px; }
	.lmm-quicklinks   { margin-top: 16px; }
	.lmm-quicklinks a { min-height: 30px; padding-bottom: 2px; font-size: 16px; }
	.lmm-socials      { gap: 16px; margin-top: 24px; }
	.lmm-socials__item,
	.lmm-socials__item svg { width: 24px; height: 24px; }
	.lmm-right__foot  { padding-top: 22px; }
	.lmm-right__logo  { width: 160px; }
	.lmm-right__copy  { margin-top: 12px; font-size: 11px; }

	#lmm-overlay .lmm-acc__trigger { min-height: 40px; }
	#lmm-overlay .lmm-acc__item:first-child .lmm-acc__trigger { min-height: 32px; }
	#lmm-overlay .lmm-acc__item:last-child .lmm-acc__trigger  { min-height: 40px; }
}


/* A maximised browser on a 1080p monitor is nearer 900px tall. */

@media (max-height: 980px) and (min-width: 1101px) {
	.lmm-overlay {
		--lmm-grid-w: 660px;
	}

	/* Left panel */
	.lmm-left__inner  { padding-top: 32px; }
	.lmm-brand,
	.lmm-brand__img   { width: 168px; }
	.lmm-dash         { margin-top: 22px; }
	.lmm-quicknav__item { font-size: 52px; }
	.lmm-feed         { margin-top: 28px; }
	.lmm-pager        { margin-top: 22px; }
	.lmm-cards        { margin-top: 18px; }
	.lmm-card__title  { font-size: 16px; line-height: 18px; }

	#lmm-overlay .lmm-tab { font-size: 21px; }
	.lmm-tabs__sep        { font-size: 21px; }

	/* Right panel */
	.lmm-right__inner { padding-top: 28px; }
	.lmm-right__title { font-size: 18px; }
	.lmm-glyphs       { height: 20px; margin-top: 12px; }
	.lmm-acc          { margin-top: 10px; }
	.lmm-acc__label   { font-size: 18px; }
	.lmm-acc__link    { min-height: 26px; font-size: 15px; }
	.lmm-ctabar       { height: 46px; margin-top: 18px; }
	.lmm-ctabar__item { font-size: 15px; }
	.lmm-quicklinks   { margin-top: 10px; }
	.lmm-quicklinks a { min-height: 26px; font-size: 15px; }
	.lmm-socials      { gap: 14px; margin-top: 16px; }
	.lmm-socials__item,
	.lmm-socials__item svg { width: 20px; height: 20px; }
	.lmm-right__foot  { padding-top: 14px; }
	.lmm-right__logo  { width: 130px; }
	.lmm-right__copy  { margin-top: 10px; }

	#lmm-overlay .lmm-acc__trigger { min-height: 34px; }
	#lmm-overlay .lmm-acc__item:first-child .lmm-acc__trigger { min-height: 28px; }
	#lmm-overlay .lmm-acc__item:last-child .lmm-acc__trigger  { min-height: 34px; }
}
