/*
Theme Name: Northlake Signal
Author: Mara Ellison
Description: A classic PHP WordPress theme with a bold agency layout, editable Customizer controls, dynamic menus, and footprint-conscious naming.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: slf-theme
*/

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--slf-color-dark);
	background: #ffffff;
	font-family: var(--slf-font-body);
	font-size: var(--slf-body-font-size);
	line-height: 1.7;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.slf-menu-open {
	overflow: hidden;
}

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

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

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

.slf-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 999;
	transform: translateY(-140%);
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--slf-color-dark);
	color: #ffffff;
	font-family: var(--slf-font-body);
	font-weight: 700;
	transition: transform 180ms ease;
}

.slf-skip-link:focus {
	transform: translateY(0);
}

.slf-shell {
	width: min(100% - 60px, 1205px);
	margin-inline: auto;
}

.slf-site-header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 50;
	width: 100%;
	padding-top: 30px;
}

.slf-header-pill {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 98px;
	padding: 0 50px;
	border-radius: 999px;
	background: var(--slf-color-cream);
	box-shadow: 0 12px 30px rgba(22, 22, 20, 0.06);
}

.slf-brand {
	display: inline-flex;
	align-items: center;
	min-width: 132px;
	color: var(--slf-color-primary);
	font-family: var(--slf-font-heading);
	font-size: clamp(1.85rem, 3vw, 2.65rem);
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0;
}

.slf-brand img {
	width: auto;
	max-width: 185px;
	max-height: 58px;
}

.slf-brand-text {
	display: inline-block;
	max-width: 14ch;
	overflow-wrap: anywhere;
}

.slf-desktop-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	padding-inline: 34px;
}

.slf-nav-list {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.slf-menu-item {
	position: relative;
	margin: 0;
	padding: 0;
}

.slf-menu-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--slf-color-primary);
	font-family: var(--slf-font-heading);
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: 0;
	transition: color 160ms ease, transform 160ms ease;
}

.slf-menu-link:hover,
.slf-menu-link:focus-visible,
.slf-menu-item-current > .slf-menu-link {
	color: var(--slf-color-accent);
	transform: translateY(-1px);
}

.slf-menu-item-has-children > .slf-menu-link::after {
	content: "+";
	margin-left: 7px;
	font-size: 1.1em;
}

.slf-sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	z-index: 20;
	display: grid;
	min-width: 220px;
	margin: 0;
	padding: 18px;
	list-style: none;
	border-radius: 24px;
	background: var(--slf-color-cream);
	box-shadow: 0 20px 50px rgba(22, 22, 20, 0.16);
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) translateY(8px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.slf-menu-item-has-children:hover > .slf-sub-menu,
.slf-menu-item-has-children:focus-within > .slf-sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.slf-header-cta,
.slf-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 74px;
	padding: 0 30px;
	border: 0;
	border-radius: 999px;
	background: #ffffff;
	color: var(--slf-color-accent);
	font-family: var(--slf-font-heading);
	font-size: 20px;
	line-height: 1.7;
	letter-spacing: 0;
	cursor: pointer;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.slf-header-cta:hover,
.slf-header-cta:focus-visible,
.slf-button:hover,
.slf-button:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(22, 22, 20, 0.14);
}

.slf-button-dark {
	background: var(--slf-color-dark);
	color: #ffffff;
}

.slf-button-blue {
	background: #ffffff;
	color: var(--slf-color-primary);
}

.slf-arrow {
	display: inline-block;
	font-size: 1.25em;
	line-height: 1;
	transform: translateY(-1px);
}

.slf-menu-toggle {
	position: relative;
	z-index: 90;
	display: none;
	width: 54px;
	height: 54px;
	padding: 0;
	border: 0;
	border-radius: 14px;
	background: transparent;
	color: var(--slf-color-dark);
	cursor: pointer;
	pointer-events: auto;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.slf-mobile-check {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	opacity: 0;
	pointer-events: none;
}

.slf-menu-toggle-lines,
.slf-menu-toggle-lines::before,
.slf-menu-toggle-lines::after {
	display: block;
	width: 26px;
	height: 4px;
	margin-inline: auto;
	border-radius: 99px;
	background: currentColor;
	content: "";
	transition: transform 180ms ease, opacity 180ms ease;
}

.slf-menu-toggle-lines {
	position: relative;
}

.slf-menu-toggle-lines::before,
.slf-menu-toggle-lines::after {
	position: absolute;
	left: 0;
}

.slf-menu-toggle-lines::before {
	top: -9px;
}

.slf-menu-toggle-lines::after {
	top: 9px;
}

.slf-menu-toggle[aria-expanded="true"] .slf-menu-toggle-lines,
.slf-mobile-check:checked ~ .slf-header-pill .slf-menu-toggle-lines {
	background: transparent;
}

.slf-menu-toggle[aria-expanded="true"] .slf-menu-toggle-lines::before,
.slf-mobile-check:checked ~ .slf-header-pill .slf-menu-toggle-lines::before {
	top: 0;
	transform: rotate(45deg);
}

.slf-menu-toggle[aria-expanded="true"] .slf-menu-toggle-lines::after,
.slf-mobile-check:checked ~ .slf-header-pill .slf-menu-toggle-lines::after {
	top: 0;
	transform: rotate(-45deg);
}

.slf-mobile-panel {
	display: none;
}

.slf-main {
	min-height: 60vh;
}

.slf-hero {
	position: relative;
	min-height: var(--slf-hero-min-height);
	overflow: hidden;
	padding: 205px 0 120px;
	background: var(--slf-color-primary);
}

.slf-hero::before {
	position: absolute;
	top: 250px;
	left: 13%;
	width: 74%;
	height: 420px;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 2px, transparent 2.5px);
	background-size: 13px 13px;
	border-radius: 999px;
	content: "";
	filter: blur(0.2px);
	opacity: 0.72;
	transform: rotate(2deg);
}

.slf-hero::after {
	position: absolute;
	top: 345px;
	right: 15.5%;
	width: 34px;
	height: 34px;
	background: #ffffff;
	clip-path: polygon(50% 0, 61% 35%, 96% 20%, 76% 50%, 96% 80%, 61% 65%, 50% 100%, 39% 65%, 4% 80%, 24% 50%, 4% 20%, 39% 35%);
	content: "";
}

.slf-hero-inner {
	position: relative;
	z-index: 2;
}

.slf-hero-title {
	position: relative;
	z-index: 3;
	max-width: 1180px;
	margin: 0;
	color: #ffffff;
	font-family: var(--slf-font-heading);
	font-size: clamp(42px, 7vw, var(--slf-hero-font-size));
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0;
	text-wrap: balance;
}

.slf-hero-label {
	position: absolute;
	z-index: 5;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 145px;
	min-height: 64px;
	padding: 14px 24px;
	border-radius: 999px;
	color: #ffffff;
	font-family: var(--slf-font-heading);
	font-size: 16px;
	line-height: 1.7;
	box-shadow: 0 14px 38px rgba(22, 22, 20, 0.08);
}

.slf-hero-label-one {
	top: 285px;
	right: 23%;
	background: color-mix(in srgb, var(--slf-color-accent) 70%, transparent);
}

.slf-hero-label-two {
	top: 520px;
	left: 45%;
	background: color-mix(in srgb, var(--slf-color-lime) 45%, transparent);
	color: #ffffff;
}

.slf-hero-label-three {
	right: 4%;
	bottom: 240px;
	background: color-mix(in srgb, var(--slf-color-lime) 62%, transparent);
	color: var(--slf-color-dark);
}

.slf-hero-media {
	position: absolute;
	right: 30px;
	bottom: 100px;
	z-index: 2;
	width: min(47vw, 560px);
	aspect-ratio: 1.35;
	overflow: hidden;
	border-radius: 130px 28px 28px 130px;
	background: rgba(255, 255, 255, 0.14);
	box-shadow: 0 32px 70px rgba(22, 22, 20, 0.24);
}

.slf-hero-media img,
.slf-hero-media .slf-image-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slf-hero-card {
	position: absolute;
	left: 30px;
	bottom: 72px;
	z-index: 6;
	display: grid;
	grid-template-columns: minmax(80px, 118px) minmax(0, 1fr);
	gap: 36px;
	align-items: center;
	width: min(64vw, 690px);
	padding: 30px 36px;
	border-radius: 38px;
	background: rgba(22, 22, 20, 0.24);
	backdrop-filter: blur(8px);
	color: #ffffff;
}

.slf-hero-card-title {
	margin: 0;
	color: #ffffff;
	font-family: var(--slf-font-heading);
	font-size: var(--slf-card-font-size);
	font-weight: 400;
	line-height: 1.3;
}

.slf-hero-card-text {
	margin: 0;
	color: #ffffff;
	font-size: calc(var(--slf-body-font-size) + 2px);
	font-weight: 500;
	line-height: 1.7;
}

.slf-icon {
	position: absolute;
	z-index: 4;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	object-fit: cover;
	filter: drop-shadow(0 14px 24px rgba(22, 22, 20, 0.16));
}

.slf-icon-one {
	top: 190px;
	left: 20%;
}

.slf-icon-two {
	top: 430px;
	right: 9%;
}

.slf-icon-three {
	bottom: 190px;
	left: 32%;
}

.slf-icon-four {
	bottom: 160px;
	right: 30%;
}

.slf-section {
	padding: 110px 0;
	background: #ffffff;
}

.slf-section-compact {
	padding-top: 70px;
}

.slf-section-blue {
	background: var(--slf-color-primary);
	color: #ffffff;
}

.slf-section-head {
	display: grid;
	grid-template-columns: minmax(0, 700px) minmax(280px, 340px);
	gap: 60px;
	align-items: end;
	justify-content: space-between;
	margin-bottom: 70px;
}

.slf-section-title {
	margin: 0;
	color: var(--slf-color-dark);
	font-family: var(--slf-font-heading);
	font-size: clamp(30px, 4.4vw, var(--slf-section-font-size));
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0;
	text-wrap: balance;
}

.slf-section-blue .slf-section-title {
	color: #ffffff;
}

.slf-section-text {
	margin: 0;
	color: var(--slf-color-text);
	font-size: calc(var(--slf-body-font-size) + 2px);
	font-weight: 500;
	line-height: 1.7;
}

.slf-topic-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
	align-items: stretch;
}

.slf-topic-card {
	position: relative;
	display: flex;
	min-height: 355px;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
	padding: 36px;
	border-radius: 42px;
	color: var(--slf-color-dark);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.slf-topic-card:hover,
.slf-topic-card:focus-visible {
	transform: translateY(-5px);
	box-shadow: 0 24px 50px rgba(22, 22, 20, 0.14);
}

.slf-topic-card::before {
	position: absolute;
	right: -60px;
	bottom: -80px;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.24);
	content: "";
}

.slf-topic-card-title {
	position: relative;
	z-index: 2;
	margin: 0 0 24px;
	font-family: var(--slf-font-heading);
	font-size: clamp(22px, 2vw, var(--slf-card-font-size));
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0;
}

.slf-topic-card-text {
	position: relative;
	z-index: 2;
	margin: 0;
	color: currentColor;
	font-size: calc(var(--slf-body-font-size) + 2px);
	font-weight: 500;
	line-height: 1.7;
}

.slf-topic-card-count {
	position: relative;
	z-index: 2;
	align-self: flex-start;
	margin-top: 34px;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.36);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.slf-card-pink {
	background: var(--slf-color-pink);
}

.slf-card-lime {
	background: var(--slf-color-lime);
}

.slf-card-sky {
	background: var(--slf-color-sky);
	color: #ffffff;
}

.slf-card-accent {
	background: var(--slf-color-accent);
	color: #ffffff;
}

.slf-card-yellow {
	background: var(--slf-color-yellow);
}

.slf-post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px;
}

.slf-post-card {
	position: relative;
	display: grid;
	min-height: 510px;
	overflow: hidden;
	border-radius: 46px;
	background: var(--slf-color-cream);
	color: var(--slf-color-dark);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.slf-post-card:hover,
.slf-post-card:focus-visible {
	transform: translateY(-5px);
	box-shadow: 0 26px 60px rgba(22, 22, 20, 0.16);
}

.slf-post-card-media {
	position: relative;
	min-height: 300px;
	overflow: hidden;
	background: var(--slf-color-pink);
}

.slf-post-card-image {
	width: 100%;
	height: 100%;
	min-height: 300px;
	object-fit: cover;
	transition: transform 240ms ease;
}

.slf-post-card:hover .slf-post-card-image,
.slf-post-card:focus-visible .slf-post-card-image {
	transform: scale(1.035);
}

.slf-image-placeholder {
	width: 100%;
	min-height: 260px;
	background:
		radial-gradient(circle at 30% 35%, rgba(255, 255, 255, 0.38), transparent 24%),
		radial-gradient(circle at 70% 65%, rgba(22, 22, 20, 0.16), transparent 28%),
		linear-gradient(135deg, var(--slf-color-pink), var(--slf-color-sky));
}

.slf-post-card-body {
	display: grid;
	gap: 18px;
	padding: 30px;
}

.slf-post-card-meta,
.slf-entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	color: var(--slf-color-text);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

.slf-post-card-title {
	margin: 0;
	font-family: var(--slf-font-heading);
	font-size: clamp(22px, 2.4vw, var(--slf-card-font-size));
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0;
}

.slf-post-card-excerpt {
	margin: 0;
	color: var(--slf-color-text);
	font-size: calc(var(--slf-body-font-size) + 1px);
	font-weight: 500;
	line-height: 1.65;
}

.slf-empty-state {
	padding: 34px;
	border: 2px dashed color-mix(in srgb, var(--slf-color-primary) 38%, transparent);
	border-radius: 28px;
	color: var(--slf-color-text);
	font-weight: 600;
}

.slf-page-hero {
	padding: 190px 0 90px;
	background: var(--slf-color-primary);
	color: #ffffff;
}

.slf-page-title {
	max-width: 1000px;
	margin: 0;
	font-family: var(--slf-font-heading);
	font-size: clamp(38px, 6vw, var(--slf-hero-font-size));
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0;
	text-wrap: balance;
}

.slf-content-wrap {
	display: grid;
	grid-template-columns: minmax(0, 820px);
	justify-content: center;
	padding: 90px 0;
}

.slf-article {
	width: 100%;
}

.slf-entry-header {
	display: grid;
	gap: 24px;
	margin-bottom: 44px;
}

.slf-entry-title {
	margin: 0;
	font-family: var(--slf-font-heading);
	font-size: clamp(34px, 5vw, var(--slf-hero-font-size));
	font-weight: 400;
	line-height: 1.22;
	letter-spacing: 0;
	text-wrap: balance;
}

.slf-entry-image {
	overflow: hidden;
	margin: 0 0 48px;
	border-radius: 46px;
	background: var(--slf-color-cream);
}

.slf-entry-image img {
	width: 100%;
	max-height: 640px;
	object-fit: cover;
}

.slf-entry-content {
	color: var(--slf-color-text);
	font-size: calc(var(--slf-body-font-size) + 2px);
	font-weight: 500;
	line-height: 1.8;
}

.slf-entry-content > * {
	margin-top: 0;
	margin-bottom: 1.35em;
}

.slf-entry-content h2,
.slf-entry-content h3,
.slf-entry-content h4 {
	color: var(--slf-color-dark);
	font-family: var(--slf-font-heading);
	font-weight: 400;
	line-height: 1.35;
	letter-spacing: 0;
}

.slf-entry-content h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
}

.slf-entry-content h3 {
	font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.slf-entry-content a {
	color: var(--slf-color-primary);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

.slf-entry-content blockquote {
	margin-inline: 0;
	padding: 28px 34px;
	border-left: 8px solid var(--slf-color-accent);
	border-radius: 24px;
	background: var(--slf-color-cream);
	color: var(--slf-color-dark);
}

.slf-entry-footer {
	margin-top: 48px;
	padding-top: 28px;
	border-top: 1px solid rgba(22, 22, 20, 0.16);
	color: var(--slf-color-text);
	font-weight: 700;
}

.slf-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 54px;
}

.slf-page-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	height: 46px;
	padding: 0 14px;
	border-radius: 999px;
	background: var(--slf-color-cream);
	color: var(--slf-color-primary);
	font-weight: 800;
}

.slf-page-link-current {
	background: var(--slf-color-dark);
	color: #ffffff;
}

.slf-footer-cta {
	position: relative;
	overflow: hidden;
	padding: 105px 0;
	background: var(--slf-color-primary);
	color: #ffffff;
}

.slf-footer-cta::before {
	position: absolute;
	inset: 18% auto auto 55%;
	width: 520px;
	height: 260px;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 2px, transparent 2.5px);
	background-size: 13px 13px;
	border-radius: 999px;
	content: "";
	transform: translateX(-50%) rotate(-4deg);
}

.slf-footer-cta-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 760px) auto;
	gap: 42px;
	align-items: center;
}

.slf-footer-cta-title {
	margin: 0;
	font-family: var(--slf-font-heading);
	font-size: clamp(34px, 5vw, var(--slf-section-font-size));
	font-weight: 400;
	line-height: 1.28;
	letter-spacing: 0;
	text-wrap: balance;
}

.slf-site-footer {
	background: var(--slf-color-cream);
	color: var(--slf-color-dark);
}

.slf-footer-main {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 44px;
	padding: 70px 0 50px;
}

.slf-footer-title {
	margin: 0 0 24px;
	color: var(--slf-color-primary);
	font-family: var(--slf-font-heading);
	font-size: clamp(30px, 4vw, var(--slf-section-font-size));
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0;
}

.slf-footer-heading {
	margin: 0 0 18px;
	font-family: var(--slf-font-heading);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0;
}

.slf-footer-contact {
	display: grid;
	gap: 12px;
	margin: 0;
	color: var(--slf-color-text);
	font-weight: 700;
}

.slf-footer-contact a {
	color: var(--slf-color-primary);
}

.slf-footer-nav .slf-nav-list {
	display: grid;
	gap: 8px;
}

.slf-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	align-items: center;
	justify-content: space-between;
	padding: 24px 0 32px;
	border-top: 1px solid rgba(22, 22, 20, 0.12);
	color: var(--slf-color-text);
	font-size: 15px;
	font-weight: 700;
}

.slf-screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

@media (max-width: 1024px) {
	.slf-shell {
		width: min(100% - 40px, 920px);
	}

	.slf-desktop-navigation,
	.slf-header-cta {
		display: none;
	}

	.slf-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 0 0 54px;
	}

	.slf-header-pill {
		min-height: 68px;
		padding: 0 18px 0 20px;
	}

	.slf-brand {
		font-size: 1.8rem;
	}

	.slf-mobile-panel {
		position: absolute;
		top: 30px;
		left: 20px;
		right: 20px;
		z-index: 70;
		display: none;
		max-height: calc(100vh - 48px);
		overflow-y: auto;
		padding: 82px 20px 30px;
		border-radius: 30px;
		background: var(--slf-color-cream);
		box-shadow: 0 30px 70px rgba(22, 22, 20, 0.22);
	}

	.slf-mobile-check:checked ~ .slf-mobile-panel {
		display: block;
	}

	.slf-mobile-panel .slf-nav-list {
		display: grid;
		gap: 11px;
	}

	.slf-mobile-panel .slf-menu-link {
		min-height: 32px;
		color: var(--slf-color-dark);
		font-size: 22px;
		line-height: 1.45;
	}

	.slf-mobile-panel .slf-sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		margin: 8px 0 6px 18px;
		padding: 0;
		background: transparent;
		box-shadow: none;
		opacity: 1;
		pointer-events: auto;
		transform: none;
	}

	.slf-mobile-panel .slf-button {
		width: 100%;
		margin-top: 26px;
	}

	.slf-mobile-brand {
		position: absolute;
		top: 22px;
		left: 20px;
		color: var(--slf-color-primary);
		font-family: var(--slf-font-heading);
		font-size: 1.75rem;
		line-height: 1;
		text-transform: uppercase;
	}

	.slf-mobile-close {
		position: absolute;
		top: 18px;
		right: 18px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		padding: 0;
		border: 2px solid var(--slf-color-primary);
		border-radius: 8px;
		background: var(--slf-color-yellow);
		color: var(--slf-color-dark);
		cursor: pointer;
		touch-action: manipulation;
		-webkit-tap-highlight-color: transparent;
	}

	.slf-mobile-close::before,
	.slf-mobile-close::after {
		position: absolute;
		width: 22px;
		height: 4px;
		border-radius: 99px;
		background: currentColor;
		content: "";
	}

	.slf-mobile-close::before {
		transform: rotate(45deg);
	}

	.slf-mobile-close::after {
		transform: rotate(-45deg);
	}

	.slf-hero {
		min-height: 844px;
		padding: 145px 0 96px;
	}

	.slf-hero::before {
		top: 155px;
		left: 14%;
		width: 72%;
		height: 150px;
		background-size: 7px 7px;
		opacity: 0.55;
	}

	.slf-hero::after {
		display: none;
	}

	.slf-hero-title {
		width: min(100%, 340px);
		font-size: var(--slf-hero-mobile-font-size);
		line-height: 1.55;
	}

	.slf-hero-label {
		display: none;
	}

	.slf-hero-media {
		right: 20px;
		bottom: 190px;
		width: calc(100% - 40px);
		max-height: 260px;
		border-radius: 96px 24px 24px 96px;
		opacity: 0.42;
	}

	.slf-hero-card {
		left: 20px;
		right: 20px;
		bottom: 48px;
		width: auto;
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 24px;
		border-radius: 28px;
	}

	.slf-hero-card-title {
		font-size: var(--slf-card-font-size);
	}

	.slf-hero-card-text {
		font-size: calc(var(--slf-body-font-size) + 2px);
	}

	.slf-icon {
		display: none;
	}

	.slf-section {
		padding: 84px 0;
	}

	.slf-section-head,
	.slf-footer-cta-inner,
	.slf-footer-main {
		grid-template-columns: 1fr;
	}

	.slf-section-head {
		gap: 28px;
		margin-bottom: 44px;
	}

	.slf-topic-grid {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.slf-topic-card {
		width: min(100%, 330px);
		min-height: 292px;
		border-radius: 36px;
	}

	.slf-post-grid {
		grid-template-columns: 1fr;
	}

	.slf-footer-cta-inner {
		align-items: start;
	}
}

@media (max-width: 640px) {
	.slf-shell {
		width: calc(100% - 40px);
	}

	.slf-site-header {
		padding-top: 10px;
	}

	.slf-header-pill {
		border-radius: 34px;
	}

	.slf-page-hero {
		padding: 132px 0 64px;
	}

	.slf-content-wrap {
		padding: 64px 0;
	}

	.slf-post-card,
	.slf-entry-image {
		border-radius: 30px;
	}

	.slf-post-card {
		min-height: 0;
	}

	.slf-post-card-media,
	.slf-post-card-image {
		min-height: 230px;
	}

	.slf-footer-cta,
	.slf-section {
		padding-block: 70px;
	}

	.slf-footer-main {
		padding-top: 54px;
	}

	.slf-footer-bottom {
		align-items: flex-start;
		flex-direction: column;
	}
}
