
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.lab-frozen-article {
	--white:	rgb(255,255,255);
	--black:	rgb(0,0,0);
	--grey-100:	rgb(26, 26, 26);
	--grey-75:	rgb(54, 54, 54);
	--grey-50:	rgb(78, 78, 78);
	--grey-25:	rgb(126, 126, 126);
	--grey-10:	rgb(238, 240, 241);
}
.lab-frozen-article .bootstrap-debug {
	width: 200px;
	height: 30px;
	position: fixed;
	bottom: 0;
	left: 0;
	color: #FFFFFF;
	line-height: 30px;
	background: #000000;
	z-index: 1000;
}

.lab-frozen-article {
	color: var(--black);
	font-family: 'Inter', 'Arial', sans-serif;
	font-optical-sizing: auto;
	font-size: 20px; /* TODO: Set to 20px, then adjust font-size on all other elements using 20px as the base for the em calculation. */
	font-weight: 500;
	line-height: 1.75em; /* 35 / 20 = 1.75 */
	background: var(--white);
}

/* TYPOGRAPHY */
.lab-frozen-article h1 {
	font-family: 'Inter Tight', 'Arial', sans-serif;
	font-size: 9.5em; /* 190 / 20 = 9.5 */
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 0.7727272727272727em; /* 170 / 220 = 0.7727272727272727 */
}
.lab-frozen-article h2 {
	font-family: 'Inter Tight', 'Arial', sans-serif;
	font-size: 8.5em; /* 170 / 20 = 8.5 */
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 0.8823529411764706em; /* 150 / 170 = 0.8823529411764706 */
}
.lab-frozen-article h3,
.lab-frozen-article h2.small,
.lab-frozen-article .section-quote {
	font-family: 'Inter Tight', 'Arial', sans-serif;
	margin-bottom: 30px;
	font-size: 3em; /* 60 / 20 = 3 */
	font-weight: 700;
	line-height: 1em;
}
.lab-frozen-article h4 {
	font-family: 'Inter Tight', 'Arial', sans-serif;
	font-size: 1.5em; /* 30 / 20 = 1.5 */
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1em;
}
.lab-frozen-article sup {
	font-size: 0.5em;
}
.lab-frozen-article .eyebrow {
	margin-bottom: 10px;
	font-family: 'Inter Tight', 'Arial', sans-serif;
	font-size: 1em; /* 20 / 20 = 1em */
	font-weight: 900;
	line-height: 1em;
	text-transform: uppercase;
	display: inline-block;
}
.lab-frozen-article .subhead {
	margin-top: 10px;
	font-family: 'Inter Tight', 'Arial', sans-serif;
	font-size: 1.5em; /* 30 / 20 = 1.5 */
	display: inline-block;
	font-weight: 900;
	line-height: 1em;
	text-transform: uppercase;
	display: inline-block;
}
.lab-frozen-article .text-grey 	{ color: var(--grey-25); }
.lab-frozen-article .text-white	{ color: var(--white); }
.lab-frozen-article .text-black	{ color: var(--black); }

/* SPACING */
.lab-frozen-article .pad-b-500	{ padding-bottom: 500px; }
.lab-frozen-article .pad-t-150 	{ padding-top: 150px; }
.lab-frozen-article .pad-b-150 	{ padding-bottom: 150px; }
.lab-frozen-article .pad-t-100 	{ padding-top: 100px; }
.lab-frozen-article .pad-b-100 	{ padding-bottom: 100px; }
.lab-frozen-article .pad-t-50 	{ padding-top: 50px; }
.lab-frozen-article .pad-b-50 	{ padding-bottom: 50px; }
.lab-frozen-article .pad-b-10	{ padding-bottom: 10px; }

/* BUTTONS */
.lab-frozen-article .btn-base,
.lab-frozen-article .hs_submit input[type="submit"] {
	padding: 0;
	font-weight: 700;
	text-align: center;
	border-radius: 20px;
	display: inline-block;
	border: none;
}
	.lab-frozen-article .btn-white {
		padding: 0 20px;
		color: var(--black);
		font-size: 0.9em; /* 18 / 20 = 0.9 */
		line-height: 50px;
		background: var(--white);
		text-decoration: none;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}
	.lab-frozen-article .btn-black,
	.lab-frozen-article .hs_submit input[type="submit"] {
		padding: 0 20px;
		color: var(--white);
		font-size: 1.1em; /* 22 / 20 = 1.1 */
		line-height: 80px;
		background: var(--black);
		text-decoration: none;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}


/* FORMS */
.lab-frozen-article .form-wrapper {
	padding: 10px;
	font-family: 'Inter Tight', 'Arial', sans-serif;
}
.lab-frozen-article .hbspt-form form {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between; 
}
	.lab-frozen-article .hs_email {
		width: 58.47953216374269%; /* 300 / 513 = 0.5847953216374269 */
		float: left;
	}
		.lab-frozen-article .hs_email > label:first-child {
			display: none;
		}
		.lab-frozen-article .hs_email input[type="email"] {
			width: calc(100% - 30px);
			margin-left: 20px;
			margin-right: 10px;
			font-size: 1.1em; /* 22 / 20 = 1.1 */
			font-weight: 700;
			line-height: 80px;
			border: none;
			display: block;
			background: none;
		}
			.lab-frozen-article .hs_email input[type="email"]::placeholder {
				color: var(--black);
			}
			.lab-frozen-article .hs_email input[type="email"]:focus {
				outline: none;
			}
	.lab-frozen-article .hs_submit {
		width: 41.52046783625731%;
		float: left;
	}
		.lab-frozen-article .hs-submit input[type="submit"] {
			width: 100%;
		}
	.lab-frozen-article .hs-error-msgs {
		margin: 0;
		padding: 0;
		list-style: none;
		color: var(--grey-25);
		position: absolute;
		bottom: 8px;
		left: 30px;
		display: block;
	}

/* LIQUID GLASS */
.lab-frozen-article .liquidGlass-wrapper {
  position: relative;
  display: flex;
  overflow: hidden;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1), 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
  border-radius: 30px;
}
	.lab-frozen-article .liquidGlass-effect {
		position: absolute;
		z-index: 0;
		inset: 0;
		backdrop-filter: blur(3px);
		filter: url(#glass-distortion);
		overflow: hidden;
		isolation: isolate;
	}
	.lab-frozen-article .liquidGlass-tint {
		z-index: 1;
		position: absolute;
		inset: 0;
		background: rgba(255, 255, 255, 0.25);
	}
	.lab-frozen-article .liquidGlass-shine {
		position: absolute;
		inset: 0;
		z-index: 2;
		overflow: hidden;
		box-shadow: inset 1px 1px 1px 0 rgba(255, 255, 255, 0.5);
	}
	.lab-frozen-article .liquidGlass-content {
		width: 100%;
		z-index: 3;
	}

/* HEADER NAV */
.lab-frozen-article header {
	width: 100%;
	position: fixed;
	top: 20px;
	z-index: 20;
}
	.lab-frozen-article .header-wrapper {
		height: 70px;
		padding: 10px;
		border-radius: 20px;
		display: flex;
	}
		.lab-frozen-article .header-wrapper .logo {
			display: flex;
			align-items: center;
		}
			.lab-frozen-article .header-wrapper .logo .logo-white { display: none; }
			.lab-frozen-article header.theme-white .logo .logo-white { display: inline-block; }
			.lab-frozen-article header.theme-white .logo .logo-dark { display: none; }

		.lab-frozen-article .header-wrapper .actions {
			text-align: right; 
			align-items: center;
		}
			.lab-frozen-article .header-wrapper #nav-toggle {
				color: var(--grey-50);
				font-weight: 700;
				line-height: 50px;
				text-decoration: none;
				display: inline-block; 
			}
				.lab-frozen-article header.theme-white .header-wrapper #nav-toggle {
					color: var(--white);
				}
			.lab-frozen-article .header-wrapper .btn-base {
				padding: 0 20px;
				margin: 0 0 0 20px;
				line-height: 50px;
				font-size: 1em;
			}
			.lab-frozen-article .header-wrapper .btn-white { display: none; }
			.lab-frozen-article header.theme-white .header-wrapper .btn-white { display: inline-block; }
			.lab-frozen-article header.theme-white .header-wrapper .btn-black { display: none; }

/* OVERLAYS */
.lab-frozen-article .overlay-wrapper {
	width: 100%;
	height: 100vh;
	padding: 20px;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.8);
	backdrop-filter: blur(10px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}
	.lab-frozen-article .overlay-wrapper.show {
		opacity: 1;
		visibility: visible;
	}
	.lab-frozen-article .primary-nav .container,
	.lab-frozen-article .primary-nav .row {
		height: 100vh;
	}
	.lab-frozen-article .overlay-wrapper .btn-white {
		font-size: 17px;
		line-height: 40px;
	}
	.lab-frozen-article .overlay-wrapper h3 {
		margin: 20px 0 20px 0;
	}
	.lab-frozen-article .overlay-wrapper h4 {
		margin: 10px 0 10px 0;
	}

	/* PRIMARY NAV */
	.lab-frozen-article .nav-list {
		align-self: center;
	}
	.lab-frozen-article .nav-list ul {
		padding: 0;
		margin: 0;
		list-style: none;	
	}
		.lab-frozen-article .nav-list ul li {
			margin-bottom: 30px;
		}
		.lab-frozen-article .nav-list ul li a {
			color: var(--black);
			font-family: 'Inter Tight', 'Arial', sans-serif;
			font-size: 3em; /* 60 / 20 = 3 */
			font-weight: 700;
			line-height: 1em;
			letter-spacing: -0.03em;
			text-decoration: none;		
		}
	.lab-frozen-article .primary-nav .btn-black {
		line-height: 50px;
	}

/* SMALL PRINT */
.lab-frozen-article .small-print {
	margin-top: 20px;
	color: var(--grey-50);
	font-size: 0.75em; /* 15 / 20 = 0.75 */
	line-height: 1em;
	display: block;
	transition: color 0.2s ease;
}
	.lab-frozen-article .theme-white .small-print {
		color: var(--white);
	}
	.lab-frozen-article .hero-form .small-print{
		margin-left: 20px;
	}

/* SECTIONS */
/* PANELS */
.lab-frozen-article .panel {
	padding: 30px;
	margin-bottom: 10px;
	border-radius: 30px;
}
	.lab-frozen-article .panel:nth-child(even) {
		margin-left: 10px;
	}
	.lab-frozen-article .panel-grey-100 {
		color: var(--white);
		background: var(--grey-100);
	}
	.lab-frozen-article .panel-grey-10 {
		color: var(--black);
		background: var(--grey-10);
	}
	.lab-frozen-article .panel img {
		display: inline-block;
	}

	.lab-frozen-article .bar-wrapper {
		margin-bottom: 10px;
		position: relative;
	}
		.lab-frozen-article .bar-percentage {
			height: 160px;
			width: calc(35% - 30px);
			padding-left: 30px;
			color: var(--grey-50);
			font-size: 6.5em; /* 130 / 20 = 6.5 */
			font-weight: 400;
			letter-spacing: -0.05em;
			line-height: 160px;
			float: left;
			position: relative;
			z-index: 2;
		}
		.lab-frozen-article .bar-content {
			height: 160px;
			width: 65%;
			margin-top: 30px;
			font-size: 17px;
			float: left;
			position: relative;
			z-index: 2;
		}
		.lab-frozen-article .bar {
			height: 160px;
			background: var(--grey-75);
			border-radius: 30px;
			z-index: 1;
		}
			.lab-frozen-article .bar-100	{ width:100%; }
			.lab-frozen-article .bar-90		{ width: 90%; }
			.lab-frozen-article .bar-70		{ width: 70%; }
			.lab-frozen-article .bar-60		{ width: 60%; }
			.lab-frozen-article .bar-55		{ width: 55%; }
			.lab-frozen-article .bar-50		{ width: 50%; }
			.lab-frozen-article .bar-30		{ width: 30%; }
			.lab-frozen-article .bar-20		{ width: 20%; }

/* Foreword */
.lab-frozen-article #author-text {
	padding-left: 20px;
	line-height: 1.25em; /* 25 / 20 = 1.25 */
}
/* Security Outcomes */
.lab-frozen-article ul.video-credits {
	margin: 0;
	padding: 0;
	font-size: 0.85em; /* 17 / 20 = 0.85 */
	line-height: 1.764705882352941em; /* 30 / 17 = 1.764705882352941 */
	list-style: none;
}
	.lab-frozen-article .outcome-number {
		width: 25px;
		height: 25px;
		color: var(--white);
		font-size: 0.75em; /* 15 / 20 = 0.75 */
		line-height: 25px;
		text-align: center;
		border-radius: 40px;  
		background: var(--black);
		float: left;
	}
	.lab-frozen-article .outcome-content {
		width: calc(100% - 35px);
		padding-left: 10px;
		float: left;
	}
		.lab-frozen-article .outcome-content p {
			font-size: 17px;
		}
/* General */
.lab-frozen-article section.container-fluid {
	padding: 0;
}
	.lab-frozen-article .section-outer {
		margin: 0 30px;
		border-radius: 30px;
	}
		.lab-frozen-article .bkg-black {
			color: var(--white);
			background-color: var(--black);
		}
		.lab-frozen-article .bkg-grey {
			background-color: var(--grey-10);
		}
		.lab-frozen-article .bkg-grey-white {
			background: linear-gradient(var(--grey-10),var(--white));
		}

.lab-frozen-article .section-intro {
	margin-top: 30px;
	margin-bottom: 0;
	font-family: 'Inter Tight', 'Arial', sans-serif;
	font-size: 2em; /* 40 / 20 = 2 */
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.2em; /* 48 / 40 = 1.2 */
}
	.lab-frozen-article .section-intro img {
		display: inline-block;
		margin: -6px 0 0 5px;
	}

.lab-frozen-article .video-wrapper {
	border-radius: 20px;
	overflow: hidden;
}

.lab-frozen-article #section-threat .section-outer {
	background: 
		url('https://tekspace.com.au/wp-content/themes/tekspace/lab-images/bkg-landscpae.png') no-repeat bottom center,
		url('https://tekspace.com.au/wp-content/themes/tekspace/lab-images/bkg-parabellum.png') no-repeat top right;
	background-color: var(--black);
}

.lab-frozen-article .cert-badge {
	margin-bottom: 10px;
}

.lab-frozen-article .cta-wrapper {
	padding: 50px;
	border-radius: 30px;
	background-image: 
		linear-gradient(to right, var(--grey-10), rgba(238, 240, 241, 0)),
		url('https://tekspace.com.au/wp-content/themes/tekspace/lab-images/overlapping-circles.png');
	background-repeat: no-repeat;
	background-position: center right;
}
	.lab-frozen-article .cta-wrapper h3,
	.lab-frozen-article .cta-wrapper p {
		width: 60%;
	}
	.lab-frozen-article .cta-wrapper .btn-black {
		line-height: 60px;
	}

/* CONTINUUM */
.lab-frozen-article .continuum-wrapper {
	background:
		linear-gradient(to bottom, rgba(0,0,0,1) 0, rgba(0,0,0,0) 200px),
		linear-gradient(to top, rgba(0,0,0,1) 0, rgba(0,0,0,0) 200px),
		linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,1)),
		url('https://tekspace.com.au/wp-content/themes/tekspace/lab-images/bkg-cont-outlines.svg') repeat-y top left;
}
	.lab-frozen-article .left {
		min-height: 500px;
		position: relative;
		background: var(--black);
	}
		.lab-frozen-article .maturity-panel h3 {
			margin-bottom: 10px;
			text-shadow: 0px 3px 20px var(--black);
		}
		.lab-frozen-article .continuum-low {
			min-height: 601px;
			background:
				linear-gradient(to bottom, rgba(0,0,0,1) 0, rgba(0,0,0,0) 200px),
				url('https://tekspace.com.au/wp-content/themes/tekspace/lab-images/bkg-cont-low.png') no-repeat top left,
				var(--black);
		}
		.lab-frozen-article .continuum-avg {
			min-height: 604px;
			background:
				url('https://tekspace.com.au/wp-content/themes/tekspace/lab-images/bkg-cont-avg.png') no-repeat top left,
				var(--black);
		}
		.lab-frozen-article .continuum-high {
			background:
				linear-gradient(to top, rgba(0,0,0,1) 0, rgba(0,0,0,0) 200px),
				url('https://tekspace.com.au/wp-content/themes/tekspace/lab-images/bkg-cont-high.png') no-repeat top left,
				var(--black);
		}
		.lab-frozen-article .prod-icon {
			width: 70px;
			height: 70px;
			text-align: center;
			display: flex;
			align-items: center;
			position: absolute;
			z-index: 2;
			transform: rotate(45deg);
			border-radius: 10px;
		}
		@media (prefers-reduced-motion: no-preference) {
			@keyframes prod-icon-wobble {
				0%   { transform: translate(0, 0)      rotate(45deg); }
				25%  { transform: translate(2px, -5px) rotate(47deg); }
				50%  { transform: translate(0, -2px)   rotate(45deg); }
				75%  { transform: translate(-2px, 4px) rotate(43deg); }
				100% { transform: translate(0, 0)      rotate(45deg); }
			}
			.lab-frozen-article .prod-icon {
				animation: prod-icon-wobble 9s ease-in-out infinite;
				will-change: transform;
			}
			.lab-frozen-article .prod-icon:nth-child(2n)   { animation-duration: 11s;   animation-delay: -2.4s; }
			.lab-frozen-article .prod-icon:nth-child(3n)   { animation-duration: 12.5s; animation-delay: -5.1s; }
			.lab-frozen-article .prod-icon:nth-child(4n+1) { animation-duration: 10s;   animation-delay: -3.7s; }
			.lab-frozen-article .prod-icon:nth-child(5n+2) { animation-duration: 13s;   animation-delay: -1.3s; }
			.lab-frozen-article .prod-icon:nth-child(7n+3) { animation-duration: 11.5s; animation-delay: -6.2s; }
		}
			/* EMAIL SECURITY */
			/* Low */
			.lab-frozen-article .prod-icon.mesh				{ top: 0; left: 30px; }
			.lab-frozen-article .prod-icon.hornet			{ top: 120px; left: 30px; }
			.lab-frozen-article .prod-icon.graphus			{ top: 240px; left: 30px; }
			.lab-frozen-article .prod-icon.material			{ top: 360px; left: 30px; }
			.lab-frozen-article .prod-icon.sublime			{ top: 480px; left: 30px; }

			/* Avg */
			.lab-frozen-article .prod-icon.sophos			{ top: 0; left: 30px; }
			.lab-frozen-article .prod-icon.paubox			{ top: 120px; left: 30px; }
			.lab-frozen-article .prod-icon.spamtitan		{ top: 170px; left: 130px; }
			.lab-frozen-article .prod-icon.ironscales		{ top: 190px; left: 230px; }
			.lab-frozen-article .prod-icon.cloudflare		{ top: 270px; left: 30px; }
			.lab-frozen-article .prod-icon.mimecast			{ top: 390px; left: 30px; }
			.lab-frozen-article .prod-icon.barracuda		{ top: 390px; left: 140px; }
			.lab-frozen-article .prod-icon.proofpoint		{ top: 510px; left: 30px; }

			/* High */
			.lab-frozen-article .prod-icon.knowbe4			{ top: 0; left: 30px; }
			.lab-frozen-article .prod-icon.darktrace		{ top: 50px; left: 130px; }
			.lab-frozen-article .prod-icon.abnormal			{ top: 190px; left: 30px; }
			.lab-frozen-article .prod-icon.microsoft		{ top: 220px; left: 30px; }
			.lab-frozen-article .prod-icon.checkpoint		{ top: 390px ; left: 30px; }

			/* SAT */
			/* Low */
			.lab-frozen-article .prod-icon.hackerrangers	{ top: 0; left: 30px; }
			.lab-frozen-article .prod-icon.idagent			{ top: 120px; left: 30px; }
			.lab-frozen-article .prod-icon.cyberhoot		{ top: 200px; left: 80px; }
			.lab-frozen-article .prod-icon.boxphish			{ top: 280px; left: 30px; }
			.lab-frozen-article .prod-icon.riot				{ top: 400px; left: 30px; }
			.lab-frozen-article .prod-icon.mimecastsat		{ top: 480px; left: 70px; }

			/* Avg */
			.lab-frozen-article .prod-icon.huntress			{ top: 0; left: 30px; }
			.lab-frozen-article .prod-icon.usecure			{ top: 120px; left: 30px; }
			.lab-frozen-article .prod-icon.metacompliance	{ top: 120px; left: 160px; }
			.lab-frozen-article .prod-icon.sansinstitute	{ top: 190px; left: 90px; }
			.lab-frozen-article .prod-icon.ninjio			{ top: 190px; left: 230px; }
			.lab-frozen-article .prod-icon.infoseciq		{ top: 270px; left: 30px; }
			.lab-frozen-article .prod-icon.barracudasat		{ top: 340px; left: 90px; }
			.lab-frozen-article .prod-icon.immersive		{ top: 370px; left: 190px; }
			.lab-frozen-article .prod-icon.sosafe			{ top: 420px; left: 30px; }
			.lab-frozen-article .prod-icon.proofpointsat	{ top: 500px; left: 90px; }

			/* High */
			.lab-frozen-article .prod-icon.hoxhunt			{ top: 0; left: 30px; }
			.lab-frozen-article .prod-icon.adaptive			{ top: 120px; left: 30px; }
			.lab-frozen-article .prod-icon.phished			{ top: 240px; left: 30px; }
			.lab-frozen-article .prod-icon.knowbe4sat		{ top: 360px; left: 30px; }

			/* BROWSER SECURITY */
			/* Low */
			.lab-frozen-article .prod-icon.manageengine		{ top: 0; left: 30px; }
			.lab-frozen-article .prod-icon.checkpointharmony{ top: 130px; left: 30px; }
			.lab-frozen-article .prod-icon.squarex			{ top: 280px; left: 30px; }

			/* Avg */
			.lab-frozen-article .prod-icon.layerx			{ top: 0; left: 30px; }
			.lab-frozen-article .prod-icon.apozy			{ top: 0; left: 160px; }
			.lab-frozen-article .prod-icon.conceal			{ top: 170px; left: 30px; }
			.lab-frozen-article .prod-icon.acium			{ top: 170px; left: 160px; }
			.lab-frozen-article .prod-icon.redaccess		{ top: 350px; left: 30px; }
			.lab-frozen-article .prod-icon.keepaware		{ top: 350px; left: 160px; }

			/* High */
			.lab-frozen-article .prod-icon.pushsecurity		{ top: 0; left: 30px; }
			.lab-frozen-article .prod-icon.seraphic			{ top: 30px; left: 140px; }
			.lab-frozen-article .prod-icon.menlo			{ top: 320px; left: 30px; }
			.lab-frozen-article .prod-icon.defensx			{ top: 470px; left: 30px; }


			.lab-frozen-article .prod-icon .liquidGlass-content {
				display: flex;
				align-self: stretch;
				justify-content: center;
				background: rgba(0,0,0,0.2);
			}
				.lab-frozen-article .prod-icon img {
					transform: rotate(-45deg);
					align-self: center;
				}

	.lab-frozen-article .right {
		background: linear-gradient(to left, rgba(0,0,0,1) 250px, rgba(0,0,0,0))
	}
		.lab-frozen-article .prod-list {
			margin: 0;
			padding: 0;
			list-style: none;
		}
			.lab-frozen-article .prod-list li {
				margin: 0 20px 20px 0;
				font-size: 16px;
				font-weight: 600;
				line-height: 40px;
				float: left;
			}

				.lab-frozen-article .overlay-wrapper .prod-list li {
					margin: 0 10px 10px 0;
					line-height: 30px;
				}
			.lab-frozen-article .prod-list-icon {
				width: 40px;
				height: 40px;
				margin-right: 5px;
				text-align: center;
				background: var(--grey-75);
				border-radius: 5px;
				display: inline-block;
			}
				.lab-frozen-article .overlay-wrapper .prod-list-icon {
					width: 30px;
	
					height: 30px;
				}	
				.lab-frozen-article .prod-list-icon img {
					width: 20px;
				}
				.lab-frozen-article .overlay-wrapper .prod-list-icon img {
					width: 15px;
				}
		.lab-frozen-article .right .small-ul,
		.lab-frozen-article .overlay-wrapper .small-ul {
			line-height: 25px;
		}
.lab-frozen-article .small-ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 15px;
}
	.lab-frozen-article .small-ul a {
		color: inherit;
		text-decoration: none;
	}
	.lab-frozen-article .right .small-ul li {
		transition: color ease 0.5s;
	}
	.lab-frozen-article .right .small-ul li:hover {
		color: var(--white);
	}
.lab-frozen-article .small-ol {
	margin: 0;
	padding: 0 0 0 20px;
	font-size: 15px;
}
	.lab-frozen-article .small-ol a {
		color: var(--grey-25);
		text-decoration-style: dashed;
	}

@media (min-width: 1400px) {
	.lab-frozen-article .container, .lab-frozen-article .container-lg, .lab-frozen-article .container-md, .lab-frozen-article .container-sm, .lab-frozen-article .container-xl, .lab-frozen-article .container-xxl {
		max-width: 1600px;
		padding: 0;
	}
}
@media (max-width: 1200px) {
	.lab-frozen-article h1 {
		font-size: 10em; /* 200px / 20 = 10 */
	}
	.lab-frozen-article .pad-b-500 {
		padding-bottom: 350px;
	}
	.lab-frozen-article .continuum-avg {
		min-height: 654px;
	}
	.lab-frozen-article .cyber-lab-sat .continuum-avg {
		min-height: 750px;
	}	
	.lab-frozen-article #section-threat .section-outer {
		padding-top: 500px;
		background-size: 150%;
	}
}
@media (max-width: 992px) {
	.lab-frozen-article h1 {
		font-size: 3.5em; /* 170px / 20 = 8.5 */
	}
	.lab-frozen-article h2 {
		font-size: 3.2em; /* 70 / 20 = 3.5 */
	}
	.lab-frozen-article h3,
	.lab-frozen-article h2.small,
	.lab-frozen-article .section-quote {
		font-size: 2em; /* 40 / 20 = 2 */
	}
	.lab-frozen-article h4 {
		font-size: 1.5em; /* 30 / 20 = 1.5 */
	}
	.lab-frozen-article .subhead {
		margin-top: 20px;
		font-size: 1.25em; /* 25 / 20 = 1.25 */
	}

	.lab-frozen-article #section-threat .section-outer {
		padding-top: 400px;
		background-size: 150%;
	}
	.lab-frozen-article .bar-percentage,
	.lab-frozen-article .bar-content,
	.lab-frozen-article .bar-content p {
		width: 100%;
	}
	.lab-frozen-article .panel:nth-child(even) {
		margin-left: 0;
	}
	/* CONTINUUM */
	.lab-frozen-article .continuum-low { min-height: 696px;}

	.lab-frozen-article .continuum-high { min-height: 600px;}

		/* EMAIL SECURITY */
		/* Low */
		.lab-frozen-article .prod-icon.mesh				{ top: 120px; left: 30px; }
		.lab-frozen-article .prod-icon.hornet			{ top: 240px; left: 30px; }
		.lab-frozen-article .prod-icon.graphus			{ top: 360px; left: 30px; }
		.lab-frozen-article .prod-icon.material			{ top: 480px; left: 30px; }
		.lab-frozen-article .prod-icon.sublime			{ top: 600px; left: 30px; }

		/* Avg */
		.lab-frozen-article .prod-icon.sophos			{ top: 120px; left: 30px; }
		.lab-frozen-article .prod-icon.paubox			{ top: 240px; left: 30px; }
		.lab-frozen-article .prod-icon.spamtitan		{ top: 290px; left: 130px; }
		.lab-frozen-article .prod-icon.ironscales		{ top: 310px; left: 230px; }
		.lab-frozen-article .prod-icon.cloudflare		{ top: 350px; left: 30px; }
		.lab-frozen-article .prod-icon.mimecast			{ top: 460px; left: 30px; }
		.lab-frozen-article .prod-icon.barracuda		{ top: 510px; left: 140px; }
		.lab-frozen-article .prod-icon.proofpoint		{ top: 570px; left: 30px; }

		/* High */
		.lab-frozen-article .prod-icon.knowbe4			{ top: 120px; left: 30px; }
		.lab-frozen-article .prod-icon.darktrace		{ top: 170px; left: 130px; }
		.lab-frozen-article .prod-icon.abnormal			{ top: 280px; left: 30px; }
		.lab-frozen-article .prod-icon.microsoft		{ top: 350px; left: 30px; }
		.lab-frozen-article .prod-icon.checkpoint		{ top: 490px ; left: 30px; }

		/* SAT */
		/* Low */
		.lab-frozen-article .prod-icon.hackerrangers	{ top: 120px; left: 30px; }
		.lab-frozen-article .prod-icon.idagent			{ top: 240px; left: 30px; }
		.lab-frozen-article .prod-icon.cyberhoot		{ top: 320px; left: 80px; }
		.lab-frozen-article .prod-icon.boxphish			{ top: 400px; left: 30px; }
		.lab-frozen-article .prod-icon.riot				{ top: 520px; left: 30px; }
		.lab-frozen-article .prod-icon.mimecastsat		{ top: 600px; left: 70px; }

		/* Avg */
		.lab-frozen-article .prod-icon.huntress			{ top: 120px; left: 30px; }
		.lab-frozen-article .prod-icon.usecure			{ top: 240px; left: 30px; }
		.lab-frozen-article .prod-icon.metacompliance	{ top: 240px; left: 160px; }
		.lab-frozen-article .prod-icon.sansinstitute	{ top: 310px; left: 90px; }
		.lab-frozen-article .prod-icon.ninjio			{ top: 310px; left: 230px; }
		.lab-frozen-article .prod-icon.infoseciq		{ top: 390px; left: 30px; }
		.lab-frozen-article .prod-icon.barracudasat		{ top: 460px; left: 90px; }
		.lab-frozen-article .prod-icon.immersive		{ top: 490px; left: 190px; }
		.lab-frozen-article .prod-icon.sosafe			{ top: 540px; left: 30px; }
		.lab-frozen-article .prod-icon.proofpointsat	{ top: 620px; left: 90px; }

		/* High */
		.lab-frozen-article .prod-icon.hoxhunt			{ top: 120px; left: 30px; }
		.lab-frozen-article .prod-icon.adaptive			{ top: 240px; left: 30px; }
		.lab-frozen-article .prod-icon.phished			{ top: 360px; left: 30px; }
		.lab-frozen-article .prod-icon.knowbe4sat		{ top: 480px; left: 30px; }

		/* BROWSER SECURITY */
		/* Low */
		.lab-frozen-article .prod-icon.manageengine		{ top: 120px; left: 30px; }
		.lab-frozen-article .prod-icon.checkpointharmony{ top: 250px; left: 30px; }
		.lab-frozen-article .prod-icon.squarex			{ top: 400px; left: 30px; }

		/* Avg */
		.lab-frozen-article .prod-icon.layerx			{ top: 120px; left: 30px; }
		.lab-frozen-article .prod-icon.apozy			{ top: 120px; left: 160px; }
		.lab-frozen-article .prod-icon.conceal			{ top: 290px; left: 30px; }
		.lab-frozen-article .prod-icon.acium			{ top: 290px; left: 160px; }
		.lab-frozen-article .prod-icon.redaccess		{ top: 470px; left: 30px; }
		.lab-frozen-article .prod-icon.keepaware		{ top: 470px; left: 160px; }

		/* High */
		.lab-frozen-article .prod-icon.pushsecurity		{ top: 120px; left: 30px; }
		.lab-frozen-article .prod-icon.seraphic			{ top: 150px; left: 140px; }
		.lab-frozen-article .prod-icon.menlo			{ top: 380px; left: 30px; }
		.lab-frozen-article .prod-icon.defensx			{ top: 510px; left: 30px; }

	.lab-frozen-article .cta-wrapper h3,
	.lab-frozen-article .cta-wrapper p {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.lab-frozen-article h1 {
		font-size: 3.5em; /* 170px / 20 = 8.5 */
	}
	.lab-frozen-article .pad-b-500 {
		padding-bottom: 200px;
	}
	.lab-frozen-article .panel {
		padding: 20px;
	}
	.lab-frozen-article .nav-list ul li a {
		font-size: 1.5em; /* 30 / 20 = 1.5 */	
	}
}
@media (max-width: 576px) {

	/* HEADER */
	.lab-frozen-article .header-wrapper {
		width: calc(100% - 24px);
		margin-left: 12px;
	}
	.lab-frozen-article .section-outer {
		margin: 0;
	}
	/* FORMS */
	.lab-frozen-article .hs-email, 
	.lab-frozen-article .hs-submit {
		width: 100%;
	}
	.lab-frozen-article .hero-form .small-print {
		margin-left: 0;
		text-align: center;
	}
}

/* TABLE OF CONTENTS */
.lab-frozen-article #section-toc h2.small {
	margin-bottom: 0;
}
.lab-frozen-article .toc-card {
	color: inherit;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 10px;
	transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 400ms ease;
}
	.lab-frozen-article .toc-card:hover {
		color: inherit;
		transform: translateY(-4px);
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
	}
	.lab-frozen-article .toc-card:focus-visible {
		outline: 2px solid var(--black);
		outline-offset: 4px;
	}
	.lab-frozen-article .toc-icon {
		width: 64px;
		height: 64px;
		flex: 0 0 64px;
		border-radius: 10px;
	}
	.lab-frozen-article .toc-content {
		flex: 1;
		min-width: 0;
	}
		.lab-frozen-article .toc-content h4 {
			margin-bottom: 6px;
		}
		.lab-frozen-article .toc-content p {
			margin: 0;
			color: var(--grey-50);
			font-size: 17px;
			line-height: 1.4em;
		}
	.lab-frozen-article .toc-chip {
		padding: 0 10px;
		margin-left: 8px;
		font-family: 'Inter Tight', 'Arial', sans-serif;
		font-size: 12px;
		font-weight: 700;
		line-height: 22px;
		color: var(--white);
		text-transform: uppercase;
		letter-spacing: 0.06em;
		background: var(--black);
		border-radius: 9999px;
		display: inline-block;
		vertical-align: middle;
	}

@media (max-width: 992px) {
	.lab-frozen-article .toc-card {
		margin-bottom: 12px;
	}
		.lab-frozen-article .toc-card .toc-icon {
			width: 56px;
			height: 56px;
			flex-basis: 56px;
		}
}

/* STICKY CTA */
.lab-frozen-article .sticky-cta {
	position: fixed;
	z-index: 100;
	bottom: 30px;
	left: 50%;
	width: calc(100% - 60px);
	max-width: 350px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(-50%) translateY(20px);
	transition:
		opacity 400ms cubic-bezier(0.22, 1, 0.36, 1),
		transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0s linear 400ms;
}
	.lab-frozen-article .sticky-cta.visible {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateX(-50%) translateY(0);
		transition:
			opacity 400ms cubic-bezier(0.22, 1, 0.36, 1),
			transform 400ms cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0s linear 0s;
	}
	.lab-frozen-article .sticky-cta.submitted {
		display: none !important;
	}
	.lab-frozen-article .form-success {
		margin: 0;
		padding: 1em 0;
		font-weight: 600;
	}
	.lab-frozen-article .sticky-cta .liquidGlass-wrapper {
		border-radius: 9999px;
	}
	.lab-frozen-article .sticky-cta-text {
		display: block;
		margin: 0 0 8px 0;
		padding-left: 30px;
		font-family: 'Inter Tight', 'Arial', sans-serif;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.06em;
		text-transform: uppercase;
		line-height: 1em;
		color: var(--black);
		white-space: nowrap;
		transition: color 200ms ease;
	}
	.lab-frozen-article .sticky-cta.theme-white .sticky-cta-text {
		color: var(--white);
	}
	.lab-frozen-article .sticky-cta-content {
		display: block;
		padding: 6px 6px 6px 16px;
	}
		.lab-frozen-article .sticky-cta-form {
			flex: 1;
			min-width: 0;
		}
		/* Compact HubSpot form overrides scoped to sticky CTA */
		.lab-frozen-article .sticky-cta form {
			width: 100%;
			display: flex;
			flex-wrap: nowrap;
			align-items: center;
			gap: 6px;
			justify-content: flex-end;
		}
		.lab-frozen-article .sticky-cta .hs_email {
			width: auto;
			flex: 1;
			min-width: 0;
		}
			.lab-frozen-article .sticky-cta .hs_email > label:first-child {
				display: none;
			}
			.lab-frozen-article .sticky-cta .hs_email input[type="email"] {
				width: 100%;
				min-width: 0;
				margin: 0;
				padding: 0 14px;
				font-family: 'Inter Tight', 'Arial', sans-serif;
				font-size: 14px;
				font-weight: 600;
				line-height: 40px;
				color: var(--black);
				border: none;
				outline: none;
				background: transparent;
				display: block;
				transition: color 200ms ease;
			}
				.lab-frozen-article .sticky-cta .hs_email input[type="email"]::placeholder {
					color: var(--grey-50);
					transition: color 200ms ease;
				}
				.lab-frozen-article .sticky-cta.theme-white .hs_email input[type="email"] {
					color: var(--white);
				}
				.lab-frozen-article .sticky-cta.theme-white .hs_email input[type="email"]::placeholder {
					color: rgba(255, 255, 255, 0.6);
				}
		.lab-frozen-article .sticky-cta .hs_submit {
			width: auto;
			flex: 0 0 auto;
		}
			.lab-frozen-article .sticky-cta .hs_submit input[type="submit"] {
				padding: 0 18px;
				font-family: 'Inter Tight', 'Arial', sans-serif;
				font-size: 14px;
				font-weight: 700;
				line-height: 40px;
				color: var(--white);
				background: var(--black);
				border: none;
				border-radius: 9999px;
				cursor: pointer;
				box-shadow: none;
				transition: background 200ms ease, color 200ms ease;
			}
				.lab-frozen-article .sticky-cta.theme-white .hs_submit input[type="submit"] {
					background: var(--white);
					color: var(--black);
				}
		.lab-frozen-article .sticky-cta .hs-error-msgs {
			display: none;
		}
		.lab-frozen-article .sticky-cta .submitted-message {
			padding: 0 14px;
			font-family: 'Inter Tight', 'Arial', sans-serif;
			font-size: 14px;
			font-weight: 600;
			line-height: 40px;
			color: var(--black);
		}

@media (max-width: 992px) {
	.lab-frozen-article .sticky-cta {
		left: 0;
		right: auto;
		bottom: 0;
		width: 100%;
		max-width: none;
		transform: translateY(20px);
	}
	.lab-frozen-article .sticky-cta.visible {
		transform: translateY(0);
	}
		.lab-frozen-article .sticky-cta .liquidGlass-wrapper {
			border-radius: 0;
			box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
		}
		.lab-frozen-article .sticky-cta .liquidGlass-tint {
			background: rgba(0, 0, 0, 0.92);
		}
		.lab-frozen-article .sticky-cta-content {
			padding: 10px 10px 10px 14px;
			padding-bottom: calc(10px + env(safe-area-inset-bottom));
		}
		.lab-frozen-article .sticky-cta-text {
			display: none;
		}
		.lab-frozen-article .sticky-cta .hs_email input[type="email"] {
			color: var(--white);
		}
			.lab-frozen-article .sticky-cta .hs_email input[type="email"]::placeholder {
				color: rgba(255, 255, 255, 0.6);
			}
		.lab-frozen-article .sticky-cta .hs_submit input[type="submit"] {
			background: var(--white);
			color: var(--black);
		}
		.lab-frozen-article .sticky-cta .submitted-message {
			color: var(--white);
		}
}

/* HEADER SCROLL PROGRESS BAR */
.lab-frozen-article .header-progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	z-index: 4;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.06);
}
	.lab-frozen-article .header-progress-fill {
		width: 0%;
		height: 100%;
		background: var(--black);
		transition: width 80ms linear;
	}
	.lab-frozen-article header.theme-white .header-progress {
		background: rgba(255, 255, 255, 0.12);
	}
	.lab-frozen-article header.theme-white .header-progress-fill {
		background: var(--white);
	}

/* HEADER MARQUEE
   Gated on header.has-marquee so the shared production CSS only squares the nav
   and shows the strip on pages that actually render a marquee. */
.lab-frozen-article header.has-marquee .header-wrapper {
	position: relative;
	z-index: 2;        /* keep the pill above the marquee */
	/* stay rounded until the marquee drops at 3s, then square the bottom in sync so the two merge */
	animation: header-nav-square 600ms cubic-bezier(0.22, 1, 0.36, 1) 3000ms both;
}
@keyframes header-nav-square {
	from { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; }
	to   { border-bottom-left-radius: 0; border-bottom-right-radius: 0; }
}
.lab-frozen-article header.has-marquee .header-marquee-col {
	position: relative;
	z-index: 1;            /* sits behind the header pill so it reads as sliding from behind the nav */
	padding-left: 0;       /* drop the Bootstrap gutter so the strip edges line up with the nav */
	padding-right: 0;
	pointer-events: none;
}
	/* Mask hides the strip AND its drop shadow while they are tucked behind the nav, so the two only ever
	   appear together. It is taller than the strip purely to leave room for the shadow below. */
	.lab-frozen-article header.has-marquee .header-marquee-mask {
		height: 46px;
		overflow: hidden;
	}
		.lab-frozen-article header.has-marquee .header-marquee {
			display: block;
			height: 30px;
			overflow: hidden;  /* clips the scrolling track */
			background: #0072ff;
			border-radius: 0 0 20px 20px;   /* rounded bottom matches the nav's rounded top for one continuous pill */
			box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);   /* shadow rides with the strip, so it is clipped until reveal */
			text-decoration: none;
			pointer-events: auto;   /* re-enable clicks on the visible strip (the col is pointer-events:none) */
			transform: translateY(-100%);   /* start hidden behind the nav */
			animation: header-marquee-drop 600ms cubic-bezier(0.22, 1, 0.36, 1) 3000ms both;   /* reveal 3s after load */
		}
		@keyframes header-marquee-drop {
			from { transform: translateY(-100%); }
			to   { transform: translateY(0); }
		}
			.lab-frozen-article header.has-marquee .header-marquee-track {
				display: flex;
				width: max-content;
				height: 100%;
				animation: header-marquee-scroll 30s linear infinite;
			}
			@keyframes header-marquee-scroll {
				from { transform: translateX(0); }
				to   { transform: translateX(-50%); }   /* two identical sequences loop seamlessly */
			}
				.lab-frozen-article header.has-marquee .header-marquee-seq {
					display: flex;
					flex: 0 0 auto;
					align-items: center;
					height: 100%;
				}
					/* "LIVE" pill: white background, blue uppercase text */
					.lab-frozen-article header.has-marquee .header-marquee-pill {
						flex: 0 0 auto;
						margin-right: 10px;
						padding: 3px 9px;
						background: var(--white);
						color: #0072ff;
						border-radius: 9999px;
						font-family: 'Inter Tight', 'Arial', sans-serif;
						font-size: 11px;
						font-weight: 700;
						line-height: 1;
						letter-spacing: 0.06em;
						text-transform: uppercase;
						white-space: nowrap;
					}
					.lab-frozen-article header.has-marquee .header-marquee-text,
					.lab-frozen-article header.has-marquee .header-marquee-cta {
						flex: 0 0 auto;
						color: var(--white);
						font-family: 'Inter Tight', 'Arial', sans-serif;
						font-size: 13px;
						font-weight: 700;
						letter-spacing: 0.02em;
						line-height: 30px;
						white-space: nowrap;
					}
					.lab-frozen-article header.has-marquee .header-marquee-text {
						margin-right: 10px;
						opacity: 0.85;
					}
					.lab-frozen-article header.has-marquee .header-marquee-cta {
						margin-right: 48px;   /* larger gap before the next unit's pill */
						opacity: 1;
						text-decoration: underline dashed;
						text-decoration-thickness: 1px;
						text-underline-offset: 3px;
					}
	@media (prefers-reduced-motion: reduce) {
		.lab-frozen-article header.has-marquee .header-wrapper {
			animation: none;
			border-bottom-left-radius: 0;
			border-bottom-right-radius: 0;
		}
		.lab-frozen-article header.has-marquee .header-marquee {
			transform: translateY(0);
			animation: none;
		}
		.lab-frozen-article header.has-marquee .header-marquee-track {
			animation: none;
		}
	}
	@media (max-width: 576px) {
		/* the nav becomes inset on mobile (.header-wrapper: width 100% - 24px; margin-left 12px),
		   so restore a matching 12px gutter on the marquee column to keep their edges aligned */
		.lab-frozen-article header.has-marquee .header-marquee-col {
			padding-left: 12px;
			padding-right: 12px;
		}
	}

/* BAR CHART FILL ANIMATION */
@media (prefers-reduced-motion: no-preference) {
	.lab-frozen-article .bar {
		transition: width 900ms cubic-bezier(0.22, 1, 0.36, 1);
	}
	.lab-frozen-article .bar-wrapper:not(.in-view) .bar {
		width: 0;
	}
}

/* CURSOR-REACTIVE SHINE */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
	.lab-frozen-article .toc-card .liquidGlass-shine,
	.lab-frozen-article .prod-icon .liquidGlass-shine {
		background:
			radial-gradient(
				circle 120px at var(--shine-x, 50%) var(--shine-y, 50%),
				rgba(255, 255, 255, 0.45),
				transparent 70%
			);
		transition: background 120ms linear;
	}
}

/* CONSULTATION CTA (secondary variant) */
.lab-frozen-article .cta-wrapper.cta-secondary {
	padding: 30px 40px;
	background-image:
		linear-gradient(to right, var(--grey-10), rgba(238, 240, 241, 0)),
		url('https://tekspace.com.au/wp-content/themes/tekspace/lab-images/overlapping-circles.png');
	background-repeat: no-repeat;
	background-position: center right;
	background-size: auto 100%;
}
	.lab-frozen-article .cta-wrapper.cta-secondary h4 {
		width: 60%;
		margin-bottom: 10px;
		font-size: 1.4em; /* 28 / 20 */
	}
	.lab-frozen-article .cta-wrapper.cta-secondary p {
		width: 60%;
		margin-bottom: 20px;
		font-size: 17px;
	}
	.lab-frozen-article .cta-wrapper.cta-secondary .btn-white {
		line-height: 50px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	}
	.lab-frozen-article .cta-wrapper.cta-secondary .small-print {
		margin: 0 0 0 15px;
		display: inline-block;
		vertical-align: middle;
	}
@media (max-width: 992px) {
	.lab-frozen-article .cta-wrapper.cta-secondary h4,
	.lab-frozen-article .cta-wrapper.cta-secondary p {
		width: 100%;
	}
	.lab-frozen-article .cta-wrapper.cta-secondary .small-print {
		display: block;
		margin: 15px 0 0 0;
	}
}

/* CONCLUSION SUBSCRIBE BLOCK */
.lab-frozen-article .conclusion-subscribe-block {
	padding: 50px;
}
	.lab-frozen-article .conclusion-subscribe-block h3 {
		margin-bottom: 10px;
	}
	.lab-frozen-article .conclusion-subscribe-block > p {
		margin-bottom: 30px;
		color: var(--grey-50);
	}
	.lab-frozen-article .conclusion-form-wrapper {
		border-radius: 30px;
	}
	.lab-frozen-article .conclusion-subscribe-block .small-print {
		margin-top: 15px;
	}
@media (max-width: 768px) {
	.lab-frozen-article .conclusion-subscribe-block {
		padding: 30px;
	}
}

/* PUSH SCROLL ANCHORS BELOW FIXED HEADER */
.lab-frozen-article section[id^="section-"] {
	scroll-margin-top: 110px;
}