
html {
	-webkit-print-color-adjust: exact;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
* {
	box-sizing: border-box;
	-webkit-print-color-adjust: exact;
}

html,
body {
	margin: 0;
	padding: 0;
}
/* Color variables with light defaults; dark mode overrides below */
:root {
	--bg-color: #ffffff;
	--text-color: rgb(55, 53, 47);
	--muted-border: rgba(55, 53, 47, 0.09);
	--muted-strong: rgba(55, 53, 47, 0.18);
	--muted-weak: rgba(55, 53, 47, 0.6);
	--muted-mid: #444;
	--border-light: #ddd;
	--selected-value-bg: rgba(206, 205, 202, 0.5);
	--table-header-bg: rgb(247, 246, 243);
	--text-strong: #000;
	--accent-red: #eb5757;
	--code-bg: rgba(135, 131, 120, 0.15);
}

@media (prefers-color-scheme: dark) {
	:root {
		--bg-color: #0b0b0b;
		--text-color: #e6e6e6;
		--muted-border: rgba(230, 230, 230, 0.06);
		--muted-strong: rgba(230, 230, 230, 0.12);
		--muted-weak: rgba(230, 230, 230, 0.6);
	}
}
@media only screen {
  body {
    margin: 2em auto;
    max-width: 980px; /* 720–900 is a good range for text pages */
    color: var(--text-color);
    background-color: var(--bg-color);
    padding: 0 1rem;
  }
}

@media (max-width: 600px) {
	body {
		margin: 1.25em;
		padding: 0 1rem;
		max-width: none;
	}
}

body {
	line-height: 1.5;
}

a,
a.visited {
	color: inherit;
	text-decoration: underline;
}

.pdf-relative-link-path {
	font-size: 80%;
	color: var(--muted-mid);
}

h1,
h2,
h3 {
	letter-spacing: -0.01em;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 0;
}

/* Override strong tags inside headings to maintain consistent weight */
h1 strong,
h2 strong,
h3 strong {
	font-weight: 600;
}

.page-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 0.75em;
}

h1 {
	font-size: 1.875rem;
	margin-top: 1.875rem;
}

h2 {
	font-size: 1.5rem;
	margin-top: 1.5rem;
}

h3 {
	font-size: 1.25rem;
	margin-top: 1.25rem;
}

.source {
	border: 1px solid var(--border-light);
	border-radius: 3px;
	padding: 1.5em;
	word-break: break-all;
}

.callout {
	border-radius: 10px;
	padding: 1rem;
}

figure {
	margin: 1.25em 0;
	page-break-inside: avoid;
}

figcaption {
	opacity: 0.5;
	font-size: 85%;
	margin-top: 0.5em;
}

mark {
	background-color: transparent;
}

.indented {
	padding-left: 1.5em;
}

/* Wrapper container class — use for section wrappers. */
.container {
	display: block;
}

hr {
	background: transparent;
	display: block;
	width: 100%;
	height: 1px;
	visibility: visible;
	border: none;
 	border-bottom: 1px solid var(--muted-border);
}

img {
	max-width: 100%;
}

@media only print {
	img {
		max-height: 100vh;
		object-fit: contain;
	}
}

@page {
	margin: 1in;
}

.collection-content {
	font-size: 0.875rem;
}

.collection-content td {
	white-space: pre-wrap;
	word-break: break-word;
}

/* Utility: force disc bullets for exported lists */
.bulleted-list > li {
	list-style-type: disc;
	margin-left: 1.2em;
}

/* Small underline used inline in HTML export */
.underline-bottom {
	border-bottom: 0.05em solid;
}

/* Footer spacer used in HTML export */
.footer-spacer {
	font-size: 14px;
	padding-top: 2em;
	display: block;
}

.column-list {
	display: flex;
    gap: 3em
}

.column {
	padding: 0 1em;

	/* allow flex children to shrink below their contents to avoid horizontal overflow */
	min-width: 0;
}

.column:first-child {
	padding-left: 0;
}

.column:last-child {
	padding-right: 0;
}

@media (max-width: 768px) {
	/* Stack two-column sections vertically on tablet and smaller screens */
	.column-list {
		flex-direction: column;
		gap: 1.25rem;
		align-items: stretch;
	}

	.column {
		padding: 0;
		width: 100% !important;
	}
}

.table_of_contents-item {
	display: block;
	font-size: 0.875rem;
	line-height: 1.3;
	padding: 0.125rem;
}

.table_of_contents-indent-1 {
	margin-left: 1.5rem;
}

.table_of_contents-indent-2 {
	margin-left: 3rem;
}

.table_of_contents-indent-3 {
	margin-left: 4.5rem;
}

.table_of_contents-link {
	text-decoration: none;
	opacity: 0.7;
 	border-bottom: 1px solid var(--muted-strong);
}

table,
th,
td {
 	border: 1px solid var(--muted-border);
	border-collapse: collapse;
}

table {
	border-left: none;
	border-right: none;
}

th,
td {
	font-weight: normal;
	padding: 0.25em 0.5em;
	line-height: 1.5;
	min-height: 1.5em;
	text-align: left;
}

th {
 	color: var(--muted-weak);
}

ol,
ul {
	margin: 0;
	margin-block-start: 0.6em;
	margin-block-end: 0.6em;
}

li > ol:first-child,
li > ul:first-child {
	margin-block-start: 0.6em;
}

ul > li {
	list-style: disc;
}

ul.to-do-list {
	padding-inline-start: 0;
}

ul.to-do-list > li {
	list-style: none;
}

.to-do-children-checked {
	text-decoration: line-through;
	opacity: 0.375;
}

ul.toggle > li {
	list-style: none;
}

ul {
	padding-inline-start: 1.7em;
}

ul > li {
	padding-left: 0.1em;
}

ol {
	padding-inline-start: 1.6em;
}

ol > li {
	padding-left: 0.2em;
}

.mono ol {
	padding-inline-start: 2em;
}

.mono ol > li {
	text-indent: -0.4em;
}

.toggle {
	padding-inline-start: 0em;
	list-style-type: none;
}

/* Indent toggle children */
.toggle > li > details {
	padding-left: 1.7em;
}

.toggle > li > details > summary {
	margin-left: -1.1em;
}

.selected-value {
	display: inline-block;
	padding: 0 0.5em;
	background: var(--selected-value-bg);
	border-radius: 3px;
	margin-right: 0.5em;
	margin-top: 0.3em;
	margin-bottom: 0.3em;
	white-space: nowrap;
}

.collection-title {
	display: inline-block;
	margin-right: 1em;
}

.page-description {
	margin-bottom: 2em;
}

/* Minimal spacer block used to add a small visual gap above sections. */
.spacer-block {
	width: 100%;
	max-width: 1003px;
	height: 1em; /* adjust if you want more/less space */
	margin: 1px 0;
	pointer-events: none;
}

.simple-table {
	margin-top: 1em;
	font-size: 0.875rem;
	empty-cells: show;
}
.simple-table td {
	height: 29px;
	min-width: 120px;
}

.simple-table th {
	height: 29px;
	min-width: 120px;
}

.simple-table-header-color {
	background: var(--table-header-bg);
	color: var(--text-strong);
}
.simple-table-header {
	font-weight: 500;
}

time {
	opacity: 0.5;
}

.icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	max-width: 1.2em;
	max-height: 1.2em;
	text-decoration: none;
	vertical-align: text-bottom;
	margin-right: 0.5em;
}

img.icon {
	border-radius: 3px;
}

.callout img.notion-static-icon {
	width: 1em;
	height: 1em;
}

.callout p {
	margin: 0;
}

.callout h1,
.callout h2,
.callout h3 {
	margin: 0 0 0.6rem;
}

.user-icon {
	width: 1.5em;
	height: 1.5em;
	border-radius: 100%;
	margin-right: 0.5rem;
}

.user-icon-inner {
	font-size: 0.8em;
}

.text-icon {
	border: 1px solid var(--text-strong);
	text-align: center;
}

.page-cover-image {
	display: block;
	object-fit: cover;
	width: 100%;
	max-height: 30vh;
}

.page-header-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.page-header-icon-with-cover {
	margin-top: -0.72em;
	margin-left: 0.07em;
}

.page-header-icon img {
	border-radius: 3px;
}

.link-to-page {
	margin: 1em 0;
	padding: 0;
	border: none;
	font-weight: 500;
}

p > .user {
	opacity: 0.5;
}

td > .user,
td > time {
	white-space: nowrap;
}

input[type="checkbox"] {
	transform: scale(1.5);
	margin-right: 0.6em;
	vertical-align: middle;
}

p {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

.image {
	border: none;
	margin: 1.5em 0;
	padding: 0;
	border-radius: 0;
	text-align: center;
}

.code,
code {
	background: var(--code-bg);
	border-radius: 3px;
	padding: 0.2em 0.4em;
	border-radius: 3px;
	font-size: 85%;
	tab-size: 2;
}

code {
	color: var(--accent-red);
}

.code {
	padding: 1.5em 1em;
}

.code-wrap {
	white-space: pre-wrap;
	word-break: break-all;
}

/* Make code blocks scroll horizontally instead of forcing page overflow */
pre,
code,
.code,
.code-wrap {
	max-width: 100%;
	overflow-x: auto;
}

/* Tables: allow horizontal scrolling on small viewports */
table {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow-x: auto;
}

/* Prevent long words/URLs from creating horizontal scroll */
.page-body,
article,
body {
	overflow-wrap: anywhere;
	word-break: break-word;
}

.code > code {
	background: none;
	padding: 0;
	font-size: 100%;
	color: inherit;
}

blockquote {
	font-size: 1em;
	margin: 1em 0;
	padding-left: 1em;
	border-left: 3px solid var(--text-color);
}

blockquote.quote-large {
	font-size: 1.25em;
}

.bookmark {
	text-decoration: none;
	max-height: 8em;
	padding: 0;
	display: flex;
	width: 100%;
	align-items: stretch;
}

.bookmark-title {
	font-size: 0.85em;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 1.75em;
	white-space: nowrap;
}

.bookmark-text {
	display: flex;
	flex-direction: column;
}

.bookmark-info {
	flex: 4 1 180px;
	padding: 12px 14px 14px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.bookmark-image {
	width: 33%;
	flex: 1 1 180px;
	display: block;
	position: relative;
	object-fit: cover;
	border-radius: 1px;
}

.bookmark-description {
	color: var(--muted-weak);
	font-size: 0.75em;
	overflow: hidden;
	max-height: 4.5em;
	word-break: break-word;
}

.bookmark-href {
	font-size: 0.75em;
	margin-top: 0.25em;
}

.sans { font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol"; }
.code { font-family: "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace; }
.serif { font-family: Lyon-Text, Georgia, ui-serif, serif; }
.mono { font-family: iawriter-mono, Nitti, Menlo, Courier, monospace; }
.pdf .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK JP'; }
.pdf:lang(zh-CN) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK SC'; }
.pdf:lang(zh-TW) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK TC'; }
.pdf:lang(ko-KR) .sans { font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol", 'Twemoji', 'Noto Color Emoji', 'Noto Sans CJK KR'; }
.pdf .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK JP'; }
.pdf:lang(zh-CN) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK SC'; }
.pdf:lang(zh-TW) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK TC'; }
.pdf:lang(ko-KR) .code { font-family: Source Code Pro, "SFMono-Regular", Menlo, Consolas, "PT Mono", "Liberation Mono", Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK KR'; }
.pdf .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK JP'; }
.pdf:lang(zh-CN) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK SC'; }
.pdf:lang(zh-TW) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK TC'; }
.pdf:lang(ko-KR) .serif { font-family: PT Serif, Lyon-Text, Georgia, ui-serif, serif, 'Twemoji', 'Noto Color Emoji', 'Noto Serif CJK KR'; }
.pdf .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK JP'; }
.pdf:lang(zh-CN) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK SC'; }
.pdf:lang(zh-TW) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK TC'; }
.pdf:lang(ko-KR) .mono { font-family: PT Mono, iawriter-mono, Nitti, Menlo, Courier, monospace, 'Twemoji', 'Noto Color Emoji', 'Noto Sans Mono CJK KR'; }
.highlight-default { color: var(--text-color); }
.highlight-gray { color: var(--h-gray); fill: var(--h-gray); }
.highlight-brown { color: var(--h-brown); fill: var(--h-brown); }
.highlight-orange { color: var(--h-orange); fill: var(--h-orange); }
.highlight-yellow { color: var(--h-yellow); fill: var(--h-yellow); }
.highlight-teal { color: var(--h-teal); fill: var(--h-teal); }
.highlight-blue { color: var(--h-blue); fill: var(--h-blue); }
.highlight-purple { color: var(--h-purple); fill: var(--h-purple); }
.highlight-pink { color: var(--h-pink); fill: var(--h-pink); }
.highlight-red { color: var(--h-red); fill: var(--h-red); }
.highlight-default_background { color: var(--text-color); }
.highlight-gray_background { background: var(--select-default-bg); }
.highlight-brown_background { background: var(--select-brown-bg); }
.highlight-orange_background { background: var(--select-orange-bg); }
.highlight-yellow_background { background: var(--select-yellow-bg); }
.highlight-teal_background { background: var(--select-green-bg); }
.highlight-blue_background { background: var(--select-blue-bg); }
.highlight-purple_background { background: var(--select-purple-bg); }
.highlight-pink_background { background: var(--select-pink-bg); }
.highlight-red_background { background: var(--select-red-bg); }
.block-color-default { color: inherit; fill: inherit; }
.block-color-gray { color: var(--h-gray); fill: var(--h-gray); }
.block-color-brown { color: var(--h-brown); fill: var(--h-brown); }
.block-color-orange { color: var(--h-orange); fill: var(--h-orange); }
.block-color-yellow { color: var(--h-yellow); fill: var(--h-yellow); }
.block-color-teal { color: var(--h-teal); fill: var(--h-teal); }
.block-color-blue { color: var(--h-blue); fill: var(--h-blue); }
.block-color-purple { color: var(--h-purple); fill: var(--h-purple); }
.block-color-pink { color: var(--h-pink); fill: var(--h-pink); }
.block-color-red { color: var(--h-red); fill: var(--h-red); }
.block-color-default_background { color: inherit; fill: inherit; }
.block-color-gray_background { background: var(--bg-gray); }
.block-color-brown_background { background: var(--bg-brown); }
.block-color-orange_background { background: var(--bg-orange); }
.block-color-yellow_background { background: var(--bg-yellow); }
.block-color-teal_background { background: var(--bg-teal); }
.block-color-blue_background { background: var(--bg-blue); }
.block-color-purple_background { background: var(--bg-purple); }
.block-color-pink_background { background: var(--bg-pink); }
.block-color-red_background { background: var(--bg-red); }
.select-value-color-default { background-color: var(--select-default-bg); }
.select-value-color-gray { background-color: var(--select-gray-bg); }
.select-value-color-brown { background-color: var(--select-brown-bg); }
.select-value-color-orange { background-color: var(--select-orange-bg); }
.select-value-color-yellow { background-color: var(--select-yellow-bg); }
.select-value-color-green { background-color: var(--select-green-bg); }
.select-value-color-blue { background-color: var(--select-blue-bg); }
.select-value-color-purple { background-color: var(--select-purple-bg); }
.select-value-color-pink { background-color: var(--select-pink-bg); }
.select-value-color-red { background-color: var(--select-red-bg); }

.checkbox {
	display: inline-flex;
	vertical-align: text-bottom;
	width: 16;
	height: 16;
	background-size: 16px;
	margin-left: 2px;
	margin-right: 5px;
}

.checkbox-on {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%2358A9D7%22%2F%3E%0A%3Cpath%20d%3D%22M6.71429%2012.2852L14%204.9995L12.7143%203.71436L6.71429%209.71378L3.28571%206.2831L2%207.57092L6.71429%2012.2852Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E");
}

.checkbox-off {
	background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20x%3D%220.75%22%20y%3D%220.75%22%20width%3D%2214.5%22%20height%3D%2214.5%22%20fill%3D%22white%22%20stroke%3D%22%2336352F%22%20stroke-width%3D%221.5%22%2F%3E%0A%3C%2Fsvg%3E");
}

@media (max-width: 600px) {
  /* More comfortable outer padding */
  body {
    margin: 0;                 /* avoid double margins on tiny screens */
    padding: 16px;             /* consistent breathing room */
    max-width: none;
  }

  /* Slightly reduce overall density */
  .page-body {
    padding-top: 4px;
  }

  /* Responsive heading sizing */
  .page-title {
    font-size: 2.0rem;         /* was 2.5rem */
    line-height: 1.05;
    margin-bottom: 0.75rem;
  }

  /* Your “Helping service businesses…” hero h1 */
  .section > h1 {
    font-size: 1.55rem;        /* was 1.875rem */
    line-height: 1.15;
    margin-top: 1rem;
    margin-bottom: 0.75rem;    /* you currently have margin-bottom: 0 on headings */
  }

  h2 {
    font-size: 1.25rem;        /* was 1.5rem */
    line-height: 1.2;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }

  /* Body text: bump line height slightly for ease */
  p, li {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  /* Make blockquotes feel intentional (less cramped) */
  blockquote {
    margin: 1rem 0;
    padding: 0.9rem 1rem;
    border-left-width: 4px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.04);
  }

  /* Fix “one bullet per UL” spacing without changing HTML */
  ul.bulleted-list {
    margin: 0.35rem 0;         /* control each UL chunk */
    padding-inline-start: 1.2em; /* reduce indent on mobile */
  }
  ul.bulleted-list > li {
    margin: 0.45rem 0;         /* give each bullet room */
  }

  /* Reduce extra whitespace blocks between sections */
  .spacer-block {
    height: 0.6rem;            /* was 1em */
  }
}