:root {
	--sl-bg: #f7f3ea;
	--sl-text: #151515;
	--sl-muted: #5f5a52;
	--sl-accent: #ff6a3d;
	--sl-dark: #171717;
	--sl-alt: #efe7da;
	--sl-border: #ded4c5;
	--sl-radius: 18px;
	--sl-shadow: 0 24px 70px rgba(21, 21, 21, 0.08);
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body {
	margin: 0;
	background: var(--sl-bg);
	color: var(--sl-text);
	font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 18px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

body.nav-open {
	overflow: hidden;
}

body.authority-modal-open {
	overflow: hidden;
}

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

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.22em;
}

a:hover {
	color: var(--sl-accent);
}

p,
h1,
h2,
h3 {
	margin-top: 0;
}

h1,
h2,
h3 {
	line-height: 1.03;
	letter-spacing: 0;
}

h1 {
	max-width: 780px;
	margin-bottom: 24px;
	font-size: 5rem;
	font-weight: 850;
}

h2 {
	margin-bottom: 24px;
	font-size: clamp(2.15rem, 6vw, 4.2rem);
	font-weight: 820;
}

h3 {
	margin-bottom: 12px;
	font-size: 1.28rem;
}

::selection {
	background: var(--sl-accent);
	color: #fff;
}

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

.screen-reader-text:focus,
.skip-link:focus {
	z-index: 1000;
	top: 14px;
	left: 14px;
	width: auto;
	height: auto;
	padding: 12px 16px;
	background: var(--sl-dark);
	color: #fff;
	clip: auto;
	text-decoration: none;
}

.sl-container {
	width: min(1120px, calc(100% - 40px));
	margin-inline: auto;
}

.section {
	padding: 76px 0;
}

.section-label,
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	color: var(--sl-muted);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.section-label::before,
.eyebrow::before {
	width: 26px;
	height: 2px;
	background: var(--sl-accent);
	content: "";
}

.button,
button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 15px 22px;
	border: 1px solid var(--sl-text);
	border-radius: 999px;
	background: var(--sl-text);
	color: #fff;
	font: inherit;
	font-weight: 800;
	line-height: 1.15;
	text-decoration: none;
	cursor: pointer;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
button:hover {
	transform: translateY(-1px);
	background: var(--sl-accent);
	border-color: var(--sl-accent);
	color: #fff;
}

.button--small {
	min-height: 42px;
	padding: 11px 17px;
	font-size: 0.9rem;
}

.button--primary {
	margin-top: 12px;
	background: var(--sl-accent);
	border-color: var(--sl-accent);
	color: #fff;
	box-shadow: 0 14px 34px rgba(255, 106, 61, 0.22);
}

.button--primary:hover {
	background: var(--sl-text);
	border-color: var(--sl-text);
}

.button--secondary {
	background: transparent;
	color: var(--sl-text);
}

.button--secondary:hover {
	background: var(--sl-text);
	border-color: var(--sl-text);
	color: #fff;
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: rgba(247, 243, 234, 0.88);
	border-bottom: 1px solid rgba(222, 212, 197, 0.78);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 74px;
	gap: 18px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	color: var(--sl-text);
	font-size: 1.35rem;
	font-weight: 900;
	text-decoration: none;
}

.site-brand img {
	max-width: 190px;
	max-height: 52px;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: 24px;
	color: var(--sl-muted);
	font-size: 0.95rem;
	font-weight: 750;
}

.site-nav a:not(.button) {
	text-decoration: none;
}

.nav-toggle {
	display: none;
	width: 46px;
	height: 46px;
	min-height: 46px;
	padding: 0;
	border-color: var(--sl-border);
	background: transparent;
	color: var(--sl-text);
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	content: "";
	transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle__bar::before {
	transform: translateY(-7px);
}

.nav-toggle__bar::after {
	transform: translateY(5px);
}

.nav-open .nav-toggle__bar {
	background: transparent;
}

.nav-open .nav-toggle__bar::before {
	background: var(--sl-text);
	transform: translateY(2px) rotate(45deg);
}

.nav-open .nav-toggle__bar::after {
	background: var(--sl-text);
	transform: translateY(0) rotate(-45deg);
}

.hero {
	position: relative;
	padding: 78px 0 88px;
	overflow: hidden;
}

.hero::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 1px;
	background: var(--sl-border);
	content: "";
}

.hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
	align-items: center;
	gap: 56px;
}

.hero__subtitle {
	max-width: 730px;
	margin-bottom: 28px;
	color: var(--sl-muted);
	font-size: clamp(1.24rem, 2.4vw, 1.55rem);
	line-height: 1.45;
}

.hero__support {
	max-width: 650px;
	color: var(--sl-muted);
}

.microcopy {
	margin: 14px 0 0;
	color: var(--sl-muted);
	font-size: 0.95rem;
	line-height: 1.5;
}

.hero-card {
	position: relative;
	scroll-margin-top: 96px;
	padding: 28px;
	border: 1px solid var(--sl-border);
	border-radius: var(--sl-radius);
	background: #fffaf1;
	box-shadow: var(--sl-shadow);
}

.anchor-target {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	pointer-events: none;
}

.hero-card::before {
	position: absolute;
	top: 16px;
	right: 18px;
	width: 74px;
	height: 74px;
	border: 1px solid var(--sl-accent);
	border-radius: 50%;
	color: var(--sl-accent);
	content: "Club";
	display: grid;
	place-items: center;
	font-size: 0.78rem;
	font-weight: 900;
	transform: rotate(8deg);
}

.hero-card__header {
	max-width: calc(100% - 90px);
	margin-bottom: 24px;
}

.hero-card__header span {
	display: block;
	margin-bottom: 6px;
	color: var(--sl-muted);
	font-size: 0.86rem;
	font-weight: 780;
	text-transform: uppercase;
}

.hero-card__header strong {
	display: block;
	font-size: clamp(1.7rem, 4vw, 2.3rem);
	line-height: 1.08;
}

.check-list,
.feature-list,
.not-for ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.check-list {
	display: grid;
	gap: 12px;
	margin-bottom: 24px;
}

.check-list li,
.feature-list li {
	position: relative;
	padding-left: 30px;
}

.check-list li::before,
.feature-list li::before {
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 12px;
	height: 12px;
	border: 2px solid var(--sl-accent);
	border-radius: 50%;
	content: "";
}

.hero-card__form {
	padding-top: 20px;
	margin-top: 22px;
	border-top: 1px solid var(--sl-border);
}

.sl-form-placeholder {
	display: grid;
	gap: 12px;
}

.sl-form-placeholder input[type="email"],
.sl-form-placeholder input[type="text"] {
	width: 100%;
	min-height: 54px;
	padding: 0 18px;
	border: 1px solid var(--sl-border);
	border-radius: 999px;
	background: #fff;
	color: var(--sl-text);
	font: inherit;
}

.sl-form-placeholder input[type="email"]:focus,
.sl-form-placeholder input[type="text"]:focus {
	border-color: var(--sl-accent);
	outline: 3px solid rgba(255, 106, 61, 0.18);
}

.sl-consent {
	display: grid;
	grid-template-columns: 18px minmax(0, 1fr);
	gap: 10px;
	align-items: start;
	color: var(--sl-muted);
	font-size: 0.82rem;
	line-height: 1.4;
}

.sl-consent input {
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	accent-color: var(--sl-accent);
}

.sl-consent a {
	color: var(--sl-text);
	font-weight: 760;
}

.sl-form-placeholder button {
	width: 100%;
}

.sl-form-placeholder p {
	margin: 0;
	color: var(--sl-muted);
	font-size: 0.84rem;
	line-height: 1.45;
}

.sl-form-embed form,
.sl-form-embed .form,
.sl-form-embed [class*="form"] {
	max-width: 100%;
}

.sl-form-embed input[type="email"],
.sl-form-embed input[type="text"] {
	width: 100%;
	min-height: 54px;
	padding: 0 18px;
	border: 1px solid var(--sl-border);
	border-radius: 999px;
	background: #fff;
	color: var(--sl-text);
	font: inherit;
}

.sl-form-embed button,
.sl-form-embed input[type="submit"] {
	width: 100%;
	min-height: 52px;
	margin-top: 10px;
	border-radius: 999px;
}

.sl-form-embed .ml-form-embedContainer,
.sl-form-embed .ml-form-align-center,
.sl-form-embed .ml-form-embedWrapper,
.sl-form-embed .ml-form-embedBody {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.sl-form-embed .ml-form-embedContent {
	display: none !important;
}

.sl-form-embed .ml-form-formContent {
	display: grid;
	gap: 12px;
}

.sl-form-embed .ml-form-fieldRow {
	margin: 0 !important;
}

.sl-form-embed .ml-form-fieldRow input {
	width: 100% !important;
	min-height: 54px !important;
	border: 1px solid var(--sl-border) !important;
	border-radius: 999px !important;
	background: #fff !important;
}

.sl-form-embed .ml-form-embedPermissions,
.sl-form-embed .ml-form-checkboxRow {
	width: 100% !important;
	margin: 12px 0 0 !important;
}

.sl-form-embed .ml-form-embedPermissions {
	display: none !important;
}

.sl-form-embed .ml-form-embedPermissions p,
.sl-form-embed .label-description p {
	margin: 0 !important;
	color: var(--sl-muted) !important;
	font-size: 0.8rem !important;
	line-height: 1.45 !important;
	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: normal !important;
}

.sl-form-embed .ml-form-checkboxRow label {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	padding-left: 24px !important;
}

.sl-form-embed .ml-form-checkboxRow input {
	width: 18px !important;
	height: 18px !important;
	margin: 2px 0 0 !important;
}

.sl-form-embed .ml-form-checkboxRow .label-description {
	width: auto !important;
	min-width: 0 !important;
	max-width: none !important;
}

.sl-form-embed .ml-form-embedPermissions a {
	color: var(--sl-text) !important;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.sl-form-embed .ml-form-embedSubmit button.primary {
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--sl-dark) !important;
	color: #fff !important;
}

.sl-form-embed .ml-form-embedSubmit button.primary:hover {
	background: var(--sl-accent) !important;
}

/*
 * MailerLite injects ID-scoped styles after the theme stylesheet. Keeping the
 * form ID in these overrides ensures the shared embed retains the site design.
 */
.sl-form-embed #mlb2-43227448.ml-form-embedContainer .ml-form-embedWrapper,
.sl-form-embed #mlb2-43227448.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.sl-form-embed #mlb2-43227448.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
	min-height: 54px !important;
	padding: 0 18px !important;
	border: 1px solid var(--sl-border) !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: var(--sl-text) !important;
	font: inherit !important;
}

.sl-form-embed #mlb2-43227448.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow label {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	padding-left: 24px !important;
}

.sl-form-embed #mlb2-43227448.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-checkboxRow .label-description {
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	justify-self: stretch !important;
}

.sl-form-embed #mlb2-43227448.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary {
	min-height: 52px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: var(--sl-dark) !important;
	color: #fff !important;
}

.section__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: 62px;
}

.section-copy {
	color: var(--sl-muted);
	font-size: 1.08rem;
}

.pull-quote,
.big-statement {
	margin-top: 34px;
	padding: 26px;
	border-left: 5px solid var(--sl-accent);
	border-radius: 0 var(--sl-radius) var(--sl-radius) 0;
	background: var(--sl-alt);
	color: var(--sl-text);
	font-size: clamp(1.45rem, 4vw, 2.15rem);
	font-weight: 850;
	line-height: 1.15;
}

.section-heading {
	max-width: 840px;
	margin-bottom: 36px;
}

.section-heading__copy,
.section-heading--narrow {
	max-width: 760px;
	color: var(--sl-muted);
}

.solution,
.receive,
.author {
	background: linear-gradient(180deg, transparent 0, var(--sl-alt) 100%);
}

.solution {
	border-top: 1px solid var(--sl-border);
	background: var(--sl-alt);
}

.card-grid {
	display: grid;
	gap: 18px;
}

.card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.audience-item,
.edition-card,
.framed-copy,
.mid-form {
	border: 1px solid var(--sl-border);
	border-radius: var(--sl-radius);
	background: rgba(255, 250, 241, 0.78);
}

.info-card {
	min-height: 300px;
	padding: 24px;
}

.info-card__number {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	margin-bottom: 42px;
	border: 1px solid var(--sl-accent);
	border-radius: 50%;
	color: var(--sl-accent);
	font-size: 0.78rem;
	font-weight: 900;
}

.info-card p,
.audience-item p,
.edition-card p,
.framed-copy p {
	color: var(--sl-muted);
}

.receive__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
	gap: 46px;
	align-items: start;
}

.feature-list {
	display: grid;
	gap: 16px;
	color: var(--sl-muted);
}

.edition-card {
	position: sticky;
	top: 104px;
	padding: 28px;
	background: var(--sl-dark);
	color: #fff;
	box-shadow: var(--sl-shadow);
}

.edition-card p {
	color: rgba(255, 255, 255, 0.76);
}

.edition-card p:first-child {
	color: #fff;
	font-size: 1.4rem;
	font-weight: 850;
	line-height: 1.15;
}

.mid-form {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1fr);
	gap: 28px;
	align-items: center;
	margin-top: 54px;
	padding: 28px;
}

.mid-form strong {
	display: block;
	margin-bottom: 4px;
	font-size: 1.35rem;
}

.mid-form p {
	margin-bottom: 0;
	color: var(--sl-muted);
}

.difference {
	background: var(--sl-bg);
}

.big-statement {
	border-left: 0;
	background: var(--sl-text);
	color: #fff;
}

.authority-proof {
	background: var(--sl-alt);
	border-top: 1px solid var(--sl-border);
}

.authority-proof__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.55fr);
	gap: 28px;
	align-items: stretch;
}

.authority-proof__statement,
.authority-proof__metric {
	border: 1px solid var(--sl-border);
	border-radius: var(--sl-radius);
}

.authority-proof__statement {
	padding: clamp(28px, 5vw, 50px);
	background: var(--sl-dark);
	color: #fff;
	box-shadow: var(--sl-shadow);
}

.authority-proof__statement .section-label {
	color: rgba(255, 255, 255, 0.78);
}

.authority-proof__statement h2 {
	max-width: 900px;
	color: #fff;
	font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.authority-proof__statement p {
	max-width: 790px;
	color: rgba(255, 255, 255, 0.78);
}

.authority-proof__statement .authority-proof__lead {
	color: #fff;
	font-size: 1.22rem;
	font-weight: 760;
	line-height: 1.45;
}

.authority-proof__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 26px;
}

.proof-pill {
	display: inline-flex;
	width: auto;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	padding: 8px 13px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 820;
	text-decoration: none;
}

.proof-pill:hover {
	background: var(--sl-accent);
	border-color: var(--sl-accent);
	color: #fff;
}

.authority-proof__metrics {
	display: grid;
	gap: 16px;
}

.authority-proof__metric {
	display: grid;
	align-content: center;
	min-height: 150px;
	padding: 22px;
	background: #fffaf1;
}

.authority-proof__metric b {
	display: block;
	color: var(--sl-accent);
	font-size: 2.4rem;
	line-height: 1;
}

.authority-proof__metric span {
	display: block;
	margin-top: 10px;
	color: var(--sl-muted);
	font-size: 0.86rem;
	font-weight: 850;
	line-height: 1.35;
	text-transform: uppercase;
}

.authority-modal {
	position: fixed;
	z-index: 100;
	inset: 0;
	display: none;
	padding: 28px;
	background: rgba(21, 21, 21, 0.78);
}

.authority-modal.is-open {
	display: grid;
	place-items: center;
}

.authority-modal__dialog {
	width: min(920px, 100%);
	max-height: calc(100vh - 56px);
	overflow: auto;
	padding: 18px;
	border-radius: var(--sl-radius);
	background: #fffaf1;
}

.authority-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 14px;
}

.authority-modal__header strong {
	font-size: 1rem;
}

.authority-modal__header button {
	width: auto;
	min-height: 38px;
	padding: 8px 12px;
	background: transparent;
	color: var(--sl-text);
}

.authority-modal img {
	width: 100%;
	border: 1px solid var(--sl-border);
	border-radius: 12px;
}

.audience-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
}

.audience-item {
	min-height: 250px;
	padding: 24px 22px;
}

.audience-item__icon {
	display: inline-flex;
	width: 72px;
	height: 72px;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	border: 1px solid var(--sl-border);
	border-color: color-mix(in srgb, var(--sl-accent) 35%, var(--sl-border));
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(255, 106, 61, 0.13), transparent 58%),
		var(--sl-alt);
	color: var(--sl-accent);
	transform: rotate(-2deg);
}

.audience-item__icon svg {
	width: 54px;
	height: 54px;
	stroke: currentColor;
	stroke-width: 2.2;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.audience-item:nth-child(2) .audience-item__icon {
	color: #8f4935;
	transform: rotate(2deg);
}

.audience-item:nth-child(3) .audience-item__icon {
	color: #b54c71;
	transform: rotate(-1deg);
}

.audience-item:nth-child(4) .audience-item__icon {
	color: #47613f;
	transform: rotate(1.5deg);
}

.audience-item:nth-child(5) .audience-item__icon {
	color: var(--sl-text);
	transform: rotate(-2.5deg);
}

.not-for {
	background: var(--sl-dark);
	color: #fff;
}

.not-for .section-label,
.not-for h2 {
	color: #fff;
}

.not-for .section-label::before {
	background: var(--sl-accent);
}

.not-for__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 58px;
	align-items: start;
}

.not-for li {
	position: relative;
	padding: 20px 0 20px 38px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	color: rgba(255, 255, 255, 0.82);
}

.not-for li::before {
	position: absolute;
	left: 0;
	color: var(--sl-accent);
	content: "—";
	font-weight: 900;
}

.framed-copy {
	padding: 28px;
}

.author__grid {
	display: grid;
	grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.9fr);
	gap: 52px;
	align-items: center;
}

.author__media img,
.author__placeholder {
	width: min(100%, 360px);
	aspect-ratio: 4 / 5;
	border-radius: var(--sl-radius);
	object-fit: cover;
	box-shadow: var(--sl-shadow);
}

.author__placeholder {
	display: grid;
	place-items: center;
	background:
		linear-gradient(135deg, rgba(255, 106, 61, 0.18), transparent 48%),
		var(--sl-dark);
	color: #fff;
}

.author__placeholder span {
	display: grid;
	width: 104px;
	height: 104px;
	place-items: center;
	border: 1px solid rgba(255, 255, 255, 0.36);
	border-radius: 50%;
	font-size: 2rem;
	font-weight: 900;
}

.author__copy {
	max-width: 740px;
}

.author__copy p {
	color: var(--sl-muted);
}

.author__name {
	color: var(--sl-text) !important;
	font-size: 1.35rem;
	font-weight: 850;
}

.final-cta {
	padding-bottom: 92px;
}

.final-cta__box {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
	gap: 44px;
	align-items: center;
	padding: 40px;
	border: 1px solid var(--sl-text);
	border-radius: calc(var(--sl-radius) + 8px);
	background: #fffaf1;
	box-shadow: var(--sl-shadow);
}

.final-cta__copy p {
	color: var(--sl-muted);
}

.site-footer {
	padding: 42px 0;
	border-top: 1px solid var(--sl-border);
	background: var(--sl-alt);
	color: var(--sl-muted);
	font-size: 0.95rem;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 22px;
	align-items: start;
}

.site-footer strong {
	display: block;
	margin-bottom: 10px;
	color: var(--sl-text);
	font-size: 1.15rem;
}

.site-footer p {
	margin-bottom: 0;
}

.site-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: flex-end;
	font-weight: 740;
}

.site-footer__links a {
	text-decoration: none;
}

.site-footer__copy {
	grid-column: 1 / -1;
	padding-top: 20px;
	border-top: 1px solid var(--sl-border);
}

.entry {
	max-width: 760px;
}

.entry-content {
	color: var(--sl-muted);
}

.editions-header {
	max-width: 820px;
	margin-bottom: 56px;
}

.editions-header h1,
.edition-entry__header h1 {
	margin-bottom: 18px;
}

.editions-header > p:last-child {
	max-width: 680px;
	color: var(--sl-muted);
	font-size: 1.15rem;
}

.edition-index {
	border-top: 1px solid var(--sl-border);
}

.edition-row {
	display: grid;
	grid-template-columns: 140px minmax(0, 1fr) auto;
	gap: 28px;
	align-items: start;
	padding: 30px 0;
	border-bottom: 1px solid var(--sl-border);
}

.edition-row time,
.edition-entry__header time {
	color: var(--sl-muted);
	font-size: 0.88rem;
	font-weight: 700;
}

.edition-row h2 {
	margin: 0 0 8px;
	font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.edition-row h2 a,
.edition-row__link,
.edition-entry__footer > a:first-child {
	text-decoration: none;
}

.edition-row__excerpt,
.edition-row__excerpt p {
	margin: 0;
	color: var(--sl-muted);
}

.edition-row__link {
	padding-top: 4px;
	color: var(--sl-text);
	font-size: 0.92rem;
	font-weight: 800;
	white-space: nowrap;
}

.edition-index__empty {
	padding: 30px 0;
	color: var(--sl-muted);
}

.edition-entry {
	max-width: 800px;
	margin: 0 auto;
}

.edition-entry__header {
	margin-bottom: 42px;
}

.edition-entry__image {
	margin: 0 0 42px;
}

.edition-entry__image img {
	width: 100%;
	height: auto;
	border-radius: var(--sl-radius);
}

.edition-entry__content {
	color: var(--sl-text);
	font-size: 1.08rem;
}

.edition-entry__content p,
.edition-entry__content ul,
.edition-entry__content ol {
	margin-bottom: 1.35em;
}

.edition-entry__content a {
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.edition-entry__footer {
	display: flex;
	gap: 24px;
	align-items: center;
	justify-content: space-between;
	margin-top: 52px;
	padding-top: 28px;
	border-top: 1px solid var(--sl-border);
}

@media (max-width: 1080px) {
	.card-grid--four,
	.audience-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.audience-item,
	.info-card {
		min-height: 220px;
	}
}

@media (max-width: 880px) {
	body {
		font-size: 17px;
	}

	h1 {
		font-size: 4rem;
	}

	.sl-container {
		width: min(100% - 28px, 1120px);
	}

	.section {
		padding: 58px 0;
	}

	.site-header__inner {
		min-height: 66px;
	}

	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: fixed;
		top: 66px;
		right: 14px;
		left: 14px;
		display: grid;
		gap: 4px;
		padding: 16px;
		border: 1px solid var(--sl-border);
		border-radius: var(--sl-radius);
		background: #fffaf1;
		box-shadow: var(--sl-shadow);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-8px);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.nav-open .site-nav {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-nav a {
		padding: 12px;
		border-radius: 12px;
	}

	.site-nav .button {
		width: 100%;
		margin-top: 8px;
	}

	.hero {
		padding: 54px 0 62px;
	}

	.hero__grid,
	.section__grid,
	.receive__grid,
	.not-for__grid,
	.authority-proof__grid,
	.author__grid,
	.final-cta__box,
	.mid-form,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.hero__grid {
		gap: 34px;
	}

	.hero__subtitle {
		font-size: 1.18rem;
	}

	.button,
	.button--primary,
	.button--secondary,
	.proof-pill {
		width: 100%;
	}

	.hero-card {
		padding: 22px;
	}

	.edition-card {
		position: relative;
		top: auto;
	}

	.mid-form {
		padding: 22px;
	}

	.author__media img,
	.author__placeholder {
		width: min(100%, 300px);
	}

	.final-cta__box {
		padding: 26px;
	}

	.authority-proof__statement {
		padding: 26px;
	}

	.site-footer__links {
		justify-content: flex-start;
	}

	.edition-row {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.edition-row__link {
		padding-top: 0;
	}

	.edition-entry__footer {
		align-items: stretch;
		flex-direction: column;
	}
}

@media (max-width: 620px) {
	h1 {
		font-size: 3.2rem;
	}

	h2 {
		font-size: clamp(2rem, 10vw, 3.1rem);
	}

	.card-grid--four,
	.audience-list {
		grid-template-columns: 1fr;
	}

	.info-card,
	.audience-item {
		min-height: auto;
	}

	.info-card__number,
	.audience-item__icon {
		margin-bottom: 22px;
	}

	.pull-quote,
	.big-statement {
		padding: 22px;
		font-size: 1.45rem;
	}

	.authority-proof__statement {
		padding: 24px;
	}

	.hero-card::before {
		width: 62px;
		height: 62px;
		font-size: 0.7rem;
	}
}
