@import url("fontawesome-all.min.css");

/*
	Helios by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

	html {
		box-sizing: border-box;
	}

	:root {
		--an-bg: #121416;
		--an-bg-soft: #181c1f;
		--an-panel: #1d2327;
		--an-line: rgba(215, 218, 220, 0.14);
		--an-text: #d7dadc;
		--an-text-soft: #a6aaad;
		--an-heading: #f0ece2;
		--an-accent: #8d9f8b;
		--an-accent-soft: #b7aa7a;
	}

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

	body {
		background: var(--an-bg);
		color: var(--an-text);
		font-size: 15pt;
		line-height: 1.85em;
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Helvetica, Arial, sans-serif;
		font-weight: 300;
	}

		body.is-preload *, body.is-preload *:before, body.is-preload *:after {
			-moz-animation: none !important;
			-webkit-animation: none !important;
			-ms-animation: none !important;
			animation: none !important;
		}

	input, textarea, select {
		font-size: 15pt;
		line-height: 1.85em;
		font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Helvetica, Arial, sans-serif;
		font-weight: 300;
	}

	h1, h2, h3, h4, h5, h6 {
		font-weight: 400;
		color: #483949;
		line-height: 1.25em;
	}

	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
		color: inherit;
		text-decoration: none;
		border-bottom-color: transparent;
	}

	h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
		font-weight: 600;
	}

	h2 {
		font-size: 2.85em;
	}

	h3 {
		font-size: 1.25em;
	}

	h4 {
		font-size: 1em;
		margin: 0 0 0.25em 0;
	}

	strong, b {
		font-weight: 400;
		color: #483949;
	}

	em, i {
		font-style: italic;
	}

	a {
		color: inherit;
		border-bottom: solid 1px rgba(128, 128, 128, 0.15);
		text-decoration: none;
		-moz-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
		-webkit-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
		-ms-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
		transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
	}

		a:hover {
			color: #ef8376;
			border-bottom-color: transparent;
		}

	sub {
		position: relative;
		top: 0.5em;
		font-size: 0.8em;
	}

	sup {
		position: relative;
		top: -0.5em;
		font-size: 0.8em;
	}

	blockquote {
		border-left: solid 0.5em #ddd;
		padding: 1em 0 1em 2em;
		font-style: italic;
	}

	p, ul, ol, dl, table {
		margin-bottom: 1em;
	}

	p {
		text-align: justify;
	}

	br.clear {
		clear: both;
	}

	hr {
		position: relative;
		display: block;
		border: 0;
		top: 4.5em;
		margin-bottom: 9em;
		height: 6px;
		border-top: solid 1px rgba(128, 128, 128, 0.2);
		border-bottom: solid 1px rgba(128, 128, 128, 0.2);
	}

		hr:before, hr:after {
			content: '';
			position: absolute;
			top: -8px;
			display: block;
			width: 1px;
			height: 21px;
			background: rgba(128, 128, 128, 0.2);
		}

		hr:before {
			left: -1px;
		}

		hr:after {
			right: -1px;
		}

	.timestamp {
		color: rgba(128, 128, 128, 0.75);
		font-size: 0.8em;
	}

/* Container */

	.container {
		margin: 0 auto;
		max-width: 100%;
		width: 1400px;
	}

		@media screen and (max-width: 1680px) {

			.container {
				width: 1200px;
			}

		}

		@media screen and (max-width: 1280px) {

			.container {
				width: 100%;
			}

		}

		@media screen and (max-width: 960px) {

			.container {
				width: 100%;
			}

		}

		@media screen and (max-width: 840px) {

			.container {
				width: 100%;
			}

		}

		@media screen and (max-width: 736px) {

			.container {
				width: 100%;
			}

		}

/* Row */

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

		.row > * {
			box-sizing: border-box;
		}

		.row.gtr-uniform > * > :last-child {
			margin-bottom: 0;
		}

		.row.aln-left {
			justify-content: flex-start;
		}

		.row.aln-center {
			justify-content: center;
		}

		.row.aln-right {
			justify-content: flex-end;
		}

		.row.aln-top {
			align-items: flex-start;
		}

		.row.aln-middle {
			align-items: center;
		}

		.row.aln-bottom {
			align-items: flex-end;
		}

		.row > .imp {
			order: -1;
		}

		.row > .col-1 {
			width: 8.33333%;
		}

		.row > .off-1 {
			margin-left: 8.33333%;
		}

		.row > .col-2 {
			width: 16.66667%;
		}

		.row > .off-2 {
			margin-left: 16.66667%;
		}

		.row > .col-3 {
			width: 25%;
		}

		.row > .off-3 {
			margin-left: 25%;
		}

		.row > .col-4 {
			width: 33.33333%;
		}

		.row > .off-4 {
			margin-left: 33.33333%;
		}

		.row > .col-5 {
			width: 41.66667%;
		}

		.row > .off-5 {
			margin-left: 41.66667%;
		}

		.row > .col-6 {
			width: 50%;
		}

		.row > .off-6 {
			margin-left: 50%;
		}

		.row > .col-7 {
			width: 58.33333%;
		}

		.row > .off-7 {
			margin-left: 58.33333%;
		}

		.row > .col-8 {
			width: 66.66667%;
		}

		.row > .off-8 {
			margin-left: 66.66667%;
		}

		.row > .col-9 {
			width: 75%;
		}

		.row > .off-9 {
			margin-left: 75%;
		}

		.row > .col-10 {
			width: 83.33333%;
		}

		.row > .off-10 {
			margin-left: 83.33333%;
		}

		.row > .col-11 {
			width: 91.66667%;
		}

		.row > .off-11 {
			margin-left: 91.66667%;
		}

		.row > .col-12 {
			width: 100%;
		}

		.row > .off-12 {
			margin-left: 100%;
		}

		.row.gtr-0 {
			margin-top: 0px;
			margin-left: 0px;
		}

			.row.gtr-0 > * {
				padding: 0px 0 0 0px;
			}

			.row.gtr-0.gtr-uniform {
				margin-top: 0px;
			}

				.row.gtr-0.gtr-uniform > * {
					padding-top: 0px;
				}

		.row.gtr-25 {
			margin-top: -10px;
			margin-left: -10px;
		}

			.row.gtr-25 > * {
				padding: 10px 0 0 10px;
			}

			.row.gtr-25.gtr-uniform {
				margin-top: -10px;
			}

				.row.gtr-25.gtr-uniform > * {
					padding-top: 10px;
				}

		.row.gtr-50 {
			margin-top: -20px;
			margin-left: -20px;
		}

			.row.gtr-50 > * {
				padding: 20px 0 0 20px;
			}

			.row.gtr-50.gtr-uniform {
				margin-top: -20px;
			}

				.row.gtr-50.gtr-uniform > * {
					padding-top: 20px;
				}

		.row {
			margin-top: -40px;
			margin-left: -40px;
		}

			.row > * {
				padding: 40px 0 0 40px;
			}

			.row.gtr-uniform {
				margin-top: -40px;
			}

				.row.gtr-uniform > * {
					padding-top: 40px;
				}

		.row.gtr-150 {
			margin-top: -60px;
			margin-left: -60px;
		}

			.row.gtr-150 > * {
				padding: 60px 0 0 60px;
			}

			.row.gtr-150.gtr-uniform {
				margin-top: -60px;
			}

				.row.gtr-150.gtr-uniform > * {
					padding-top: 60px;
				}

		.row.gtr-200 {
			margin-top: -80px;
			margin-left: -80px;
		}

			.row.gtr-200 > * {
				padding: 80px 0 0 80px;
			}

			.row.gtr-200.gtr-uniform {
				margin-top: -80px;
			}

				.row.gtr-200.gtr-uniform > * {
					padding-top: 80px;
				}

		@media screen and (max-width: 1680px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-wide {
					order: -1;
				}

				.row > .col-1-wide {
					width: 8.33333%;
				}

				.row > .off-1-wide {
					margin-left: 8.33333%;
				}

				.row > .col-2-wide {
					width: 16.66667%;
				}

				.row > .off-2-wide {
					margin-left: 16.66667%;
				}

				.row > .col-3-wide {
					width: 25%;
				}

				.row > .off-3-wide {
					margin-left: 25%;
				}

				.row > .col-4-wide {
					width: 33.33333%;
				}

				.row > .off-4-wide {
					margin-left: 33.33333%;
				}

				.row > .col-5-wide {
					width: 41.66667%;
				}

				.row > .off-5-wide {
					margin-left: 41.66667%;
				}

				.row > .col-6-wide {
					width: 50%;
				}

				.row > .off-6-wide {
					margin-left: 50%;
				}

				.row > .col-7-wide {
					width: 58.33333%;
				}

				.row > .off-7-wide {
					margin-left: 58.33333%;
				}

				.row > .col-8-wide {
					width: 66.66667%;
				}

				.row > .off-8-wide {
					margin-left: 66.66667%;
				}

				.row > .col-9-wide {
					width: 75%;
				}

				.row > .off-9-wide {
					margin-left: 75%;
				}

				.row > .col-10-wide {
					width: 83.33333%;
				}

				.row > .off-10-wide {
					margin-left: 83.33333%;
				}

				.row > .col-11-wide {
					width: 91.66667%;
				}

				.row > .off-11-wide {
					margin-left: 91.66667%;
				}

				.row > .col-12-wide {
					width: 100%;
				}

				.row > .off-12-wide {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -10px;
					margin-left: -10px;
				}

					.row.gtr-25 > * {
						padding: 10px 0 0 10px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -10px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 10px;
						}

				.row.gtr-50 {
					margin-top: -20px;
					margin-left: -20px;
				}

					.row.gtr-50 > * {
						padding: 20px 0 0 20px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -20px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 20px;
						}

				.row {
					margin-top: -40px;
					margin-left: -40px;
				}

					.row > * {
						padding: 40px 0 0 40px;
					}

					.row.gtr-uniform {
						margin-top: -40px;
					}

						.row.gtr-uniform > * {
							padding-top: 40px;
						}

				.row.gtr-150 {
					margin-top: -60px;
					margin-left: -60px;
				}

					.row.gtr-150 > * {
						padding: 60px 0 0 60px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -60px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 60px;
						}

				.row.gtr-200 {
					margin-top: -80px;
					margin-left: -80px;
				}

					.row.gtr-200 > * {
						padding: 80px 0 0 80px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -80px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 80px;
						}

		}

		@media screen and (max-width: 1280px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-normal {
					order: -1;
				}

				.row > .col-1-normal {
					width: 8.33333%;
				}

				.row > .off-1-normal {
					margin-left: 8.33333%;
				}

				.row > .col-2-normal {
					width: 16.66667%;
				}

				.row > .off-2-normal {
					margin-left: 16.66667%;
				}

				.row > .col-3-normal {
					width: 25%;
				}

				.row > .off-3-normal {
					margin-left: 25%;
				}

				.row > .col-4-normal {
					width: 33.33333%;
				}

				.row > .off-4-normal {
					margin-left: 33.33333%;
				}

				.row > .col-5-normal {
					width: 41.66667%;
				}

				.row > .off-5-normal {
					margin-left: 41.66667%;
				}

				.row > .col-6-normal {
					width: 50%;
				}

				.row > .off-6-normal {
					margin-left: 50%;
				}

				.row > .col-7-normal {
					width: 58.33333%;
				}

				.row > .off-7-normal {
					margin-left: 58.33333%;
				}

				.row > .col-8-normal {
					width: 66.66667%;
				}

				.row > .off-8-normal {
					margin-left: 66.66667%;
				}

				.row > .col-9-normal {
					width: 75%;
				}

				.row > .off-9-normal {
					margin-left: 75%;
				}

				.row > .col-10-normal {
					width: 83.33333%;
				}

				.row > .off-10-normal {
					margin-left: 83.33333%;
				}

				.row > .col-11-normal {
					width: 91.66667%;
				}

				.row > .off-11-normal {
					margin-left: 91.66667%;
				}

				.row > .col-12-normal {
					width: 100%;
				}

				.row > .off-12-normal {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -9px;
					margin-left: -9px;
				}

					.row.gtr-25 > * {
						padding: 9px 0 0 9px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -9px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 9px;
						}

				.row.gtr-50 {
					margin-top: -18px;
					margin-left: -18px;
				}

					.row.gtr-50 > * {
						padding: 18px 0 0 18px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -18px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 18px;
						}

				.row {
					margin-top: -36px;
					margin-left: -36px;
				}

					.row > * {
						padding: 36px 0 0 36px;
					}

					.row.gtr-uniform {
						margin-top: -36px;
					}

						.row.gtr-uniform > * {
							padding-top: 36px;
						}

				.row.gtr-150 {
					margin-top: -54px;
					margin-left: -54px;
				}

					.row.gtr-150 > * {
						padding: 54px 0 0 54px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -54px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 54px;
						}

				.row.gtr-200 {
					margin-top: -72px;
					margin-left: -72px;
				}

					.row.gtr-200 > * {
						padding: 72px 0 0 72px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -72px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 72px;
						}

		}

		@media screen and (max-width: 960px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-narrow {
					order: -1;
				}

				.row > .col-1-narrow {
					width: 8.33333%;
				}

				.row > .off-1-narrow {
					margin-left: 8.33333%;
				}

				.row > .col-2-narrow {
					width: 16.66667%;
				}

				.row > .off-2-narrow {
					margin-left: 16.66667%;
				}

				.row > .col-3-narrow {
					width: 25%;
				}

				.row > .off-3-narrow {
					margin-left: 25%;
				}

				.row > .col-4-narrow {
					width: 33.33333%;
				}

				.row > .off-4-narrow {
					margin-left: 33.33333%;
				}

				.row > .col-5-narrow {
					width: 41.66667%;
				}

				.row > .off-5-narrow {
					margin-left: 41.66667%;
				}

				.row > .col-6-narrow {
					width: 50%;
				}

				.row > .off-6-narrow {
					margin-left: 50%;
				}

				.row > .col-7-narrow {
					width: 58.33333%;
				}

				.row > .off-7-narrow {
					margin-left: 58.33333%;
				}

				.row > .col-8-narrow {
					width: 66.66667%;
				}

				.row > .off-8-narrow {
					margin-left: 66.66667%;
				}

				.row > .col-9-narrow {
					width: 75%;
				}

				.row > .off-9-narrow {
					margin-left: 75%;
				}

				.row > .col-10-narrow {
					width: 83.33333%;
				}

				.row > .off-10-narrow {
					margin-left: 83.33333%;
				}

				.row > .col-11-narrow {
					width: 91.66667%;
				}

				.row > .off-11-narrow {
					margin-left: 91.66667%;
				}

				.row > .col-12-narrow {
					width: 100%;
				}

				.row > .off-12-narrow {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -8px;
					margin-left: -8px;
				}

					.row.gtr-25 > * {
						padding: 8px 0 0 8px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -8px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 8px;
						}

				.row.gtr-50 {
					margin-top: -16px;
					margin-left: -16px;
				}

					.row.gtr-50 > * {
						padding: 16px 0 0 16px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -16px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 16px;
						}

				.row {
					margin-top: -32px;
					margin-left: -32px;
				}

					.row > * {
						padding: 32px 0 0 32px;
					}

					.row.gtr-uniform {
						margin-top: -32px;
					}

						.row.gtr-uniform > * {
							padding-top: 32px;
						}

				.row.gtr-150 {
					margin-top: -48px;
					margin-left: -48px;
				}

					.row.gtr-150 > * {
						padding: 48px 0 0 48px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -48px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 48px;
						}

				.row.gtr-200 {
					margin-top: -64px;
					margin-left: -64px;
				}

					.row.gtr-200 > * {
						padding: 64px 0 0 64px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -64px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 64px;
						}

		}

		@media screen and (max-width: 840px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-narrower {
					order: -1;
				}

				.row > .col-1-narrower {
					width: 8.33333%;
				}

				.row > .off-1-narrower {
					margin-left: 8.33333%;
				}

				.row > .col-2-narrower {
					width: 16.66667%;
				}

				.row > .off-2-narrower {
					margin-left: 16.66667%;
				}

				.row > .col-3-narrower {
					width: 25%;
				}

				.row > .off-3-narrower {
					margin-left: 25%;
				}

				.row > .col-4-narrower {
					width: 33.33333%;
				}

				.row > .off-4-narrower {
					margin-left: 33.33333%;
				}

				.row > .col-5-narrower {
					width: 41.66667%;
				}

				.row > .off-5-narrower {
					margin-left: 41.66667%;
				}

				.row > .col-6-narrower {
					width: 50%;
				}

				.row > .off-6-narrower {
					margin-left: 50%;
				}

				.row > .col-7-narrower {
					width: 58.33333%;
				}

				.row > .off-7-narrower {
					margin-left: 58.33333%;
				}

				.row > .col-8-narrower {
					width: 66.66667%;
				}

				.row > .off-8-narrower {
					margin-left: 66.66667%;
				}

				.row > .col-9-narrower {
					width: 75%;
				}

				.row > .off-9-narrower {
					margin-left: 75%;
				}

				.row > .col-10-narrower {
					width: 83.33333%;
				}

				.row > .off-10-narrower {
					margin-left: 83.33333%;
				}

				.row > .col-11-narrower {
					width: 91.66667%;
				}

				.row > .off-11-narrower {
					margin-left: 91.66667%;
				}

				.row > .col-12-narrower {
					width: 100%;
				}

				.row > .off-12-narrower {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -8px;
					margin-left: -8px;
				}

					.row.gtr-25 > * {
						padding: 8px 0 0 8px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -8px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 8px;
						}

				.row.gtr-50 {
					margin-top: -16px;
					margin-left: -16px;
				}

					.row.gtr-50 > * {
						padding: 16px 0 0 16px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -16px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 16px;
						}

				.row {
					margin-top: -32px;
					margin-left: -32px;
				}

					.row > * {
						padding: 32px 0 0 32px;
					}

					.row.gtr-uniform {
						margin-top: -32px;
					}

						.row.gtr-uniform > * {
							padding-top: 32px;
						}

				.row.gtr-150 {
					margin-top: -48px;
					margin-left: -48px;
				}

					.row.gtr-150 > * {
						padding: 48px 0 0 48px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -48px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 48px;
						}

				.row.gtr-200 {
					margin-top: -64px;
					margin-left: -64px;
				}

					.row.gtr-200 > * {
						padding: 64px 0 0 64px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -64px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 64px;
						}

		}

		@media screen and (max-width: 736px) {

			.row {
				display: flex;
				flex-wrap: wrap;
				box-sizing: border-box;
				align-items: stretch;
			}

				.row > * {
					box-sizing: border-box;
				}

				.row.gtr-uniform > * > :last-child {
					margin-bottom: 0;
				}

				.row.aln-left {
					justify-content: flex-start;
				}

				.row.aln-center {
					justify-content: center;
				}

				.row.aln-right {
					justify-content: flex-end;
				}

				.row.aln-top {
					align-items: flex-start;
				}

				.row.aln-middle {
					align-items: center;
				}

				.row.aln-bottom {
					align-items: flex-end;
				}

				.row > .imp-mobile {
					order: -1;
				}

				.row > .col-1-mobile {
					width: 8.33333%;
				}

				.row > .off-1-mobile {
					margin-left: 8.33333%;
				}

				.row > .col-2-mobile {
					width: 16.66667%;
				}

				.row > .off-2-mobile {
					margin-left: 16.66667%;
				}

				.row > .col-3-mobile {
					width: 25%;
				}

				.row > .off-3-mobile {
					margin-left: 25%;
				}

				.row > .col-4-mobile {
					width: 33.33333%;
				}

				.row > .off-4-mobile {
					margin-left: 33.33333%;
				}

				.row > .col-5-mobile {
					width: 41.66667%;
				}

				.row > .off-5-mobile {
					margin-left: 41.66667%;
				}

				.row > .col-6-mobile {
					width: 50%;
				}

				.row > .off-6-mobile {
					margin-left: 50%;
				}

				.row > .col-7-mobile {
					width: 58.33333%;
				}

				.row > .off-7-mobile {
					margin-left: 58.33333%;
				}

				.row > .col-8-mobile {
					width: 66.66667%;
				}

				.row > .off-8-mobile {
					margin-left: 66.66667%;
				}

				.row > .col-9-mobile {
					width: 75%;
				}

				.row > .off-9-mobile {
					margin-left: 75%;
				}

				.row > .col-10-mobile {
					width: 83.33333%;
				}

				.row > .off-10-mobile {
					margin-left: 83.33333%;
				}

				.row > .col-11-mobile {
					width: 91.66667%;
				}

				.row > .off-11-mobile {
					margin-left: 91.66667%;
				}

				.row > .col-12-mobile {
					width: 100%;
				}

				.row > .off-12-mobile {
					margin-left: 100%;
				}

				.row.gtr-0 {
					margin-top: 0px;
					margin-left: 0px;
				}

					.row.gtr-0 > * {
						padding: 0px 0 0 0px;
					}

					.row.gtr-0.gtr-uniform {
						margin-top: 0px;
					}

						.row.gtr-0.gtr-uniform > * {
							padding-top: 0px;
						}

				.row.gtr-25 {
					margin-top: -5px;
					margin-left: -5px;
				}

					.row.gtr-25 > * {
						padding: 5px 0 0 5px;
					}

					.row.gtr-25.gtr-uniform {
						margin-top: -5px;
					}

						.row.gtr-25.gtr-uniform > * {
							padding-top: 5px;
						}

				.row.gtr-50 {
					margin-top: -10px;
					margin-left: -10px;
				}

					.row.gtr-50 > * {
						padding: 10px 0 0 10px;
					}

					.row.gtr-50.gtr-uniform {
						margin-top: -10px;
					}

						.row.gtr-50.gtr-uniform > * {
							padding-top: 10px;
						}

				.row {
					margin-top: -20px;
					margin-left: -20px;
				}

					.row > * {
						padding: 20px 0 0 20px;
					}

					.row.gtr-uniform {
						margin-top: -20px;
					}

						.row.gtr-uniform > * {
							padding-top: 20px;
						}

				.row.gtr-150 {
					margin-top: -30px;
					margin-left: -30px;
				}

					.row.gtr-150 > * {
						padding: 30px 0 0 30px;
					}

					.row.gtr-150.gtr-uniform {
						margin-top: -30px;
					}

						.row.gtr-150.gtr-uniform > * {
							padding-top: 30px;
						}

				.row.gtr-200 {
					margin-top: -40px;
					margin-left: -40px;
				}

					.row.gtr-200 > * {
						padding: 40px 0 0 40px;
					}

					.row.gtr-200.gtr-uniform {
						margin-top: -40px;
					}

						.row.gtr-200.gtr-uniform > * {
							padding-top: 40px;
						}

		}

/* Sections/Article */

	section, article {
		margin-bottom: 3em;
	}

		section > :last-child, section:last-child, article > :last-child, article:last-child {
			margin-bottom: 0;
		}

		section.special > header, section.special > footer, article.special > header, article.special > footer {
			text-align: center;
		}

	.row > section, .row > article {
		margin-bottom: 0;
	}

	header {
		margin: 0 0 1em 0;
	}

		header > p {
			display: block;
			font-size: 1.5em;
			margin: 1em 0 2em 0;
			line-height: 1.5em;
			text-align: inherit;
		}

	footer {
		margin: 2.5em 0 0 0;
	}

/* Image */

	.image {
		position: relative;
		display: inline-block;
		border: 0;
		outline: 0;
	}

		.image img {
			display: block;
			width: 100%;
		}

		.image.fit {
			display: block;
			width: 100%;
		}

		.image.featured {
			display: block;
			width: 100%;
			margin: 0 0 4em 0;
		}

		.image.left {
			float: left;
			margin: 0 2em 2em 0;
		}

		.image.centered {
			display: block;
			margin: 0 0 2em 0;
		}

			.image.centered img {
				margin: 0 auto;
				width: auto;
			}

/* List */

	ul {
		list-style: disc;
		padding-left: 1em;
	}

		ul li {
			padding-left: 0.5em;
		}

	ol {
		list-style: decimal;
		padding-left: 1.25em;
	}

		ol li {
			padding-left: 0.25em;
		}

/* Actions */

	ul.actions {
		margin: 3em 0 0 0;
		list-style: none;
		padding-left: 0;
	}

		form ul.actions {
			margin-top: 0;
		}

		ul.actions li {
			display: inline-block;
			margin: 0 0.75em 0 0.75em;
			padding-left: 0;
		}

			ul.actions li:first-child {
				margin-left: 0;
			}

			ul.actions li:last-child {
				margin-right: 0;
			}

/* Divided */

	ul.divided {
		list-style: none;
		padding-left: 0;
	}

		ul.divided li {
			border-top: solid 1px rgba(128, 128, 128, 0.2);
			padding-top: 1.5em;
			margin-top: 1.5em;
			padding-left: 0;
		}

			ul.divided li:first-child {
				border-top: 0;
				padding-top: 0;
				margin-top: 0;
			}

/* Menu */

	ul.menu {
		height: 1em;
		line-height: 1em;
		list-style: none;
		padding-left: 0;
	}

		ul.menu li {
			display: inline-block;
			border-left: solid 1px rgba(128, 128, 128, 0.2);
			padding-left: 1.25em;
			margin-left: 1.25em;
		}

			ul.menu li:first-child {
				border-left: 0;
				padding-left: 0;
				margin-left: 0;
			}

/* Icons */

	ul.icons {
		position: relative;
		background: rgba(128, 128, 128, 0.05);
		border-radius: 4em;
		display: inline-block;
		padding: 0.35em 0.75em 0.35em 0.75em;
		font-size: 1.25em;
		cursor: default;
		list-style: none;
	}

		ul.icons li {
			display: inline-block;
			padding-left: 0;
		}

			ul.icons li a {
				display: inline-block;
				background: none;
				width: 2.5em;
				height: 2.5em;
				line-height: 2.5em;
				text-align: center;
				border-radius: 100%;
				border: 0;
				color: inherit;
			}

				ul.icons li a:hover {
					color: #ef8376;
				}

/* Form */

	form label {
		display: block;
		font-weight: 400;
		color: #483949;
		margin: 0 0 1em 0;
	}

	form input[type="text"],
	form input[type="email"],
	form input[type="password"],
	form select,
	form textarea {
		-webkit-appearance: none;
		display: block;
		border: 0;
		background: #fafafa;
		width: 100%;
		border-radius: 0.5em;
		border: solid 1px #E5E5E5;
		padding: 1em;
		-moz-transition: background-color 0.35s ease-in-out, border-color 0.35s ease-in-out;
		-webkit-transition: background-color 0.35s ease-in-out, border-color 0.35s ease-in-out;
		-ms-transition: background-color 0.35s ease-in-out, border-color 0.35s ease-in-out;
		transition: background-color 0.35s ease-in-out, border-color 0.35s ease-in-out;
	}

		form input[type="text"]:focus,
		form input[type="email"]:focus,
		form input[type="password"]:focus,
		form select:focus,
		form textarea:focus {
			background: #fff;
			border-color: #df7366;
		}

	form input[type="text"],
	form input[type="email"],
	form input[type="password"],
	form select {
		line-height: 1em;
	}

	form textarea {
		min-height: 9em;
	}

	form ::-webkit-input-placeholder {
		color: #555 !important;
	}

	form :-moz-placeholder {
		color: #555 !important;
	}

	form ::-moz-placeholder {
		color: #555 !important;
	}

	form :-ms-input-placeholder {
		color: #555 !important;
	}

	form ::-moz-focus-inner {
		border: 0;
	}

/* Table */

	table {
		width: 100%;
	}

		table.default {
			width: 100%;
		}

			table.default tbody tr {
				border-top: solid 1px #e5e5e5;
			}

				table.default tbody tr:first-child {
					border-top: 0;
				}

				table.default tbody tr:nth-child(2n+1) {
					background: #fafafa;
				}

			table.default td {
				padding: 0.5em 1em 0.5em 1em;
			}

			table.default th {
				text-align: left;
				font-weight: 400;
				padding: 0.5em 1em 0.5em 1em;
			}

			table.default thead {
				border-bottom: solid 2px #e5e5e5;
			}

			table.default tfoot {
				border-top: solid 2px #e5e5e5;
			}

/* Button */

	input[type="button"],
	input[type="submit"],
	input[type="reset"],
	button,
	.button {
		position: relative;
		display: inline-block;
		background: #df7366;
		color: #fff;
		text-align: center;
		border-radius: 0.5em;
		text-decoration: none;
		padding: 0.65em 3em 0.65em 3em;
		border: 0;
		cursor: pointer;
		outline: 0;
		font-weight: 300;
		-moz-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
		-webkit-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
		-ms-transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
		transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out, border-bottom-color 0.35s ease-in-out;
	}

		input[type="button"]:hover,
		input[type="submit"]:hover,
		input[type="reset"]:hover,
		button:hover,
		.button:hover {
			color: #fff8ef;
			background: var(--an-accent);
		}

		input[type="button"].alt,
		input[type="submit"].alt,
		input[type="reset"].alt,
		button.alt,
		.button.alt {
			background: #2B252C;
		}

			input[type="button"].alt:hover,
			input[type="submit"].alt:hover,
			input[type="reset"].alt:hover,
			button.alt:hover,
			.button.alt:hover {
				background: #3B353C;
			}

/* Post */

	.post.stub {
		text-align: center;
	}

		.post.stub header {
			margin: 0;
		}

/* Icons */

	.icon {
		text-decoration: none;
		text-decoration: none;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			display: inline-block;
			font-style: normal;
			font-variant: normal;
			text-rendering: auto;
			line-height: 1;
			text-transform: none !important;
			font-family: 'Font Awesome 5 Free';
			font-weight: 400;
		}

		.icon:before {
			line-height: inherit;
			font-size: 1.25em;
		}

		.icon > .label {
			display: none;
		}

		.icon.solid:before {
			font-weight: 900;
		}

		.icon.brands:before {
			font-family: 'Font Awesome 5 Brands';
		}

		.icon.circled {
			position: relative;
			display: inline-block;
			background: #2b252c;
			color: #fff;
			border-radius: 100%;
			width: 3em;
			height: 3em;
			line-height: 3em;
			text-align: center;
			font-size: 1.25em;
		}

			header .icon.circled {
				margin: 0 0 2em 0;
			}

/* Wrapper */

	.wrapper {
		background: #fff;
		margin: 0 0 2em 0;
		padding: 6em 0 6em 0;
	}

		.wrapper.style2 {
			padding-top: 0;
		}

/* Header */

	#header {
		position: relative;
		background-image: url("../../images/header.jpg");
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
		color: #fff;
		text-align: center;
		padding: 7.5em 0 2em 0;
		cursor: default;
	}

	/* Homepage hero — lives inside #swup so swup can load/unload it correctly */
	.homepage-hero-section {
		position: relative;
		background-image: url("../../images/header.jpg");
		background-size: cover;
		background-position: center center;
		background-attachment: fixed;
		color: #fff;
		text-align: center;
		padding: 7em 2em 5em;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		min-height: 100vh;
	}

	.homepage-hero-section .inner {
		position: relative;
		z-index: 1;
		max-width: 54rem;
		margin: 0 auto;
	}

	.homepage-hero-section header {
		display: block;
	}

	.homepage-hero-section h1 {
		color: #fff;
		font-size: 4em;
		line-height: 1em;
	}

	.homepage-hero-section h1 a {
		color: inherit;
	}

	.homepage-hero-section hr {
		top: 1.5em;
		margin-bottom: 3em;
		border-bottom-color: rgba(192, 192, 192, 0.35);
		box-shadow: inset 0 1px 0 0 rgba(192, 192, 192, 0.35);
	}

	.homepage-hero-section hr:before,
	.homepage-hero-section hr:after {
		background: rgba(192, 192, 192, 0.35);
	}

	.homepage-hero-section .hero-subline {
		font-size: 1.15em;
		line-height: 1.6;
		margin-bottom: 0.4em;
	}

	.homepage-hero-section .hero-line {
		margin-top: 0;
	}

	.homepage-banner-inner {
		margin-top: 3em;
		color: #fff;
	}

	.homepage-banner-inner h2 {
		color: #fff;
		font-size: 1.75em;
		margin-bottom: 0.5em;
	}

	.homepage-banner-inner p {
		color: rgba(255,255,255,0.8);
		font-size: 1em;
		margin: 0;
	}

/* Nav */

	#nav {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		text-align: center;
		padding: 1.5em 0 1.5em 0;
		z-index: 1;
		overflow: hidden;
	}

		#nav > ul {
			line-height: 0px;
			position: relative;
			display: inline-flex;
			align-items: center;
			margin: 0;
			min-height: 21px;
			border-left: solid 1px rgba(192, 192, 192, 0.35);
			border-right: solid 1px rgba(192, 192, 192, 0.35);
		}

			#nav > ul:before, #nav > ul:after {
				content: '';
				display: block;
				width: 300%;
				position: absolute;
				top: 50%;
				transform: translateY(-50%);
				height: 5px;
				border-top: solid 1px rgba(192, 192, 192, 0.35);
				border-bottom: solid 1px rgba(192, 192, 192, 0.35);
			}

			#nav > ul:before {
				left: 100%;
				margin-left: 1px;
			}

			#nav > ul:after {
				right: 100%;
				margin-right: 1px;
			}

			#nav > ul > li {
				display: inline-flex;
				align-items: center;
				margin: 0 0.5em;
				border-radius: 0.5em;
				padding: 0.85em;
				border: solid 1px transparent;
				-moz-transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
				-webkit-transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
				-ms-transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
				transition: color 0.35s ease-in-out, border-color 0.35s ease-in-out;
			}

				#nav > ul > li.active {
					border-color: rgba(192, 192, 192, 0.35);
				}

				#nav > ul > li > a, #nav > ul > li > span {
					display: block;
					color: inherit;
					text-decoration: none;
					border: 0;
					outline: 0;
				}

				#nav > ul > li > ul {
					display: none;
				}

	.dropotron {
		background: rgba(255, 255, 255, 0.975);
		padding: 1em 1.25em 1em 1.25em;
		line-height: 1em;
		height: auto;
		text-align: left;
		border-radius: 0.5em;
		box-shadow: 0 0.15em 0.25em 0 rgba(0, 0, 0, 0.25);
		min-width: 12em;
		margin-top: -1em;
		list-style: none;
	}

		.dropotron li {
			border-top: solid 1px rgba(128, 128, 128, 0.2);
			color: #5b5b5b;
			padding-left: 0;
		}

			.dropotron li:first-child {
				border-top: 0;
			}

			.dropotron li:hover {
				color: #ef8376;
			}

			.dropotron li a, .dropotron li span {
				display: block;
				border: 0;
				padding: 0.5em 0 0.5em 0;
				-moz-transition: color 0.35s ease-in-out;
				-webkit-transition: color 0.35s ease-in-out;
				-ms-transition: color 0.35s ease-in-out;
				transition: color 0.35s ease-in-out;
			}

		.dropotron.level-0 {
			margin-top: 2em;
			font-size: 0.9em;
		}

			.dropotron.level-0:before {
				content: '';
				position: absolute;
				left: 50%;
				top: -0.7em;
				margin-left: -0.75em;
				border-bottom: solid 0.75em rgba(255, 255, 255, 0.975);
				border-left: solid 0.75em rgba(64, 64, 64, 0);
				border-right: solid 0.75em rgba(64, 64, 64, 0);
			}

/* Banner */

	#banner {
		background: #fff;
		text-align: center;
		padding: 4.5em 0 4.5em 0;
		margin-bottom: 0;
	}

		#banner header > p {
			margin-bottom: 0;
		}

/* Content */

	#content > hr {
		top: 3em;
		margin-bottom: 6em;
	}

	#content > section {
		margin-bottom: 0;
	}

/* Sidebar */

	#sidebar > hr {
		top: 3em;
		margin-bottom: 6em;
	}

		#sidebar > hr.first {
			display: none;
		}

	#sidebar > section {
		margin-bottom: 0;
	}

/* Main */

	#main {
		margin-bottom: 0;
	}

		#main section:first-of-type {
			padding-top: 2em;
		}

/* Footer */

	#footer {
		position: relative;
		overflow: hidden;
		padding: 6em 0 6em 0;
		background: #2b252c;
		color: #fff;
	}

		#footer .icon.circled {
			background: #fff;
			color: #2b252c;
		}

		#footer header {
			text-align: center;
			cursor: default;
		}

		#footer h2, #footer h3, #footer h4, #footer h5, #footer h6 {
			color: #fff;
		}

		#footer .contact {
			text-align: center;
		}

			#footer .contact p {
				text-align: center;
				margin: 0 0 3em 0;
			}

		#footer .copyright {
			text-align: center;
			color: rgba(128, 128, 128, 0.75);
			font-size: 0.8em;
			cursor: default;
		}

			#footer .copyright a {
				color: rgba(128, 128, 128, 0.75);
			}

				#footer .copyright a:hover {
					color: rgba(212, 212, 212, 0.85);
				}

/* Carousel */

	.carousel {
		position: relative;
		overflow: hidden;
		padding: 2em 0 2em 0;
		margin-bottom: 0;
	}

		.carousel .forward, .carousel .backward {
			position: absolute;
			top: 50%;
			width: 6em;
			height: 12em;
			margin-top: -6em;
			cursor: pointer;
		}

			.carousel .forward:before, .carousel .backward:before {
				content: '';
				display: block;
				width: 6em;
				height: 6em;
				border-radius: 100%;
				background-color: rgba(72, 57, 73, 0.5);
				position: absolute;
				top: 50%;
				margin-top: -3em;
				-moz-transition: background-color 0.35s ease-in-out;
				-webkit-transition: background-color 0.35s ease-in-out;
				-o-transition: background-color 0.35s ease-in-out;
				-ms-transition: background-color 0.35s ease-in-out;
				transition: background-color 0.35s ease-in-out;
				-webkit-backface-visibility: hidden;
			}

			.carousel .forward:after, .carousel .backward:after {
				content: '';
				width: 3em;
				height: 3em;
				position: absolute;
				top: 50%;
				margin: -1.5em 0 0 0;
				background: url("images/arrow.svg") no-repeat center center;
			}

			.carousel .forward:hover:before, .carousel .backward:hover:before {
				background-color: rgba(239, 131, 118, 0.75);
			}

		.carousel .forward {
			right: 0;
		}

			.carousel .forward:before {
				right: -3em;
			}

			.carousel .forward:after {
				right: -0.25em;
			}

		.carousel .backward {
			left: 0;
		}

			.carousel .backward:before {
				left: -3em;
			}

			.carousel .backward:after {
				left: -0.25em;
				-moz-transform: scaleX(-1);
				-webkit-transform: scaleX(-1);
				-ms-transform: scaleX(-1);
				transform: scaleX(-1);
			}

		.carousel .reel {
			white-space: nowrap;
			position: relative;
			-webkit-overflow-scrolling: touch;
			padding: 0 2em 0 2em;
		}

		.carousel article {
			display: inline-block;
			width: 18em;
			background: #fff;
			text-align: center;
			padding: 0 1em 3em 1em;
			margin: 0 2em 0 0;
			white-space: normal;
			opacity: 1.0;
			-moz-transition: opacity 0.75s ease-in-out;
			-webkit-transition: opacity 0.75s ease-in-out;
			-ms-transition: opacity 0.75s ease-in-out;
			transition: opacity 0.75s ease-in-out;
		}

			.carousel article.loading {
				opacity: 0;
			}

			.carousel article .image {
				position: relative;
				left: -1em;
				top: 0;
				width: auto;
				margin-right: -2em;
				margin-bottom: 3em;
			}

			.carousel article p {
				text-align: center;
			}

/* Wide */

	@media screen and (max-width: 1680px) {

		/* Basic */

			body, input, textarea, select {
				font-size: 14pt;
				line-height: 1.75em;
			}

		/* Carousel */

			.carousel {
				padding: 1.5em 0 1.5em 0;
			}

				.carousel .reel {
					padding: 0 1.5em 0 1.5em;
				}

				.carousel article {
					width: 18em;
					margin: 0 1.25em 0 0;
				}

	}

/* Normal */

	@media screen and (max-width: 1280px) {

		/* Basic */

			body, input, textarea, select {
				font-size: 12pt;
				line-height: 1.5em;
			}

		/* Wrapper */

			.wrapper {
				padding-left: 2em;
				padding-right: 2em;
			}

		/* Header */

			#header {
				background-attachment: scroll;
			}

				#header .inner {
					padding-left: 2em;
					padding-right: 2em;
				}

		/* Banner */

			#banner {
				padding-left: 2em;
				padding-right: 2em;
			}

		/* Footer */

			#footer {
				padding-left: 2em;
				padding-right: 2em;
			}

	}

/* Narrow */

/* Narrower */

	@media screen and (max-width: 840px) {

		/* Basic */

			body, input, textarea, select {
				font-size: 13pt;
				line-height: 1.65em;
			}

			.tweet {
				text-align: center;
			}

			.timestamp {
				display: block;
				text-align: center;
			}

		/* Footer */

			#footer {
				padding: 4em 2em 4em 2em;
			}

		/* Carousel */

			.carousel {
				padding: 1.25em 0 1.25em 0;
			}

				.carousel article {
					width: 18em;
					margin: 0 1em 0 0;
				}

	}

/* Mobile */

	#navPanel, #titleBar {
		display: none;
	}

	@media screen and (max-width: 736px) {

		/* Basic */

			html, body {
				overflow-x: hidden;
			}

			body, input, textarea, select {
				font-size: 12.5pt;
				line-height: 1.5em;
			}

			h2 {
				font-size: 1.75em;
			}

			h3 {
				font-size: 1.25em;
			}

			hr {
				top: 3em;
				margin-bottom: 6em;
			}

		/* Section/Article */

			section, article {
				margin-bottom: 2em;
			}

				section:last-child, article:last-child {
					margin-bottom: 0;
				}

			.row > section, .row > article {
				margin-bottom: 2em;
			}

			header > p {
				font-size: 1.25em;
			}

		/* Image */

			.image.featured {
				margin: 0 0 2em 0;
			}

			.image.left {
				margin: 0 1em 1em 0;
			}

			.image.centered {
				margin: 0 0 1em 0;
			}

		/* Actions */

			form ul.actions {
				margin-top: 0;
			}

			ul.actions li {
				display: block;
				margin: 0.75em 0 0 0;
			}

				ul.actions li:first-child {
					margin-top: 0;
				}

		/* Menu */

			ul.menu {
				height: auto;
				text-align: center;
			}

				ul.menu li {
					display: block;
					border: 0;
					padding: 0.75em 0 0 0;
					margin: 0;
				}

					ul.menu li:first-child {
						padding-top: 0;
					}

		/* Icons */

			ul.icons {
				font-size: 1em;
				padding: 0.35em 0.5em 0.35em 0.5em;
			}

				ul.icons li a {
					width: 2.25em;
				}

		/* Button */

			input[type="button"],
			input[type="submit"],
			input[type="reset"],
			button,
			.button {
				display: block;
				padding: 0;
				line-height: 3em;
				width: 100%;
			}

		/* Nav */

			#page-wrapper {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				padding-bottom: 1px;
			}

			#navButton {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				display: block;
				height: 44px;
				left: 0;
				position: fixed;
				top: 0;
				width: 100%;
				z-index: 10001;
				background: rgba(231, 214, 189, 0.96);
				border-bottom: 1px solid rgba(184, 149, 99, 0.55);
			}

			#navButton .theme-switch-mobile-bar {
				position: fixed !important;
				left: calc(100vw - 5.6rem) !important;
				right: auto !important;
				top: 0.35rem !important;
				margin: 0 !important;
				z-index: 10002;
				background: transparent !important;
				transform: none !important;
			}

			#navButton .theme-switch-mobile-bar.theme-switch {
				margin-left: 0 !important;
				left: calc(100vw - 5.6rem) !important;
				right: auto !important;
				position: fixed !important;
				display: inline-flex !important;
			}

				#navButton .toggle {
					text-decoration: none;
					position: absolute;
					left: 50%;
					top: 0;
					width: 80px;
					height: 30px;
					margin-left: -40px;
					border: 0;
					outline: 0;
					background: transparent;
				}

					#navButton .toggle:before {
						-moz-osx-font-smoothing: grayscale;
						-webkit-font-smoothing: antialiased;
						display: inline-block;
						font-style: normal;
						font-variant: normal;
						text-rendering: auto;
						line-height: 1;
						text-transform: none !important;
						font-family: 'Font Awesome 5 Free';
						font-weight: 900;
					}

					#navButton .toggle:before {
						text-decoration: none;
						font-style: normal;
						content: '\f0c9';
						color: #fff;
						color: rgba(255, 255, 255, 0.75);
						text-align: center;
						display: block;
						font-size: 14px;
						width: 80px;
						height: 30px;
						line-height: 30px;
						position: absolute;
						left: 0;
						top: 0;
						margin-left: 0;
						background: rgba(125, 93, 57, 0.72);
						border-top: 0;
						border-radius: 0 0 0.35em 0.35em;
						pointer-events: none;
					}

			#navPanel {
				-moz-backface-visibility: hidden;
				-webkit-backface-visibility: hidden;
				-ms-backface-visibility: hidden;
				backface-visibility: hidden;
				-moz-transform: translateY(-50vh);
				-webkit-transform: translateY(-50vh);
				-ms-transform: translateY(-50vh);
				transform: translateY(-50vh);
				-moz-transition: -moz-transform 0.5s ease;
				-webkit-transition: -webkit-transform 0.5s ease;
				-ms-transition: -ms-transform 0.5s ease;
				transition: transform 0.5s ease;
				display: block;
				height: 50vh;
				left: 0;
				overflow-y: auto;
				position: fixed;
				top: 0;
				width: 100%;
				z-index: 10002;
				background: #1b1714;
				box-shadow: inset 0px -2px 5px 0px rgba(0, 0, 0, 0.25);
				font-size: 1em;
			}

				#navPanel:before {
					content: '';
					display: block;
					position: absolute;
					left: 0;
					top: 0;
					width: 100%;
					height: 100%;
					background: url("images/overlay.png");
					background-size: 128px 128px;
				}

				#navPanel .link {
					position: relative;
					z-index: 1;
					display: block;
					text-decoration: none;
					padding: 0.5em;
					color: #ddd;
					border: 0;
					border-top: dotted 1px rgba(255, 255, 255, 0.05);
				}

					#navPanel .link:first-child {
						border-top: 0;
					}

					#navPanel .link.depth-0 {
						color: #fff;
						font-weight: 600;
					}

				#navPanel .indent-1 {
					display: inline-block;
					width: 1em;
				}

				#navPanel .indent-2 {
					display: inline-block;
					width: 2em;
				}

				#navPanel .indent-3 {
					display: inline-block;
					width: 3em;
				}

				#navPanel .indent-4 {
					display: inline-block;
					width: 4em;
				}

				#navPanel .indent-5 {
					display: inline-block;
					width: 5em;
				}

				#navPanel .depth-0 {
					color: #fff;
				}

			body.navPanel-visible #page-wrapper {
				-moz-transform: translateY(50vh);
				-webkit-transform: translateY(50vh);
				-ms-transform: translateY(50vh);
				transform: translateY(50vh);
			}

			body.navPanel-visible #navButton {
				-moz-transform: translateY(50vh);
				-webkit-transform: translateY(50vh);
				-ms-transform: translateY(50vh);
				transform: translateY(50vh);
			}

			body.navPanel-visible #navPanel {
				-moz-transform: translateY(0);
				-webkit-transform: translateY(0);
				-ms-transform: translateY(0);
				transform: translateY(0);
			}

		/* Wrapper */

			.wrapper {
				padding: 3em 1em 3em 1em;
			}

		/* Header */

			#header {
				background-attachment: scroll;
				padding: 2.5em 0 0 0;
			}

				#header .inner {
					padding-top: 1.5em;
					padding-left: 1em;
					padding-right: 1em;
				}

				#header header > p {
					font-size: 1em;
				}

				#header h1 {
					font-size: 1.75em;
				}

				#header hr {
					top: 1em;
					margin-bottom: 2.5em;
				}

			.homepage-hero-section {
				min-height: 0;
				padding: 5.5em 2em 5em;
				height: auto;
			}

				.homepage-hero-section h1 {
					font-size: 2.5em;
				}

		/* Nav */

			#nav {
				display: none;
			}

		/* Banner */

			#banner {
				padding: 3em 2em 3em 2em;
			}

		/* Sidebar */

			#sidebar > hr:first-of-type {
				display: block;
			}

		/* Main */

			#main > header {
				text-align: center;
			}

		/* Footer */

			#footer {
				padding-left: 1em;
				padding-right: 1em;
			}

		/* Carousel */

			.carousel {
				padding: 0.5em 0 0.5em 0;
			}

				.carousel .reel {
					padding: 0 0.5em 0 0.5em;
				}

				.carousel article {
					width: 14em;
					padding-bottom: 2em;
					margin: 0 0.5em 0 0;
				}

					.carousel article .image {
						margin-bottom: 2em;
					}

	}

/* Anonsafe overrides */

:root {
	--an-space-1: 0.5rem;
	--an-space-2: 0.75rem;
	--an-space-3: 1rem;
	--an-space-4: 1.5rem;
	--an-space-5: 2rem;
	--an-space-6: 3rem;
	--an-space-7: 4.5rem;
	--an-measure: 68rem;
}

body, input, textarea, select {
	color: var(--an-text);
}

h1, h2, h3, h4, h5, h6,
strong, b {
	color: var(--an-heading);
	font-family: Georgia, 'Times New Roman', serif;
	letter-spacing: 0.01em;
}

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

p {
	text-align: left;
	max-width: 72ch;
}

article p,
.trust-card p,
.feature-card p,
.trust-box p {
	max-width: none;
}

#header {
	background: linear-gradient(rgba(28, 23, 19, 0.96), rgba(21, 17, 14, 0.98)), #161210;
}

.homepage-hero-section {
	background: linear-gradient(rgba(28, 23, 19, 0.96), rgba(21, 17, 14, 0.98)), #161210;
}

body.theme-monastic-light .homepage-hero-section {
	background: linear-gradient(rgba(243, 236, 223, 0.96), rgba(236, 227, 210, 0.98)), #ede2cf;
}

body.theme-monastic-light .homepage-hero-section hr {
	border-bottom-color: rgba(100, 80, 55, 0.3);
	box-shadow: inset 0 1px 0 0 rgba(100, 80, 55, 0.3);
}

body.theme-monastic-light .homepage-hero-section hr:before,
body.theme-monastic-light .homepage-hero-section hr:after {
	background: rgba(100, 80, 55, 0.3);
}

body.theme-monastic-light .homepage-banner-inner,
body.theme-monastic-light .homepage-banner-inner h2,
body.theme-monastic-light .homepage-banner-inner p {
	color: #34291f !important;
}

body.theme-monastic-light .homepage-hero-section h1,
body.theme-monastic-light .homepage-hero-section h1 a,
body.theme-monastic-light .homepage-hero-section .hero-welcome,
body.theme-monastic-light .homepage-hero-section .hero-line,
body.theme-monastic-light .homepage-hero-section .hero-subline {
	color: #34291f !important;
	text-shadow: none !important;
}

.container {
	width: min(1180px, calc(100% - 3rem));
}

.wrapper {
	padding: var(--an-space-7) 0;
}

.wrapper.style1,
.wrapper.style2,
#banner {
	padding-top: var(--an-space-7);
	padding-bottom: var(--an-space-7);
}

#nav > ul > li > a,
#nav > ul > li > span {
	color: var(--an-text);
}

.wrapper.style1,
.wrapper.style2,
#footer,
#banner {
	background: var(--an-bg-soft);
	color: var(--an-text);
}

.wrapper.style2 {
	background: #15191c;
}

#banner {
	border-top: 1px solid var(--an-line);
	border-bottom: 1px solid var(--an-line);
}

hr {
	border-top-color: var(--an-line);
	border-bottom-color: var(--an-line);
}

hr:before, hr:after {
	background: var(--an-line);
}

.button {
	background: var(--an-card-surface-strong) !important;
	color: var(--an-accent) !important;
	box-shadow: none !important;
	border: 1px solid var(--an-accent) !important;
}

.button:hover {
	background: rgba(183, 142, 88, 0.12) !important;
	color: var(--an-heading) !important;
}

.image.featured,
.image.fit,
.carousel,
#footer .icons,
#footer .tweet,
#footer .post.stub {
	display: none !important;
}

.anonsafe-hero {
	max-width: var(--an-measure);
	margin: 0 auto;
	padding-left: var(--an-space-4);
	padding-right: var(--an-space-4);
	text-align: center;
}

.anonsafe-hero header {
	max-width: 48rem;
	margin: 0 auto;
	text-align: center;
}

.anonsafe-hero h1 {
	margin: 0 auto;
	line-height: 1;
}

.anonsafe-hero h1 a {
	display: inline-block;
	margin: 0 auto;
	text-align: center;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.72em;
	color: var(--an-accent-soft);
	margin-bottom: 1rem;
}

.anonsafe-hero,
.anonsafe-hero header,
.anonsafe-hero .eyebrow,
.anonsafe-hero #logo,
.anonsafe-hero #logo:visited,
.anonsafe-hero #logo:hover,
.anonsafe-hero #logo:active,
.anonsafe-hero h1,
.anonsafe-hero h1 a,
.anonsafe-hero p {
	color: var(--an-heading) !important;
}

.hero-line {
	font-size: 1.15em;
	color: var(--an-heading);
	margin: var(--an-space-4) auto var(--an-space-2);
}

.hero-subline,
#banner p,
.minimal-footer p,
.trust-card p,
.feature-card p,
.compact-listing p,
.trust-box p,
.methodology-page p {
	color: var(--an-text-soft);
}

.trust-card,
.feature-card,
.trust-box {
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--an-line);
	padding: var(--an-space-4);
}

.trust-card,
.feature-card {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	text-align: center;
	align-items: center;
}

.trust-box {
	text-align: left;
	display: block;
	min-height: 0;
}

.trust-card h3,
.feature-card h3,
.trust-box h3 {
	margin-bottom: var(--an-space-2);
	line-height: 1.3;
}

.trust-card h3,
.feature-card h3 {
	text-align: center;
}

.trust-box h3 {
	text-align: left;
}

.trust-card p,
.feature-card p,
.trust-box p {
	margin-bottom: 0;
	line-height: 1.65;
	font-size: 0.98rem;
}

.trust-card p,
.feature-card p {
	text-align: center;
}

.trust-box p {
	text-align: left;
}

.card-icon {
	display: block;
	width: 1.9rem;
	height: 1.9rem;
	margin: 0 auto var(--an-space-2);
	opacity: 0.72;
	filter: var(--an-card-icon-filter);
}

#banner > header,
.wrapper > section > header,
.wrapper > .container > header,
.homepage-main-intro > header,
.methodology-page > header,
#main > header {
	max-width: var(--an-measure);
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--an-space-5);
}

#banner > header p,
.wrapper > section > header p,
.wrapper > .container > header p,
.homepage-main-intro > header p,
.methodology-page > header p,
#main > header p {
	margin-left: auto;
	margin-right: auto;
}

.trust-strip > header,
#features > header,
.wrapper.style1 > .container.special > header {
	padding-bottom: 0;
}

.trust-strip > .row,
#features > .row,
.wrapper.style1 > .container.special > .row {
	margin-top: 0;
}

#banner > header h2,
.wrapper > section > header h2,
.wrapper > .container > header h2,
.homepage-main-intro > header h2,
.methodology-page > header h2,
#main > header h2 {
	margin-bottom: var(--an-space-4);
}

#banner > header p,
.wrapper > section > header p,
.wrapper > .container > header p,
.homepage-main-intro > header p,
.methodology-page > header p,
#main > header p {
	margin-bottom: 0;
}

.trust-strip,
#features,
.wrapper.style1 > .container.special {
	padding-top: 0;
}

.homepage-main-intro {
	max-width: var(--an-measure);
}

.homepage-main-intro > p {
	margin: 0 auto var(--an-space-5);
	text-align: center;
}

.homepage-main-intro footer {
	margin-top: var(--an-space-4);
	text-align: center;
}

#content article > p,
#content article section,
.methodology-page > p,
.methodology-page section {
	margin-bottom: var(--an-space-5);
}

.blog-bubble,
.sidebar-bubble,
.trust-card,
.feature-card,
.trust-box {
	background: var(--an-card-surface) !important;
	border: 1px solid var(--an-line) !important;
	padding: var(--an-space-4);
	border-radius: 0.45rem;
	box-shadow: 0 0.45rem 1.1rem rgba(0, 0, 0, 0.04);
}

.blog-bubble {
	margin-bottom: var(--an-space-4);
}

.sidebar-bubble ul.alt {
	margin-bottom: 0;
}

.sidebar-bubble ul.alt li {
	padding: 0.7rem 0;
	border-top: 1px solid var(--an-line);
}

.sidebar-bubble ul.alt li:first-child {
	border-top: 0;
	padding-top: 0;
}

.sidebar-bubble ul.alt li:last-child {
	padding-bottom: 0;
}

.post-summary h3 {
	margin-bottom: 0.45rem;
	line-height: 1.25;
}

.post-summary .meta {
	font-size: 0.92rem;
	color: var(--an-text-faint);
	margin-bottom: 0.8rem;
}

.post-summary p:last-of-type {
	margin-bottom: 1rem;
}

.journal-cta {
	display: inline-block;
	min-width: 8.5rem;
	padding: 0.72rem 1rem 0.8rem;
	line-height: 1;
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	vertical-align: middle;
	box-sizing: border-box;
	background: var(--an-card-surface-strong);
	color: var(--an-accent) !important;
	border: 1px solid var(--an-accent);
	border-bottom: 1px solid var(--an-accent) !important;
}

.journal-cta:hover {
	background: rgba(183, 142, 88, 0.12);
	color: var(--an-heading) !important;
	border-bottom: 1px solid var(--an-accent) !important;
}

#content article section:last-child,
.methodology-page section:last-child {
	margin-bottom: 0;
}

#sidebar section {
	padding-top: var(--an-space-2);
	padding-bottom: var(--an-space-2);
}

#sidebar hr {
	margin: var(--an-space-4) 0;
	top: 0;
	height: 0;
}

.minimal-footer {
	padding: var(--an-space-5) 0 var(--an-space-3);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--an-space-3);
}

.minimal-footer header,
.minimal-footer p {
	max-width: 42rem;
	margin: 0 auto;
	text-align: center;
}

.minimal-footer header {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	margin: 0 auto;
}

.minimal-footer h3 {
	display: block;
	width: auto;
	margin: 0 auto;
	text-align: center;
	color: var(--an-heading);
}

.minimal-footer p {
	display: block;
	width: 100%;
}

#footer .contact {
	margin: 0 auto;
	text-align: center;
}

#footer .contact > * {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.copyright {
	padding-top: var(--an-space-3);
	text-align: center;
}

.copyright .menu {
	justify-content: center;
}

.compact-inner {
	padding-top: 4rem;
	padding-bottom: 1rem;
}

.homepage-main-intro,
.methodology-page,
#content article,
#sidebar section {
	background: transparent;
}

.copyright,
.timestamp,
#footer {
	color: var(--an-text-soft);
}

.announcement-banner {
	background: rgba(125, 93, 57, 0.08);
	border-bottom: 1px solid var(--an-line);
	position: relative;
	z-index: 2;
}

.announcement-banner .container {
	padding-top: 0.7rem;
	padding-bottom: 0.7rem;
}

.announcement-banner-text {
	margin: 0;
	text-align: center;
	max-width: none;
	width: 100%;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--an-text-soft);
	opacity: 1;
	transition: opacity 2.8s ease;
}

.announcement-banner-text.is-fading {
	opacity: 0.22;
}

.focus-group-hero {
	max-width: 54rem;
}

.foldy-hero {
	display: block;
	width: clamp(400px, 35vw, 560px);
	height: auto;
	margin: 0 auto 1.5rem;
}

.foldy-card {
	display: block;
	width: 180px;
	height: auto;
	margin: 0 0 0.85rem;
	opacity: 0.92;
}

@keyframes an-mascot-breathe {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(-0.35rem); }
}

.hero-welcome {
	font-size: 1.2rem;
	line-height: 1.4;
	margin: 0 0 0.9rem;
	color: var(--an-text-soft);
}

.foldy-intro {
	margin: 2rem 0 2.5rem;
	max-width: 44rem;
	padding: 1.75rem 2rem;
	border-radius: 0.6rem;
	background: rgba(125, 93, 57, 0.07);
	border: 1px solid rgba(125, 93, 57, 0.15);
	text-align: left;
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.foldy-intro .foldy-card {
	margin: 0;
	flex-shrink: 0;
	width: clamp(208px, 18vw, 260px);
}

.foldy-intro-text {
	flex: 1;
	min-width: 0;
}

.foldy-intro p {
	margin: 0 0 0.3rem;
	line-height: 1.5;
	color: var(--an-text-soft);
	font-size: 0.95rem;
}

.foldy-intro p:first-of-type {
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--an-heading);
	margin-bottom: 0.5rem;
}

.foldy-intro p:last-child {
	margin-bottom: 0;
	font-style: italic;
}

@media (max-width: 740px) {
	.foldy-intro {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 1rem;
		padding: 1.4rem 1.25rem;
		max-width: 26rem;
	}
	.foldy-intro .foldy-card {
		width: clamp(120px, 38vw, 180px);
	}
	.foldy-intro p {
		text-align: center;
	}
}

.concept-grid > header {
	max-width: 44rem;
}

.concept-card {
	text-align: left;
}

.concept-card p strong {
	color: var(--an-heading);
}

.design-lab-toggle,
.design-lab-inner,
.design-lab-label,
.theme-switcher {
	display: none;
}

.theme-switch {
	appearance: none;
	background: transparent;
	border: 0;
	padding: 0;
	margin-left: auto;
	cursor: pointer;
}

.theme-switch-track {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	padding: 0.22rem;
	border: 1px solid var(--an-line);
	border-radius: 999px;
	background: var(--an-panel);
	min-width: 5.4rem;
	height: 2.75rem;
}

.theme-switch-option {
	position: relative;
	z-index: 2;
	width: 2.2rem;
	height: 2.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--an-text-soft);
}

.theme-switch-thumb {
	position: absolute;
	top: 0.22rem;
	left: 0.22rem;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 999px;
	background: rgba(125, 93, 57, 0.10);
	box-shadow: none;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

body.theme-monastic-dark .theme-switch-thumb {
	transform: translateX(2.4rem);
}

.theme-icon {
	width: 1.1rem;
	height: 1.1rem;
	display: block;
	opacity: 1;
}

body.theme-monastic-light .theme-switch-track {
	background: #e6dac6;
	border-color: rgba(79, 61, 39, 0.16);
}

body.theme-monastic-light .theme-switch-thumb {
	background: rgba(79, 61, 39, 0.10);
}

body.theme-monastic-light .theme-switch-light,
body.theme-monastic-light .theme-switch-dark {
	color: #7b5d39;
}

body.theme-monastic-dark .theme-switch-track {
	background: #1b1512;
	border-color: rgba(226, 203, 166, 0.22);
}

body.theme-monastic-dark .theme-switch-thumb {
	background: #4b3a2d;
}

body.theme-monastic-dark .theme-switch-light,
body.theme-monastic-dark .theme-switch-dark {
	color: #fff8ef;
}

body.theme-monastic-dark .theme-icon {
	filter: brightness(0) invert(1);
}



body.theme-monastic-light {
	--an-bg: #f4ecde;
	--an-bg-soft: #eee4d3;
	--an-panel: #fbf6ec;
	--an-card-surface: #e7d6bd;
	--an-card-surface-strong: #f1e4d1;
	--an-line: rgba(184, 149, 99, 0.98);
	--an-text: #34291f;
	--an-text-soft: #5c4a3a;
	--an-heading: #6b4623;
	--an-accent: #8c6a3f;
	--an-accent-soft: #b78e58;
	--an-card-icon-filter: invert(13%) sepia(17%) saturate(685%) hue-rotate(346deg) brightness(93%) contrast(90%);
}

body.theme-monastic-dark {
	--an-bg: #14110f;
	--an-bg-soft: #1b1714;
	--an-panel: #221d19;
	--an-card-surface: #211c18;
	--an-card-surface-strong: #29231e;
	--an-line: rgba(226, 203, 166, 0.22);
	--an-text: #e6d7c2;
	--an-text-soft: #c6b196;
	--an-heading: #fbedd9;
	--an-accent: #bc925d;
	--an-accent-soft: #ddb57d;
	--an-card-icon-filter: invert(90%) sepia(18%) saturate(311%) hue-rotate(350deg) brightness(97%) contrast(91%);
}

body.theme-monastic-light #header {
	background: linear-gradient(rgba(243, 236, 223, 0.96), rgba(236, 227, 210, 0.98)), #ede2cf;
}

body.theme-monastic-dark #header {
	background: linear-gradient(rgba(28, 23, 19, 0.96), rgba(21, 17, 14, 0.98)), #161210;
}

body.theme-monastic-dark #navButton {
	background: rgba(24, 20, 17, 0.97);
	border-bottom: 1px solid rgba(110, 88, 66, 0.55);
}

.theme-switch-nav-item {
	display: inline-flex;
	align-items: center;
	margin-left: 0.5rem;
}

.nav-panel-theme-switch-wrap {
	display: none;
	gap: 0.6rem;
	align-items: center;
}

.theme-switch-mobile {
	margin-left: 0;
}

.theme-switch-mobile-bar {
	margin-left: 0 !important;
}

.theme-switch-mobile-bar .theme-switch-track {
	min-width: 4.1rem;
	height: 2.2rem;
}

.theme-switch-mobile-bar .theme-switch-option,
.theme-switch-mobile-bar .theme-switch-thumb {
	width: 1.65rem;
	height: 1.65rem;
}

body.theme-monastic-dark .theme-switch-mobile-bar .theme-switch-thumb {
	transform: translateX(1.72rem);
}

.theme-switch-mobile-bar .theme-icon {
	width: 0.86rem;
	height: 0.86rem;
}

.theme-switch-mobile-button {
	appearance: none;
	border: 1px solid var(--an-line);
	background: var(--an-panel);
	color: var(--an-text);
	padding: 0.7rem 1rem;
	border-radius: 999px;
	font-size: 0.82rem;
	line-height: 1;
	cursor: pointer;
}

.theme-switch-mobile-button.active {
	background: var(--an-accent);
	color: #fff8ef;
	border-color: var(--an-accent);
}

body.theme-monastic-light h1, body.theme-monastic-light h2, body.theme-monastic-light h3, body.theme-monastic-light h4, body.theme-monastic-light h5, body.theme-monastic-light h6,
body.theme-monastic-light strong, body.theme-monastic-light b,
body.theme-monastic-dark h1, body.theme-monastic-dark h2, body.theme-monastic-dark h3, body.theme-monastic-dark h4, body.theme-monastic-dark h5, body.theme-monastic-dark h6,
body.theme-monastic-dark strong, body.theme-monastic-dark b {
	font-family: Georgia, 'Times New Roman', serif;
	letter-spacing: 0;
}

body.theme-monastic-light .trust-card,
body.theme-monastic-light .feature-card,
body.theme-monastic-light .trust-box {
	background: rgba(255, 251, 243, 0.92);
}

body.theme-monastic-dark .trust-card,
body.theme-monastic-dark .feature-card,
body.theme-monastic-dark .trust-box {
	background: rgba(255, 248, 238, 0.045);
}

#sidebar .trust-box {
	width: 100%;
	margin-bottom: 0;
}

body.theme-monastic-light .trust-card h3,
body.theme-monastic-light .feature-card h3,
body.theme-monastic-light .trust-box h3,
body.theme-monastic-dark .trust-card h3,
body.theme-monastic-dark .feature-card h3,
body.theme-monastic-dark .trust-box h3 {
	font-size: 1.05rem;
}

body.theme-monastic-light .theme-button:hover,
body.theme-monastic-light .theme-button.active,
body.theme-monastic-light .button,
body.theme-monastic-dark .theme-button:hover,
body.theme-monastic-dark .theme-button.active,
body.theme-monastic-dark .button {
	color: #fff8ef !important;
}

body.theme-monastic-light,
body.theme-monastic-light #header,
body.theme-monastic-light .anonsafe-hero,
body.theme-monastic-light .anonsafe-hero header,
body.theme-monastic-light .anonsafe-hero p,
body.theme-monastic-light .minimal-footer h3,
body.theme-monastic-light .hero-line {
	color: #34291f !important;
}

body.theme-monastic-light #header h1,
body.theme-monastic-light #header h1 a,
body.theme-monastic-light #header h1 a:visited,
body.theme-monastic-light #header h1 a:hover,
body.theme-monastic-light #header h1 a:active,
body.theme-monastic-light .anonsafe-hero h1,
body.theme-monastic-light .anonsafe-hero h1 a,
body.theme-monastic-light .anonsafe-hero #logo,
body.theme-monastic-light .anonsafe-hero #logo:visited,
body.theme-monastic-light .anonsafe-hero #logo:hover,
body.theme-monastic-light .anonsafe-hero #logo:active {
	color: #34291f !important;
}

body.theme-monastic-light .eyebrow {
	color: #7b5d39 !important;
}

body.theme-monastic-light #banner,
body.theme-monastic-light .wrapper.style1,
body.theme-monastic-light .wrapper.style2,
body.theme-monastic-light #footer {
	background: var(--an-bg-soft);
}

body.theme-monastic-light .wrapper.style2 {
	background: #e6dac6;
}

body.theme-monastic-dark #banner,
body.theme-monastic-dark .wrapper.style1,
body.theme-monastic-dark .wrapper.style2,
body.theme-monastic-dark #footer {
	background: var(--an-bg-soft);
}

body.theme-monastic-dark .wrapper.style2 {
	background: #171310;
}

body.theme-monastic-light .hero-subline,
body.theme-monastic-light #banner p,
body.theme-monastic-light .minimal-footer p,
body.theme-monastic-light .trust-card p,
body.theme-monastic-light .feature-card p,
body.theme-monastic-light .compact-listing p,
body.theme-monastic-light .trust-box p,
body.theme-monastic-light .methodology-page p {
	color: var(--an-text-soft);
}

body.theme-monastic-dark .hero-subline,
body.theme-monastic-dark #banner p,
body.theme-monastic-dark .minimal-footer p,
body.theme-monastic-dark .trust-card p,
body.theme-monastic-dark .feature-card p,
body.theme-monastic-dark .compact-listing p,
body.theme-monastic-dark .trust-box p,
body.theme-monastic-dark .methodology-page p {
	color: var(--an-text-soft);
}

body.theme-monastic-light .hero-line,
body.theme-monastic-light h2,
body.theme-monastic-light h3,
body.theme-monastic-light h4,
body.theme-monastic-light #main > header p,
body.theme-monastic-light .eyebrow {
	text-shadow: none;
}

body.theme-monastic-dark .hero-line {
	color: var(--an-heading);
}

/* Homepage: collapse #header so nav floats over the full-height hero */
body.homepage #header {
	height: 0;
	min-height: 0;
	padding: 0;
	overflow: visible;
}

/* Homepage dark theme: nav matches the dark hero */
body.theme-monastic-dark.homepage #header {
	background: linear-gradient(rgba(28, 23, 19, 0.96), rgba(21, 17, 14, 0.98)), #161210 !important;
	box-shadow: none !important;
}

/* Dark theme: nav links use the theme heading colour */
body.theme-monastic-dark.homepage #nav > ul > li > a,
body.theme-monastic-dark.homepage #nav > ul > li > span {
	color: var(--an-text) !important;
	text-shadow: none;
}

body.theme-monastic-dark.homepage #nav > ul > li.current > a,
body.theme-monastic-dark.homepage #nav > ul > li > a:hover {
	color: var(--an-heading) !important;
}

/* Light theme homepage: keep dark link text to match cream nav */
body.theme-monastic-light.homepage #nav > ul > li > a,
body.theme-monastic-light.homepage #nav > ul > li > span {
	color: #34291f !important;
	text-shadow: none !important;
}

@media screen and (max-width: 900px) {
	html, body {
		overflow-x: hidden;
	}

	#nav {
		display: none !important;
	}

	#page-wrapper {
		backface-visibility: hidden;
		transition: transform 0.5s ease;
		padding-bottom: 1px;
	}

	#navButton {
		display: block;
		height: 44px;
		left: 0;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 10001;
		background: rgba(231, 214, 189, 0.96);
		border-bottom: 1px solid rgba(184, 149, 99, 0.55);
		backface-visibility: hidden;
		transition: transform 0.5s ease;
	}

	#navButton .theme-switch-mobile-bar {
		position: fixed !important;
		left: calc(100vw - 5.6rem) !important;
		right: auto !important;
		top: 0.35rem !important;
		margin: 0 !important;
		z-index: 10002;
		background: transparent !important;
		transform: none !important;
	}

	#navButton .theme-switch-mobile-bar.theme-switch {
		margin-left: 0 !important;
		left: calc(100vw - 5.6rem) !important;
		right: auto !important;
		position: fixed !important;
		display: inline-flex !important;
	}

	#navButton .toggle {
		text-decoration: none;
		position: absolute;
		left: 50%;
		top: 0;
		width: 80px;
		height: 30px;
		margin-left: -40px;
		border: 0;
		outline: 0;
		background: transparent;
	}

	#navButton .toggle:before {
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
		content: '\f0c9';
		color: rgba(255, 255, 255, 0.75);
		text-align: center;
		display: block;
		font-size: 14px;
		width: 80px;
		height: 30px;
		line-height: 30px;
		position: absolute;
		left: 0;
		top: 0;
		background: rgba(125, 93, 57, 0.72);
		border-radius: 0 0 0.35em 0.35em;
		pointer-events: none;
	}

	#navPanel {
		display: block;
		backface-visibility: hidden;
		transform: translateY(-50vh);
		transition: transform 0.5s ease;
		height: 50vh;
		left: 0;
		overflow-y: auto;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 10002;
		background: #1b1714;
		box-shadow: inset 0px -2px 5px 0px rgba(0, 0, 0, 0.25);
		font-size: 1em;
	}

	#navPanel .link {
		position: relative;
		z-index: 1;
		display: block;
		text-decoration: none;
		padding: 0.5em 1em;
		color: #ddd;
		border: 0;
		border-top: dotted 1px rgba(255, 255, 255, 0.05);
	}

	#navPanel .link:first-child {
		border-top: 0;
	}

	#navPanel .link.depth-0 {
		color: #fff;
		font-weight: 600;
	}

	body.navPanel-visible #page-wrapper { transform: translateY(50vh); }
	body.navPanel-visible #navButton { transform: translateY(50vh); }
	body.navPanel-visible #navPanel { transform: translateY(0); }

	.announcement-banner {
		margin-top: 44px;
		padding-right: 0;
	}

	#nav .theme-switch-nav-item {
		display: none;
	}
}

@media screen and (max-width: 840px) {
	/* Force single-column grid at this range (col-12-mobile behavior) */
	.row > .col-1, .row > .col-2, .row > .col-3,
	.row > .col-4, .row > .col-5, .row > .col-6,
	.row > .col-7, .row > .col-8, .row > .col-9,
	.row > .col-10, .row > .col-11 {
		width: 100%;
	}

	/* Kill the row's negative-margin gutter bleed */
	.wrapper, .container, #banner, #footer {
		overflow-x: hidden;
	}

	.row {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.row > * {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}

	/* Hero: let content determine height instead of forcing 100vh */
	.homepage-hero-section {
		height: auto;
		min-height: 0;
		padding-top: 4rem;
		padding-bottom: 3rem;
	}

	/* Shrink the hero gif so it doesn't overflow */
	.foldy-hero {
		width: clamp(200px, 55vw, 320px);
	}

	/* Sidebar columns stack */
	#sidebar, #content {
		width: 100%;
	}
}

@media screen and (max-width: 1280px) {
	.wrapper, .container, #banner, #footer {
		overflow-x: hidden;
	}

	.row {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.row > * {
		padding-left: 1rem !important;
		padding-right: 1rem !important;
	}
}

@media screen and (max-width: 980px) {
	.container {
		width: min(100%, calc(100% - 2rem));
	}

	.wrapper,
	.wrapper.style1,
	.wrapper.style2,
	#banner {
		padding-top: var(--an-space-6);
		padding-bottom: var(--an-space-6);
	}

	.trust-card,
	.feature-card,
	.trust-box {
		padding: var(--an-space-4);
	}
}

@media screen and (max-width: 736px) {
	#nav .theme-switch-nav-item {
		display: none;
	}

	.nav-panel-theme-switch-wrap {
		display: flex;
		justify-content: center;
		padding: 1rem 1.25rem 0.75rem;
		margin-top: 0.75rem;
		border-top: 1px solid rgba(125, 93, 57, 0.2);
	}

	.announcement-banner {
		padding-right: 0;
		margin-top: 44px;
	}

	.announcement-banner .container {
		width: min(100%, calc(100% - 1.25rem));
	}

	.announcement-banner-text {
		font-size: 0.76rem;
		line-height: 1.35;
		padding-left: 0.2rem;
		padding-right: 0.2rem;
		text-align: center;
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
	}

	:root {
		--an-space-3: 1rem;
		--an-space-4: 1.25rem;
		--an-space-5: 1.75rem;
		--an-space-6: 2.5rem;
		--an-space-7: 3.25rem;
	}

	body {
		font-size: 12.5pt;
	}

	.container {
		width: min(100%, calc(100% - 1.5rem));
	}

	.wrapper .container,
	#footer .container,
	#banner > header,
	.homepage-main-intro,
	.wrapper > section.container.special,
	.wrapper > .container.special {
		max-width: 28rem;
		margin-left: auto;
		margin-right: auto;
	}

	#banner > header,
	.homepage-main-intro,
	.wrapper > section.container.special > header,
	.wrapper > .container.special > header,
	#content article,
	#sidebar section,
	.minimal-footer {
		padding-left: 0.7rem;
		padding-right: 0.7rem;
	}

	#header .inner,
	.anonsafe-hero {
		padding-left: 0.15rem;
		padding-right: 0.15rem;
	}

	#banner,
	.wrapper,
	.wrapper.style1,
	.wrapper.style2,
	#footer {
		padding-left: 0;
		padding-right: 0;
		padding-top: var(--an-space-6);
		padding-bottom: var(--an-space-6);
	}

	#banner h2,
	.wrapper header h2,
	#main > header h2 {
		font-size: 2.05rem;
		line-height: 1.16;
		margin-bottom: 1.15rem;
	}

	.anonsafe-hero h1,
	.anonsafe-hero h1 a {
		font-size: 3rem;
		line-height: 0.95;
	}

	.hero-line {
		font-size: 1.05rem;
	}

	.hero-subline,
	#banner p,
	.wrapper header p,
	#main > header p,
	#content article > p,
	.methodology-page > p,
	.trust-card p,
	.feature-card p,
	.trust-box p {
		font-size: 1rem;
		line-height: 1.8;
		margin-bottom: 1.35rem;
	}

	.trust-card,
	.feature-card,
	.trust-box {
		padding: 1.45rem 1.2rem;
		border-radius: 0.45rem;
	}

	.trust-card h3,
	.feature-card h3,
	.trust-box h3 {
		margin-bottom: 0.9rem;
		line-height: 1.3;
	}

	.trust-card,
	.feature-card {
		align-items: center;
	}

	.trust-box,
	.trust-box h3,
	.trust-box p {
		text-align: left;
	}

	.wrapper .row,
	.trust-strip .row,
	#features .row {
		margin-top: calc(var(--an-space-4) * -1 + 0.45rem);
		justify-content: center;
	}

	.wrapper .row > *,
	.trust-strip .row > *,
	#features .row > * {
		padding-top: var(--an-space-4);
		max-width: 26rem;
		margin-left: auto;
		margin-right: auto;
	}

	.journal-page-header {
		text-align: left;
		margin-bottom: 1.5rem;
	}

	#sidebar section,
	.journal-lower-panels section {
		margin-bottom: 1rem;
	}


	.journal-lower-panels,
	.journal-start-points,
	#content,
	#content .blog-bubble,
	.journal-lower-panels .sidebar-bubble,
	.journal-start-points .sidebar-bubble {
		max-width: 26rem;
		margin-left: auto;
		margin-right: auto;
	}

	.journal-start-points {
		margin-top: 1.25rem;
		padding-left: 0.7rem;
		padding-right: 0.7rem;
	}

	.trust-strip .row > .col-3,
	.trust-strip .row > .col-4,
	.trust-strip .row > .col-6-mobile,
	.trust-strip .row > .col-12-mobile,
	.wrapper .row > .col-3,
	.wrapper .row > .col-4,
	.wrapper .row > .col-6-mobile,
	.wrapper .row > .col-12-mobile {
		width: 100%;
	}

	.trust-card {
		max-width: 24rem;
		margin-left: auto;
		margin-right: auto;
	}

	.button {
		display: inline-block;
		width: auto;
		max-width: min(100%, 15rem);
		margin-left: auto;
		margin-right: auto;
		padding: 0.72rem 0.9rem;
		line-height: 1.2;
		border-radius: 0.5rem;
		text-align: center;
		white-space: normal;
	}

	footer .button,
	.homepage-main-intro .button {
		display: block;
	}

	.homepage-main-intro footer,
	.minimal-footer,
	.copyright {
		width: 100%;
	}

	.homepage-main-intro > p,
	.methodology-page > p,
	#content article section,
	#sidebar section {
		margin-bottom: var(--an-space-5);
	}

	#navPanel .theme-switch {
		display: inline-flex !important;
		width: auto !important;
		padding: 0 !important;
		background: transparent !important;
		border: 0 !important;
		line-height: 1 !important;
	}

	#navPanel .theme-switch-track {
		min-width: 4.8rem;
		height: 2.5rem;
	}

	#navPanel .theme-switch-option,
	#navPanel .theme-switch-thumb {
		width: 1.9rem;
		height: 1.9rem;
	}

	body.theme-monastic-dark #navPanel .theme-switch-thumb {
		transform: translateX(2.05rem);
	}

	#navPanel .theme-icon {
		width: 0.95rem;
		height: 0.95rem;
	}

	.theme-icon {
		width: 1rem;
		height: 1rem;
	}

	#sidebar section {
		padding-top: 0;
		padding-bottom: 0;
	}
}

/* ─── Swup PJAX ─────────────────────────────────────────── */

#swup {
	display: block;
}

.transition-fade {
	transition: opacity 0.18s;
}

html.is-animating .transition-fade {
	opacity: 0;
}

/* ─── Related article thumbnails (wiki pages) ─────────── */

.related-thumb {
	display: block;
	width: 110px;
	height: auto;
	aspect-ratio: 440 / 352;
	border-radius: 0.25rem;
	margin-bottom: 0.3rem;
	opacity: 0.88;
	transition: opacity 0.15s;
}

.methodology-page section ul li:hover .related-thumb {
	opacity: 1;
}

.methodology-page section ul li {
	margin-bottom: 1rem;
}

/* ─── Audio player ────────────────────────────────────── */

.an-player {
	position: fixed;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	background: var(--an-bg, #f5f0e8);
	border: 1px solid var(--an-line, rgba(125,93,57,0.2));
	border-radius: 2.5rem;
	box-shadow: 0 4px 24px rgba(0,0,0,0.12);
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.55rem 0.75rem 0.55rem 1.1rem;
	max-width: calc(100vw - 2rem);
	min-width: 0;
	transition: opacity 0.2s, transform 0.2s;
	font-family: inherit;
}

.an-player[hidden] {
	display: none;
}

.an-player-info {
	display: flex;
	flex-direction: column;
	min-width: 0;
	flex: 1;
	overflow: hidden;
}

.an-player-title {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--an-heading, #3a2e1e);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3;
}

.an-player-artist {
	font-size: 0.72rem;
	color: var(--an-text-soft, #7a6a52);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3;
}

.an-player-controls {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	flex-shrink: 0;
}

.an-btn {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--an-heading, #3a2e1e);
	border-radius: 50%;
	width: 2rem;
	height: 2rem;
	padding: 0;
	transition: background 0.12s, color 0.12s;
	font-family: inherit;
}

.an-btn:hover {
	background: rgba(125,93,57,0.1);
}

.an-btn svg {
	width: 1rem;
	height: 1rem;
	fill: currentColor;
	flex-shrink: 0;
}

.an-btn-collapse {
	color: var(--an-text-soft, #7a6a52);
}

.an-btn-collapse:hover {
	color: var(--an-heading, #3a2e1e);
	background: rgba(125,93,57,0.1);
}

.an-btn[data-tip] {
	position: relative;
}

.an-btn[data-tip]::after {
	content: attr(data-tip);
	position: absolute;
	bottom: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%);
	background: var(--an-heading, #3a2e1e);
	color: var(--an-bg, #f5f0e8);
	font-size: 0.65rem;
	font-weight: 500;
	white-space: nowrap;
	padding: 2px 7px;
	border-radius: 4px;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.15s;
	z-index: 10;
}

.an-btn[data-tip]:hover::after {
	opacity: 1;
}

.an-player.an-player-mini {
	padding: 0.45rem;
	gap: 0;
}

.an-player.an-player-mini .an-player-info,
.an-player.an-player-mini .an-btn-play,
.an-player.an-player-mini .an-btn-next {
	display: none;
}

.an-player-error {
	font-size: 0.75rem;
	color: var(--an-text-soft, #7a6a52);
}

body.theme-monastic-dark .an-player {
	background: var(--an-bg);
	border-color: var(--an-line);
}

/* ─── Notepad ─────────────────────────────────────────── */

.an-notepad {
	position: fixed;
	bottom: 5.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9998;
	width: 320px;
	max-width: calc(100vw - 2rem);
	background: var(--an-bg);
	border: 1px solid var(--an-line);
	border-radius: 0.75rem;
	box-shadow: 0 4px 24px rgba(0,0,0,0.12);
	display: flex;
	flex-direction: column;
}
.an-notepad[hidden] { display: none; }
.an-notepad-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.6rem 0.75rem 0.6rem 1rem;
	border-bottom: 1px solid var(--an-line);
}
.an-notepad-title {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--an-text-soft);
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.an-notepad-close {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.1rem;
	line-height: 1;
	color: var(--an-text-soft);
	padding: 0 0.1rem;
	transition: color 0.12s;
}
.an-notepad-close:hover { color: var(--an-heading); }
.an-notepad-textarea {
	width: 100%;
	height: 180px;
	padding: 1rem;
	background: transparent;
	border: none;
	border-radius: 0.75rem 0.75rem 0 0;
	resize: none;
	font-family: inherit;
	font-size: 0.88rem;
	line-height: 1.6;
	color: var(--an-heading);
	outline: none;
	box-sizing: border-box;
}
.an-notepad-textarea::placeholder { color: var(--an-text-soft); opacity: 0.7; }
.an-notepad-footer {
	display: flex;
	justify-content: flex-end;
	padding: 0.5rem 0.75rem;
	border-top: 1px solid var(--an-line);
}
.an-notepad-save {
	background: none;
	border: 1px solid var(--an-line);
	border-radius: 999px;
	padding: 0.35rem 0.85rem;
	font-family: inherit;
	font-size: 0.75rem;
	color: var(--an-text-soft);
	cursor: pointer;
	transition: border-color 0.12s, color 0.12s;
}
.an-notepad-save:hover {
	border-color: var(--an-accent-soft);
	color: var(--an-heading);
}
.an-btn-notepad {
	color: var(--an-text-soft);
}
.an-btn-notepad:hover {
	color: var(--an-heading);
	background: rgba(125,93,57,0.1);
}

/* Notes page — same panel as the mini popup, but inline and bigger.
   Inherits .an-notepad's panel look (bg, border, rounded, flex column) and
   only overrides what differs: drop fixed-positioning, fill width, taller
   textarea, status + action row in the footer. */
.an-notepad-page {
	position: static;
	transform: none;
	left: auto;
	bottom: auto;
	z-index: auto;
	width: 100%;
	max-width: none;
	margin-top: 1rem;
}
.an-notepad-page .an-notepad-textarea {
	height: 24rem;
	min-height: 16rem;
	font-size: 0.95rem;
	line-height: 1.6;
	padding: 1.1rem 1.25rem;
}
.an-notepad-page .an-notepad-footer {
	padding: 0.75rem 1rem;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6rem;
}
.an-notepad-page-status {
	font-size: 0.85rem;
	color: var(--an-text-soft);
}
.an-notepad-page-actions {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

@media (max-width: 600px) {
	.an-player {
		bottom: 0.75rem;
		padding: 0.45rem 0.6rem 0.45rem 0.85rem;
		border-radius: 2rem;
		gap: 0.5rem;
	}
	.an-player-info {
		max-width: 8rem;
	}
	.an-player-title {
		font-size: 0.75rem;
	}
	.an-player-artist {
		font-size: 0.68rem;
	}
}

/* ── Foldy Tip ──────────────────────────────────────────────────────────── */
.foldy-tip {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.25rem 1.5rem;
	border: 1px solid var(--an-line);
	border-radius: 0.5rem;
	background: rgba(125, 93, 57, 0.04);
}
.foldy-tip-img {
	width: 128px;
	height: 128px;
	object-fit: contain;
	flex-shrink: 0;
}
.foldy-tip-text .eyebrow {
	margin-bottom: 0.3rem;
}
.foldy-tip-text p:last-child {
	margin: 0;
	font-size: 0.9rem;
	color: var(--an-text-soft);
	line-height: 1.6;
}

/* ── Start Here page ──────────────────────────────────────────────────────── */

.sh-hero {
	text-align: center;
	padding: 1.75rem 0 1.5rem;
}
.sh-hero p {
	text-align: center;
	max-width: none;
}
.sh-hero img {
	margin-bottom: 1rem;
}
.sh-hero h2 {
	font-size: 1.75rem;
	max-width: 600px;
	margin: 0 auto 0.6rem;
	line-height: 1.3;
}
.sh-hero .sh-sub {
	color: var(--an-text-soft);
	font-size: 0.95rem;
	max-width: 480px;
	margin: 0 auto;
	line-height: 1.6;
}

.sh-intro {
	max-width: 620px;
	margin: 1.75rem auto 2.25rem;
	text-align: center;
}
.sh-intro p {
	color: var(--an-text-soft);
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 0.6rem;
	max-width: none;
}

.sh-section {
	margin-bottom: 2.25rem;
}
.sh-section-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--an-accent-soft);
	margin-bottom: 0.75rem;
}
.sh-section h3 {
	font-size: 1.15rem;
	margin-bottom: 1rem;
}
.sh-section-intro {
	color: var(--an-text-soft);
	font-size: 0.93rem;
	margin-bottom: 1.5rem;
	max-width: none;
}
.sh-welcome p {
	color: var(--an-text-soft);
	font-size: 0.97rem;
	line-height: 1.75;
	max-width: none;
	margin-bottom: 0.5rem;
}
.sh-welcome p:last-child { margin-bottom: 0; }

details.sh-expand {
	border: 1px solid var(--an-line);
	border-radius: 0.5rem;
	margin-bottom: 0.6rem;
	transition: background 0.15s;
}
details.sh-expand[open] {
	background: rgba(125, 93, 57, 0.04);
}
details.sh-expand summary {
	padding: 1rem 1.25rem;
	cursor: pointer;
	list-style: none;
	font-weight: 600;
	color: var(--an-heading);
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	user-select: none;
	font-size: 0.97rem;
}
details.sh-expand summary::-webkit-details-marker { display: none; }
details.sh-expand summary::after {
	content: '+';
	font-size: 1.1rem;
	color: var(--an-accent-soft);
	flex-shrink: 0;
	line-height: 1;
}
details.sh-expand[open] summary::after {
	content: '\2212';
}
.sh-expand-body {
	padding: 0 1.25rem 1.25rem;
	color: var(--an-text-soft);
	font-size: 0.95rem;
	line-height: 1.7;
}
.sh-expand-body p { margin-bottom: 0.6rem; max-width: none; }
.sh-expand-body p:last-child { margin-bottom: 0; }
.sh-expand-body a { color: var(--an-heading); }

.sh-profiles {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	margin-bottom: 3rem;
}
.sh-profile {
	border: 1px solid var(--an-line);
	border-radius: 0.5rem;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
}
.sh-profile-top {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-bottom: 0.9rem;
}
.sh-profile-top img {
	width: 120px;
	height: auto;
	flex-shrink: 0;
	opacity: 0.9;
}
.sh-profile-top h4 {
	margin: 0;
	font-size: 0.95rem;
	color: var(--an-heading);
}
.sh-profile p {
	color: var(--an-text-soft);
	font-size: 0.88rem;
	line-height: 1.6;
	margin-bottom: 0.9rem;
	flex: 1;
	max-width: none;
}
.sh-profile a.sh-profile-link {
	font-size: 0.82rem;
	color: var(--an-accent-soft);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.15s;
}
.sh-profile a.sh-profile-link:hover {
	border-bottom-color: var(--an-accent-soft);
}
.sh-profile--featured {
	border-color: var(--an-accent-soft);
	background: rgba(125, 93, 57, 0.04);
}
.sh-profile--featured .sh-profile-top {
	align-items: flex-start;
}
.sh-profile--featured .sh-profile-top img {
	margin-top: 0.25rem;
}
.sh-profile-badge {
	display: block;
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--an-accent-soft);
	margin-bottom: 0.35rem;
	font-weight: 600;
}

.sh-read-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem;
	margin-top: 1.5rem;
}
.sh-read-col h5 {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--an-accent-soft);
	margin-bottom: 0.75rem;
}
.sh-read-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.sh-read-col ul li {
	margin-bottom: 0.45rem;
}
.sh-read-col ul li a {
	font-size: 0.88rem;
	color: var(--an-heading);
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 2px;
	transition: text-decoration-color 0.15s;
}
.sh-read-col ul li a:hover {
	text-decoration-color: var(--an-accent-soft);
}
.sh-first-action {
	text-align: left;
	padding: 2rem 0 0.5rem;
}
.sh-first-action h3 {
	margin-bottom: 0.75rem;
}
.sh-first-action-desc {
	color: var(--an-text-soft);
	font-size: 0.93rem;
	max-width: 480px;
	margin: 0 0 1.5rem;
	line-height: 1.6;
}
.sh-cta-primary {
	display: inline-block;
	padding: 0.7rem 1.75rem 0.75rem;
	background: transparent;
	color: var(--an-accent) !important;
	border: 1px solid var(--an-accent);
	border-radius: 999px;
	font-size: 0.9rem;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: background 0.15s, color 0.15s;
}
.sh-cta-primary:hover {
	background: rgba(183, 142, 88, 0.1);
	color: var(--an-heading) !important;
}
.sh-cta-subline {
	margin-top: 1.25rem;
	font-size: 0.85rem;
	color: var(--an-text-soft);
	max-width: none;
	text-align: left;
}
.sh-cta-subline a {
	color: var(--an-accent-soft);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.15s;
}
.sh-cta-subline a:hover {
	border-bottom-color: var(--an-accent-soft);
}

.sh-divider {
	position: static;
	top: auto;
	height: 0;
	border: none;
	border-top: 1px solid var(--an-line);
	margin: 2.5rem 0;
}
.sh-divider::before,
.sh-divider::after {
	display: none;
}

@media (max-width: 760px) {
	.sh-profiles {
		grid-template-columns: 1fr;
	}
	.sh-read-grid {
		grid-template-columns: 1fr;
	}
}

/* ── Journal page ─────────────────────────────────────────────────────────── */

/* Shared page hero — used on journal, wiki, about, start-here */
.page-hero {
	text-align: center;
	padding: 2.5rem 0 2rem;
}
.page-hero p { text-align: center; max-width: none; }
.page-hero .eyebrow { color: var(--an-accent-soft); }
.page-hero img { margin-bottom: 1.25rem; }
.page-hero h2 {
	margin: 0 auto 0.4rem;
	font-size: 2rem;
	max-width: 640px;
	line-height: 1.25;
}
.page-tagline {
	color: var(--an-text-soft);
	font-size: 0.95rem;
	margin: 0 auto 1.75rem;
	max-width: 540px;
	line-height: 1.6;
}

/* Legacy aliases — keep so nothing breaks if old class names remain somewhere */
.journal-hero { text-align: center; padding: 2.5rem 0 2rem; }
.journal-hero p { text-align: center; max-width: none; }
.journal-hero img { margin-bottom: 1.25rem; }
.journal-hero h2 { margin-bottom: 0.4rem; font-size: 2rem; }
.journal-tagline {
	color: var(--an-text-soft);
	font-size: 0.95rem;
	margin-bottom: 1.75rem;
	max-width: none;
}

.journal-section-header {
	display: flex;
	align-items: flex-end;
	gap: 1.75rem;
	margin-bottom: 1rem;
}
.journal-section-header-left {
	flex: 1 1 0;
	min-width: 0;
}
.journal-section-header-right {
	width: 280px;
	flex-shrink: 0;
}
.journal-section-header .journal-view-toggle {
	margin-bottom: 0;
}
.journal-section-row {
	display: flex;
	gap: 1.75rem;
	margin-bottom: 2.5rem;
	align-items: flex-start;
}
.journal-featured {
	flex: 1 1 0;
	min-width: 0;
}
.journal-featured-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--an-accent-soft);
	margin-bottom: 1rem;
}

.journal-view-toggle {
	display: flex;
	justify-content: center;
	gap: 0.4rem;
	margin-bottom: 1rem;
}
.journal-view-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.1rem;
	height: 2.1rem;
	border: 1px solid var(--an-line);
	border-radius: 0.35rem;
	background: transparent;
	color: var(--an-text-soft);
	cursor: pointer;
	transition: border-color 0.15s, color 0.15s, background 0.15s;
	padding: 0;
}
.journal-view-btn svg {
	width: 1rem;
	height: 1rem;
	fill: currentColor;
	display: block;
}
.journal-view-btn.active {
	border-color: var(--an-accent-soft);
	color: var(--an-accent-soft);
	background: rgba(125, 93, 57, 0.07);
}
.journal-view-btn:hover:not(.active) {
	color: var(--an-heading);
	border-color: var(--an-accent-soft);
}

.journal-featured-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
.journal-featured-card {
	display: block;
	border: 1px solid var(--an-line);
	border-radius: 0.5rem;
	padding: 1rem;
	text-decoration: none;
	color: inherit;
	transition: border-color 0.15s;
}
.journal-featured-card:hover {
	border-color: var(--an-accent-soft);
}
.journal-featured-card img {
	width: 100%;
	aspect-ratio: 440 / 352;
	border-radius: 0.25rem;
	margin-bottom: 0.5rem;
	display: block;
	opacity: 0.88;
	transition: opacity 0.15s;
	object-fit: cover;
	background: rgba(125, 93, 57, 0.04);
}
.journal-featured-card:hover img { opacity: 1; }
.journal-featured-card-body { min-width: 0; }
.journal-featured-card .eyebrow { margin-bottom: 0.2rem; font-size: 0.72rem; }
.journal-featured-card h4 {
	font-size: 0.88rem;
	margin-bottom: 0.3rem;
	color: var(--an-heading);
}
.journal-featured-card p:last-child {
	font-size: 0.82rem;
	color: var(--an-text-soft);
	line-height: 1.5;
	margin: 0;
	max-width: none;
}

.journal-featured[data-view="list"] .journal-featured-grid {
	grid-template-columns: 1fr;
	gap: 0.6rem;
}
.journal-featured[data-view="list"] .journal-featured-card {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1rem;
	padding: 0.75rem 1rem;
}
.journal-featured[data-view="list"] .journal-featured-card img {
	width: 80px;
	aspect-ratio: 440 / 352;
	flex-shrink: 0;
	margin-bottom: 0;
	object-fit: cover;
}
.journal-featured[data-view="list"] .journal-featured-card-body { flex: 1; min-width: 0; }
.journal-featured[data-view="list"] .journal-featured-card h4 { margin-bottom: 0.15rem; }
.journal-featured[data-view="list"] .journal-featured-card .eyebrow { margin-bottom: 0.15rem; }

.journal-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.5rem;
	padding-top: 1rem;
	border-top: 1px solid var(--an-line);
}
.journal-pagination-prev,
.journal-pagination-next {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.85rem;
	border: 1px solid var(--an-line);
	border-radius: 0.35rem;
	background: transparent;
	color: var(--an-accent-soft);
	font-size: 0.8rem;
	cursor: pointer;
	transition: border-color 0.15s, background 0.15s;
	font-family: inherit;
}
.journal-pagination-prev:hover:not(:disabled),
.journal-pagination-next:hover:not(:disabled) {
	border-color: var(--an-accent-soft);
	background: rgba(125, 93, 57, 0.07);
}
.journal-pagination-prev:disabled,
.journal-pagination-next:disabled {
	opacity: 0.3;
	cursor: default;
}
.journal-pagination-info {
	font-size: 0.8rem;
	color: var(--an-text-soft);
	min-width: 5rem;
	text-align: center;
}

.journal-side {
	width: 280px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.journal-stats-box {
	border: 1px solid var(--an-line);
	border-radius: 0.5rem;
	padding: 1.25rem 1.5rem;
	text-align: center;
}
.journal-stats-box .stat-big {
	display: block;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--an-heading);
	line-height: 1;
	margin-bottom: 0.2rem;
}
.journal-stats-box .stat-label {
	font-size: 0.78rem;
	color: var(--an-text-soft);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}
.journal-stats-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0.6rem 0.5rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--an-line);
}
.journal-stats-row .mini { text-align: center; }
.journal-stats-row .mini strong {
	display: block;
	font-size: 1.05rem;
	color: var(--an-heading);
}
.journal-stats-row .mini span {
	font-size: 0.7rem;
	color: var(--an-text-soft);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.journal-nav-box {
	border: 1px solid var(--an-line);
	border-radius: 0.5rem;
	padding: 1.25rem 1.5rem;
}
.journal-nav-box h4 {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--an-accent-soft);
	margin-bottom: 0.75rem;
}
.journal-nav-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.journal-nav-box ul li { margin-bottom: 0.45rem; }
.journal-nav-box ul li a {
	font-size: 0.9rem;
	color: var(--an-heading);
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 2px;
	transition: text-decoration-color 0.15s;
}
.journal-nav-box ul li a:hover {
	text-decoration-color: var(--an-accent-soft);
}

.journal-search-input {
	width: 100%;
	padding: 0.75rem 1.1rem;
	font-size: 1rem;
	border: 1px solid var(--an-line);
	border-radius: 0.4rem;
	background: var(--an-bg);
	color: var(--an-heading);
	box-sizing: border-box;
	outline: none;
	font-family: inherit;
	transition: border-color 0.15s;
}
.journal-search-input:focus { border-color: var(--an-accent-soft); }

.journal-divider {
	border: none;
	border-top: 1px solid var(--an-line);
	margin: 0.5rem 0 2rem;
}
.journal-browse-heading {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	color: var(--an-accent-soft);
	margin-bottom: 1.75rem;
}

@media (max-width: 900px) {
	.journal-section-header {
		flex-direction: column;
		align-items: stretch;
	}
	.journal-section-header-right {
		width: 100%;
	}
	.journal-section-header .journal-view-toggle {
		margin-bottom: 0.75rem;
	}
	.journal-section-row {
		flex-direction: column;
	}
	.journal-side {
		width: 100%;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.journal-stats-box,
	.journal-nav-box {
		flex: 1 1 220px;
	}
}
@media (max-width: 640px) {
	.journal-side { flex-direction: column; }
	.journal-featured-grid { grid-template-columns: 1fr; }
}

/* ── Wiki sidebar (shared: wiki.html index + article pages) ───────────────── */

.wiki-search-wrap {
	position: relative;
}
.wiki-search-input {
	width: 100%;
	padding: 0.75rem 1.1rem;
	font-size: 1rem;
	border: 1px solid var(--an-line);
	border-radius: 0.4rem;
	background: var(--an-bg);
	color: var(--an-heading);
	box-sizing: border-box;
	outline: none;
	font-family: inherit;
	transition: border-color 0.15s;
}
.wiki-search-input:focus {
	border-color: var(--an-accent-soft);
}
.wiki-search-results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--an-bg);
	border: 1px solid var(--an-line);
	border-top: none;
	border-radius: 0 0 0.4rem 0.4rem;
	z-index: 200;
	display: none;
	max-height: 340px;
	overflow-y: auto;
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.wiki-search-results.active {
	display: block;
}
.wiki-result-item {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 0.65rem 1.1rem;
	text-decoration: none;
	color: var(--an-heading);
	border-bottom: 1px solid var(--an-line);
	font-size: 0.9rem;
	transition: background 0.1s;
}
.wiki-result-item:last-child { border-bottom: none; }
.wiki-result-item:hover { background: rgba(125, 93, 57, 0.07); }
.wiki-result-title { flex: 1; }
.wiki-result-cat {
	font-size: 0.72em;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--an-accent-soft);
	margin-left: 0.75rem;
	flex-shrink: 0;
}
.wiki-result-empty {
	padding: 0.75rem 1.1rem;
	color: var(--an-text-soft);
	font-size: 0.9rem;
	font-style: italic;
}

.wiki-side {
	width: 280px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.wiki-stats-box {
	border: 1px solid var(--an-line);
	border-radius: 0.5rem;
	padding: 1.25rem 1.5rem;
	text-align: center;
}
.wiki-stats-box .stat-big {
	display: block;
	font-size: 2.4rem;
	font-weight: 700;
	color: var(--an-heading);
	line-height: 1;
	margin-bottom: 0.2rem;
}
.wiki-stats-box .stat-label {
	font-size: 0.78rem;
	color: var(--an-text-soft);
	text-transform: uppercase;
	letter-spacing: 0.12em;
}
.wiki-stats-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.6rem 0.5rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid var(--an-line);
}
.wiki-stats-row .mini { text-align: center; }
.wiki-stats-row .mini strong {
	display: block;
	font-size: 1.05rem;
	color: var(--an-heading);
}
.wiki-stats-row .mini span {
	font-size: 0.7rem;
	color: var(--an-text-soft);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}
.wiki-quick-nav {
	border: 1px solid var(--an-line);
	border-radius: 0.5rem;
	padding: 1.25rem 1.5rem;
}
.wiki-quick-nav h4 {
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: var(--an-accent-soft);
	margin-bottom: 0.75rem;
}
.wiki-quick-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.wiki-quick-nav ul li { margin-bottom: 0.45rem; }
.wiki-quick-nav ul li a {
	font-size: 0.9rem;
	color: var(--an-heading);
	text-decoration: underline;
	text-decoration-color: transparent;
	text-underline-offset: 2px;
	transition: text-decoration-color 0.15s;
}
.wiki-quick-nav ul li a:hover {
	text-decoration-color: var(--an-accent-soft);
}

/* Wiki article two-column layout */
.wiki-article-layout {
	display: flex;
	gap: 2rem;
	align-items: flex-start;
}
.wiki-article-main {
	flex: 1;
	min-width: 0;
}
.wiki-article-side {
	position: sticky;
	top: 1.5rem;
}

@media (max-width: 900px) {
	.wiki-article-layout {
		flex-direction: column;
	}
	.wiki-side {
		width: 100%;
	}
	.wiki-article-side {
		position: static;
		width: 100%;
	}
}













/* Utilities simple action links */
.utility-action-link,
.utility-action-link:visited {
	color: var(--an-accent-soft, #b78e58) !important;
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	border-bottom: none !important;
	display: inline-block;
}
button.utility-action-link {
	appearance: none;
	background: transparent !important;
	border: 0;
	padding: 0;
	margin: 0;
	min-height: 0;
	border-radius: 0;
	cursor: pointer;
	font-family: inherit;
	line-height: 1.4;
}
.utility-action-link:hover,
.utility-action-link:focus-visible {
	color: var(--an-heading, #3a2e1e) !important;
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

/* Utility detail page wrapper used by /utilities/*.html (notes, converter, ...) */
.utility-detail-shell {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	margin-top: 1.25rem;
}
.utility-detail-copy {
	max-width: 64ch;
}
.utility-detail-copy p {
	margin: 0 0 0.85rem;
}
.utility-pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.25rem;
}
.utility-detail-card {
	background: var(--an-panel, #fbf6ec);
	border: 1px solid var(--an-line, rgba(125,93,57,0.25));
	border-radius: 10px;
	padding: 1.4rem 1.5rem 1.5rem;
}

/* US to Metric converter widget */
.converter-shell {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.converter-shell .converter-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}
.converter-shell .converter-category {
	appearance: none;
	border: 1px solid var(--an-line, rgba(125,93,57,0.3));
	background: var(--an-bg, #f5f0e8);
	color: var(--an-text, #4a3f30);
	font-family: inherit;
	font-size: 0.85rem;
	padding: 0.45rem 0.9rem;
	border-radius: 999px;
	cursor: pointer;
	line-height: 1;
	width: auto;
	min-height: 0;
	text-align: center;
	font-weight: 500;
}
.converter-shell .converter-category:hover {
	border-color: var(--an-accent-soft, #b78e58);
	background: var(--an-bg, #f5f0e8);
	color: var(--an-text, #4a3f30);
}
.converter-shell .converter-category[aria-pressed="true"] {
	background: var(--an-accent-soft, #b78e58);
	color: #fff;
	border-color: var(--an-accent-soft, #b78e58);
}
.converter-shell .converter-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 0.85rem;
	align-items: end;
}
@media (max-width: 640px) {
	.converter-shell .converter-row {
		grid-template-columns: 1fr;
	}
	.converter-shell .converter-swap-wrap {
		display: flex;
		justify-content: center;
	}
}
.converter-shell .converter-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	min-width: 0;
}
.converter-shell .converter-field label {
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--an-text-soft, #7a6a52);
	line-height: 1.2;
}
.converter-shell .converter-input {
	border: 1px solid var(--an-line, rgba(125,93,57,0.3));
	border-radius: 6px;
	background: var(--an-bg, #f5f0e8);
	color: var(--an-text, #4a3f30);
	font-family: inherit;
	font-size: 1.05rem;
	line-height: 1.4;
	padding: 0.65rem 0.8rem;
	width: 100%;
	box-sizing: border-box;
}
.converter-shell .converter-input:focus {
	outline: 2px solid var(--an-accent, #b78e58);
	outline-offset: 1px;
}
.converter-shell .converter-unit {
	display: block;
	font-size: 0.85rem;
	color: var(--an-text-soft, #7a6a52);
}
.converter-shell .converter-swap {
	appearance: none;
	border: 1px solid var(--an-line, rgba(125,93,57,0.3));
	background: var(--an-bg, #f5f0e8);
	color: var(--an-text, #4a3f30);
	border-radius: 999px;
	width: 2.5rem;
	min-width: 2.5rem;
	height: 2.5rem;
	min-height: 2.5rem;
	padding: 0;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.1rem;
	font-weight: 400;
	text-align: center;
}
.converter-shell .converter-swap:hover {
	border-color: var(--an-accent-soft, #b78e58);
	background: var(--an-bg, #f5f0e8);
	color: var(--an-text, #4a3f30);
}
.converter-shell .converter-swap svg {
	width: 1.1rem;
	height: 1.1rem;
	stroke: currentColor;
	fill: none;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.converter-shell .converter-actions {
	display: flex;
	gap: 0.6rem;
	flex-wrap: wrap;
	margin-top: 1.1rem;
}
.converter-shell .converter-note {
	font-size: 0.85rem;
	color: var(--an-text-soft, #7a6a52);
	margin: 0.85rem 0 0;
}
