@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

:root {
	--ptr-bg: #fcf9f7;
	--ptr-surface: rgba(248, 244, 240, 0.94);
	--ptr-surface-strong: #f3ede7;
	--ptr-border: #e4ded8;
	--ptr-border-strong: #d5cabd;
	--ptr-text: #0a332c;
	--ptr-text-soft: #3d635a;
	--ptr-text-muted: #7f8e89;
	--ptr-ink: #051714;
	--ptr-forest: #0a332c;
	--ptr-forest-2: #0f5040;
	--ptr-accent: #50e8a8;
	--ptr-accent-soft: #e5fbf1;
	--ptr-accent-mid: #76e0b0;
	--ptr-gold: #ffd800;
	--ptr-shadow: 0 24px 70px rgba(10, 51, 44, 0.14);
	--ptr-radius-xl: 30px;
	--ptr-radius-lg: 24px;
	--ptr-radius-md: 18px;
	--ptr-radius-pill: 999px;
	--ptr-shell: min(100% - 2.5rem, 1200px);
	--ptr-content: min(100%, 46rem);
	--ptr-header-height: 5.25rem;
	--ptr-index-bar-height: 4.35rem;
	--ptr-sticky-offset: calc(var(--ptr-header-height) + 0.75rem);
	--ptr-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ptr-bg);
	color: var(--ptr-text);
	font-family: var(--ptr-font);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.ptr-no-scroll {
	overflow: hidden;
	overscroll-behavior: none;
}

a {
	color: inherit;
}

button,
input {
	font: inherit;
}

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

.ptr-skip-link:focus {
	position: fixed !important;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.85rem 1rem;
	margin: 0;
	clip: auto;
	background: #111;
	color: #fff;
	border-radius: 999px;
	z-index: 1000;
}

.ptr-site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(16px);
}

.ptr-site-header__inner,
.ptr-site-footer__inner,
.ptr-page-shell,
.ptr-listing-shell,
.ptr-search-page {
	width: var(--ptr-shell);
	margin: 0 auto;
}

.ptr-site-header__inner {
	min-height: var(--ptr-header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.ptr-brand {
	font-size: clamp(1.5rem, 1.35rem + 0.75vw, 2.25rem);
	line-height: 1;
	font-weight: 650;
	letter-spacing: -0.045em;
	text-decoration: none;
}

.ptr-header-actions {
	display: flex;
	align-items: center;
	gap: 0.3rem;
}

.ptr-icon-button,
.ptr-toolbar-button,
.ptr-index-bar-toggle,
.ptr-index-drawer-close {
	appearance: none;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
}

.ptr-icon-button {
	width: 2.85rem;
	height: 2.85rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.ptr-index-drawer-close {
	display: none;
}

.ptr-icon-button:hover,
.ptr-icon-button:focus-visible,
.ptr-toolbar-button:hover,
.ptr-toolbar-button:focus-visible,
.ptr-index-bar-toggle:hover,
.ptr-index-bar-toggle:focus-visible,
.ptr-index-drawer-close:hover,
.ptr-index-drawer-close:focus-visible {
	background: rgba(17, 17, 17, 0.06);
	outline: none;
}

.ptr-icon-button svg,
.ptr-toolbar-icon svg,
.ptr-index-bar-toggle svg,
.ptr-index-drawer-close svg {
	width: 1.45rem;
	height: 1.45rem;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	fill: none;
}

.ptr-main {
	padding-bottom: 5rem;
}

.ptr-page-shell {
	padding-top: clamp(3rem, 8vw, 6.5rem);
}

.ptr-hero {
	display: grid;
	justify-items: center;
	text-align: center;
	gap: 1.6rem;
	padding-bottom: clamp(2.8rem, 8vw, 6rem);
}

.ptr-hero-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.9rem 1.5rem;
	font-size: clamp(0.98rem, 0.9rem + 0.15vw, 1.05rem);
	color: var(--ptr-text-soft);
	letter-spacing: -0.02em;
}

.ptr-hero-meta time {
	color: var(--ptr-text);
}

.ptr-hero-title {
	margin: 0;
	max-width: 14ch;
	font-size: clamp(3.45rem, 9vw, 6.8rem);
	line-height: 0.94;
	font-weight: 560;
	letter-spacing: -0.07em;
	text-wrap: balance;
}

.ptr-hero-chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 3.55rem;
	padding: 0.8rem 1.5rem;
	border-radius: var(--ptr-radius-pill);
	background: var(--ptr-surface-strong);
	color: var(--ptr-text-soft);
	font-size: clamp(1rem, 0.9rem + 0.25vw, 1.15rem);
	letter-spacing: -0.03em;
}

.ptr-divider {
	height: 1px;
	background: var(--ptr-border);
}

.ptr-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.35rem 0 2rem;
}

.ptr-toolbar-left {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-width: 0;
}

.ptr-toolbar-button {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	padding: 0.55rem 0;
	border-radius: 999px;
	text-decoration: none;
	transition: opacity 180ms ease;
}

.ptr-toolbar-button--listen {
	padding-right: 0.8rem;
}

.ptr-toolbar-button--share {
	flex-shrink: 0;
}

.ptr-toolbar-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: var(--ptr-surface);
}

.ptr-toolbar-icon--listen svg {
	width: 1.3rem;
	height: 1.3rem;
	margin-left: 0.12rem;
	stroke: none;
	fill: currentColor;
}

.ptr-toolbar-label,
.ptr-toolbar-duration {
	font-size: clamp(1rem, 0.95rem + 0.15vw, 1.1rem);
	letter-spacing: -0.03em;
}

.ptr-toolbar-duration {
	color: var(--ptr-text);
	padding-left: 1.25rem;
	border-left: 1px solid var(--ptr-border);
}

.ptr-index-bar {
	position: sticky;
	top: var(--ptr-header-height);
	z-index: 60;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(18px);
	border-bottom: 1px solid var(--ptr-border);
}

.ptr-index-bar[hidden],
.ptr-index-drawer[hidden],
.ptr-search-overlay[hidden],
.ptr-toast[hidden] {
	display: none;
}

.ptr-index-bar-inner {
	width: var(--ptr-shell);
	margin: 0 auto;
	min-height: var(--ptr-index-bar-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.ptr-index-bar-label {
	min-width: 0;
	font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.08rem);
	letter-spacing: -0.035em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ptr-index-bar-toggle {
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ptr-index-bar-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.ptr-index-drawer {
	position: fixed;
	top: calc(var(--ptr-header-height) + var(--ptr-index-bar-height));
	left: 0;
	right: 0;
	z-index: 55;
	background: rgba(255, 255, 255, 0.985);
	border-bottom: 1px solid var(--ptr-border);
	box-shadow: 0 22px 40px rgba(17, 17, 17, 0.06);
	max-height: calc(100dvh - (var(--ptr-header-height) + var(--ptr-index-bar-height)));
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.ptr-index-drawer-inner {
	width: var(--ptr-shell);
	margin: 0 auto;
	padding: 0.85rem 0 1.4rem;
}

.ptr-index-drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0 0 0.8rem;
	color: var(--ptr-text-muted);
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ptr-content-layout {
	display: block;
}

.ptr-desktop-index {
	display: none;
}

.ptr-index-links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

.ptr-index-link {
	display: block;
	color: var(--ptr-text-soft);
	text-decoration: none;
	font-size: clamp(1rem, 0.96rem + 0.1vw, 1.08rem);
	letter-spacing: -0.03em;
	line-height: 1.3;
	transition: color 160ms ease;
}

.ptr-index-link:hover,
.ptr-index-link:focus-visible,
.ptr-index-link.is-active {
	color: var(--ptr-text);
	outline: none;
}

.ptr-index-links--drawer {
	gap: 1.05rem;
}

.ptr-index-links--drawer .ptr-index-link {
	font-size: clamp(1.35rem, 1.08rem + 0.85vw, 2.1rem);
	line-height: 1.16;
	letter-spacing: -0.055em;
	color: #757571;
}

.ptr-index-links--drawer .ptr-index-link.is-active {
	font-weight: 520;
	color: #111111;
}

.ptr-article {
	max-width: var(--ptr-content);
	padding: 1rem 0 0;
}

.ptr-article > *:first-child {
	margin-top: 0;
}

.ptr-article p,
.ptr-article li,
.ptr-article blockquote {
	font-size: clamp(1.35rem, 1.05rem + 0.65vw, 1.78rem);
	line-height: 1.65;
	letter-spacing: -0.035em;
	color: #171717;
}

.ptr-article p {
	margin: 0 0 1.55em;
	text-wrap: pretty;
}

.ptr-article h2,
.ptr-article h3 {
	margin: 2.7rem 0 1rem;
	line-height: 1.08;
	letter-spacing: -0.055em;
	text-wrap: balance;
	scroll-margin-top: calc(var(--ptr-header-height) + 5rem);
}

.ptr-article h2 {
	font-size: clamp(2rem, 1.7rem + 1.8vw, 3.45rem);
	font-weight: 560;
}

.ptr-article h2.ptr-index-anchor-only {
	margin: 0;
	padding: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	letter-spacing: 0;
	overflow: hidden;
	color: transparent;
}

.ptr-article h3 {
	font-size: clamp(1.55rem, 1.35rem + 1vw, 2.3rem);
	font-weight: 560;
}

.ptr-article a {
	text-decoration-thickness: 1.5px;
	text-underline-offset: 0.14em;
}

.ptr-article strong {
	font-weight: 630;
}

.ptr-article ul,
.ptr-article ol {
	padding-left: 1.2em;
	margin: 0 0 1.55em;
}

.ptr-context-panel {
	margin-top: 3.4rem;
	padding: clamp(1.3rem, 2vw, 1.8rem);
	border: 1px solid var(--ptr-border);
	border-radius: 1.6rem;
	background: linear-gradient(180deg, rgba(248, 248, 248, 0.95), rgba(255, 255, 255, 0.98));
}

.ptr-context-panel__kicker {
	margin: 0 0 0.55rem;
	color: var(--ptr-text-muted);
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ptr-context-panel__title {
	margin: 0 0 0.7rem;
	font-size: clamp(1.35rem, 1.12rem + 0.45vw, 1.75rem);
	line-height: 1.1;
	letter-spacing: -0.045em;
}

.ptr-context-panel__intro {
	margin: 0 0 1.35rem;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--ptr-text-soft);
}

.ptr-context-panel__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.9rem;
}

.ptr-context-item {
	padding: 0.95rem 1rem;
	border-radius: 1.15rem;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(17, 17, 17, 0.06);
}

.ptr-context-item__label {
	margin: 0 0 0.35rem;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ptr-text-muted);
}

.ptr-context-item__value {
	margin: 0;
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	color: var(--ptr-text);
	font-size: 1.02rem;
	line-height: 1.4;
	letter-spacing: -0.03em;
	text-decoration: none;
}

a.ptr-context-item__value:hover,
a.ptr-context-item__value:focus-visible {
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.ptr-context-panel__chain {
	margin: 1rem 0 0;
	padding-top: 1rem;
	border-top: 1px solid var(--ptr-border);
	font-size: 0.96rem;
	line-height: 1.6;
	color: var(--ptr-text-soft);
}

.ptr-context-panel__chain span {
	display: inline-block;
	margin-right: 0.55rem;
	color: var(--ptr-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
}

.ptr-inline-figure,
.ptr-article figure,
.ptr-article .wp-block-image {
	margin: 2.75rem 0 3rem;
}

.ptr-inline-figure__frame {
	padding: clamp(0.8rem, 2vw, 1.2rem);
	border-radius: 1.75rem;
	background:
		linear-gradient(135deg, rgba(25, 91, 245, 0.95), rgba(135, 99, 255, 0.72) 45%, rgba(245, 245, 248, 0.25) 100%);
	box-shadow: 0 24px 60px rgba(41, 61, 153, 0.18);
}

.ptr-inline-figure__canvas {
	border-radius: 1.3rem;
	background: rgba(255, 255, 255, 0.85);
	min-height: clamp(15rem, 30vw, 26rem);
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	overflow: hidden;
}

.ptr-inline-figure__pane {
	position: relative;
}

.ptr-inline-figure__pane--left {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 244, 249, 0.95)),
		linear-gradient(90deg, rgba(226, 228, 234, 0.5), rgba(226, 228, 234, 0));
}

.ptr-inline-figure__pane--left::before,
.ptr-inline-figure__pane--left::after {
	content: "";
	position: absolute;
	left: clamp(1rem, 2vw, 1.6rem);
	right: clamp(1rem, 2vw, 1.6rem);
	border-radius: 999px;
	background: rgba(28, 28, 28, 0.08);
}

.ptr-inline-figure__pane--left::before {
	top: 1.25rem;
	height: 0.72rem;
	box-shadow:
		0 1.45rem 0 rgba(28, 28, 28, 0.06),
		0 2.9rem 0 rgba(28, 28, 28, 0.06),
		0 4.35rem 0 rgba(28, 28, 28, 0.06),
		0 5.8rem 0 rgba(28, 28, 28, 0.06);
}

.ptr-inline-figure__pane--left::after {
	bottom: 1.4rem;
	height: 2.8rem;
	width: 12rem;
	max-width: calc(100% - 2.4rem);
}

.ptr-inline-figure__pane--right {
	background: linear-gradient(180deg, #26160f, #1a0f0a 62%, #0f0a07);
	padding: 1.2rem;
}

.ptr-inline-figure__card {
	position: absolute;
	left: 1.2rem;
	right: 1.2rem;
	top: 1.35rem;
	bottom: 5.8rem;
	border-radius: 1.1rem;
	background:
		linear-gradient(180deg, rgba(255, 210, 80, 0.22), rgba(255, 210, 80, 0.06)),
		repeating-linear-gradient(
			180deg,
			rgba(255, 209, 102, 0.08) 0,
			rgba(255, 209, 102, 0.08) 10px,
			transparent 10px,
			transparent 20px
		);
	border: 1px solid rgba(255, 194, 72, 0.35);
}

.ptr-inline-figure__card::before,
.ptr-inline-figure__card::after {
	content: "";
	position: absolute;
	left: 1rem;
	right: 1rem;
	border-radius: 999px;
	background: rgba(255, 215, 120, 0.18);
}

.ptr-inline-figure__card::before {
	top: 1rem;
	height: 0.85rem;
	box-shadow:
		0 1.8rem 0 rgba(255, 215, 120, 0.14),
		0 3.6rem 0 rgba(255, 215, 120, 0.14);
}

.ptr-inline-figure__card::after {
	bottom: 1rem;
	width: 6rem;
	height: 2.35rem;
	background: #f5bc3f;
}

.ptr-inline-figure__card--small {
	top: auto;
	left: 1.2rem;
	right: auto;
	width: 8.5rem;
	height: 4.85rem;
	bottom: 1.2rem;
	background: linear-gradient(180deg, rgba(246, 141, 73, 0.38), rgba(246, 141, 73, 0.15));
	border: 1px solid rgba(247, 169, 107, 0.4);
}

.ptr-inline-figure__card--small::before,
.ptr-inline-figure__card--small::after {
	display: none;
}

.ptr-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 200;
}

.ptr-search-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(18px);
	cursor: pointer;
}

.ptr-search-overlay__panel {
	position: relative;
	width: min(100% - 2rem, 46rem);
	margin: max(5.5rem, 12vh) auto 0;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(17, 17, 17, 0.08);
	border-radius: 2rem;
	box-shadow: var(--ptr-shadow);
	padding: 1.4rem;
	display: flex;
	flex-direction: column;
	max-height: calc(100dvh - max(7rem, 12vh));
	overflow: hidden;
}

.ptr-search-overlay__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.ptr-search-overlay__eyebrow,
.ptr-desktop-index-kicker,
.ptr-listing-shell__eyebrow,
.ptr-search-page__eyebrow {
	margin: 0 0 0.45rem;
	font-size: 0.88rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--ptr-text-muted);
}

.ptr-search-overlay__head h2,
.ptr-listing-shell__head h1,
.ptr-search-page__head h1 {
	margin: 0;
	font-size: clamp(1.7rem, 1.3rem + 1vw, 2.4rem);
	line-height: 1.03;
	letter-spacing: -0.05em;
}

.ptr-search-box,
.ptr-inline-search-form {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.55rem;
	border: 1px solid var(--ptr-border);
	border-radius: 999px;
	background: var(--ptr-surface);
}

.ptr-search-box input,
.ptr-inline-search-form input {
	flex: 1 1 auto;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 0.55rem 0.8rem;
	color: var(--ptr-text);
	outline: none;
}

.ptr-search-box button,
.ptr-inline-search-form button {
	border: 0;
	border-radius: 999px;
	background: #111111;
	color: #ffffff;
	padding: 0.82rem 1.15rem;
	cursor: pointer;
}

.ptr-search-results {
	display: grid;
	gap: 0.8rem;
	margin-top: 1rem;
	max-height: min(55vh, 34rem);
	overflow: auto;
	padding-right: 0.15rem;
	flex: 1 1 auto;
	-webkit-overflow-scrolling: touch;
}

.ptr-search-results__empty {
	margin: 0;
	padding: 0.55rem 0.15rem;
	color: var(--ptr-text-soft);
	font-size: 1rem;
}

.ptr-search-result-card {
	display: block;
	padding: 1rem 1.05rem;
	border-radius: 1.15rem;
	background: #fafaf8;
	border: 1px solid transparent;
	text-decoration: none;
	transition: border-color 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.ptr-search-result-card:hover,
.ptr-search-result-card:focus-visible {
	border-color: var(--ptr-border-strong);
	background: #ffffff;
	transform: translateY(-1px);
	outline: none;
}

.ptr-search-result-card__meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 0.3rem;
	color: var(--ptr-text-muted);
	font-size: 0.9rem;
}

.ptr-search-result-card__title {
	margin: 0 0 0.3rem;
	font-size: 1.2rem;
	line-height: 1.15;
	letter-spacing: -0.04em;
}

.ptr-search-result-card__excerpt {
	margin: 0;
	color: var(--ptr-text-soft);
	font-size: 0.98rem;
	line-height: 1.5;
}

.ptr-site-footer {
	margin-top: 4rem;
	border-top: 1px solid var(--ptr-border);
}

.ptr-site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	min-height: 4.5rem;
	padding: 1.35rem 0;
	font-size: 0.98rem;
	color: var(--ptr-text-soft);
}

.ptr-site-footer__inner p {
	margin: 0;
}

.ptr-site-footer__brand {
	display: grid;
	gap: 0.3rem;
}

.ptr-site-footer__ecosystem-label {
	color: var(--ptr-text-muted);
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.ptr-site-footer__ecosystem {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.94rem;
	line-height: 1.55;
}

.ptr-site-footer__ecosystem a {
	color: inherit;
	text-decoration: none;
}

.ptr-site-footer__ecosystem a:hover,
.ptr-site-footer__ecosystem a:focus-visible {
	color: var(--ptr-text);
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.ptr-site-footer__year {
	align-self: flex-start;
}

@media (max-width: 760px) {
	.ptr-site-footer__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.ptr-site-footer__year {
		align-self: auto;
	}
}

.ptr-toast {
	position: fixed;
	left: 50%;
	bottom: 1.6rem;
	transform: translateX(-50%);
	z-index: 240;
	padding: 0.9rem 1.2rem;
	border-radius: 999px;
	background: rgba(17, 17, 17, 0.92);
	color: #ffffff;
	font-size: 0.96rem;
	box-shadow: 0 20px 45px rgba(17, 17, 17, 0.18);
}

.ptr-listing-shell,
.ptr-search-page {
	padding-top: clamp(2.5rem, 6vw, 5rem);
}

.ptr-listing-shell__head,
.ptr-search-page__head {
	display: grid;
	gap: 1rem;
	margin-bottom: 2rem;
}

.ptr-listing-grid,
.ptr-search-page__results {
	display: grid;
	gap: 1rem;
}

.ptr-listing-card,
.ptr-search-result {
	padding: 1.35rem;
	border: 1px solid var(--ptr-border);
	border-radius: 1.5rem;
	background: #fbfbfa;
}

.ptr-listing-card__meta,
.ptr-search-result__meta {
	margin: 0 0 0.45rem;
	color: var(--ptr-text-muted);
	font-size: 0.9rem;
}

.ptr-listing-card h2,
.ptr-search-result h2 {
	margin: 0 0 0.45rem;
	font-size: clamp(1.4rem, 1.2rem + 0.8vw, 2rem);
	line-height: 1.05;
	letter-spacing: -0.05em;
}

.ptr-listing-card p:last-child,
.ptr-search-result p:last-child {
	margin-bottom: 0;
}

@media (min-width: 980px) {
	.ptr-page-shell {
		padding-top: clamp(4rem, 7vw, 7rem);
	}

	.ptr-content-layout.has-index {
		display: grid;
		grid-template-columns: minmax(13rem, 16rem) minmax(0, 46rem);
		justify-content: center;
		gap: clamp(2rem, 4vw, 4rem);
		align-items: start;
	}

	.ptr-desktop-index {
		display: block;
	}

	.ptr-desktop-index-sticky {
		position: sticky;
		top: calc(var(--ptr-header-height) + 2.5rem);
		padding-top: 0.5rem;
	}

	.ptr-index-links--desktop {
		gap: 1rem;
	}

	.ptr-listing-grid,
	.ptr-search-page__results {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 979px) {
	.ptr-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}

	.ptr-toolbar-left {
		width: 100%;
	}

	.ptr-toolbar-button--share {
		padding-top: 0;
	}

	.ptr-article {
		max-width: 100%;
	}

	.ptr-context-panel__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 700px) {
	:root {
		--ptr-shell: min(100% - 2rem, 1200px);
		--ptr-header-height: 4.75rem;
	}

	.ptr-site-header__inner {
		min-height: var(--ptr-header-height);
	}

	.ptr-icon-button {
		width: 2.65rem;
		height: 2.65rem;
	}

	.ptr-toolbar-left {
		gap: 0.75rem;
	}

	.ptr-toolbar-icon {
		width: 3.55rem;
		height: 3.55rem;
	}

	.ptr-toolbar-duration {
		padding-left: 0.95rem;
	}

	.ptr-search-overlay__panel {
		width: min(100% - 1rem, 46rem);
		margin-top: max(4.5rem, 9vh);
		padding: 1rem;
		border-radius: 1.6rem;
	}

	.ptr-index-bar-label {
		font-size: 0.96rem;
	}

	.ptr-index-drawer-inner {
		padding-bottom: 1.1rem;
	}

	.ptr-index-links--drawer {
		gap: 0.9rem;
	}

	.ptr-index-links--drawer .ptr-index-link {
		font-size: clamp(1.05rem, 0.96rem + 1.05vw, 1.5rem);
	}

	.ptr-search-box,
	.ptr-inline-search-form {
		flex-direction: column;
		align-items: stretch;
		border-radius: 1.3rem;
	}

	.ptr-search-box button,
	.ptr-inline-search-form button {
		width: 100%;
	}

	.ptr-inline-figure__canvas {
		grid-template-columns: 1fr;
		min-height: 18rem;
	}

	.ptr-inline-figure__pane--right {
		min-height: 13rem;
	}

	.ptr-listing-grid,
	.ptr-search-page__results {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}

/* Island-inspired visual layer */
body {
	background:
		radial-gradient(circle at 82% 5%, rgba(80, 232, 168, 0.26), rgba(80, 232, 168, 0) 26rem),
		linear-gradient(180deg, #fcf9f7 0%, #f8f4f0 42%, #fcf9f7 100%);
	color: var(--ptr-text);
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(10, 51, 44, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10, 51, 44, 0.035) 1px, transparent 1px);
	background-size: 3.5rem 3.5rem;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 58%);
}

.ptr-site-header {
	background: rgba(252, 249, 247, 0.82);
	border-bottom: 1px solid rgba(10, 51, 44, 0.08);
	backdrop-filter: blur(18px) saturate(1.2);
}

.ptr-brand {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.62rem;
	color: var(--ptr-forest);
	font-weight: 760;
	letter-spacing: -0.055em;
}

.ptr-brand::before {
	content: "";
	width: 1.05rem;
	height: 1.05rem;
	border-radius: 50%;
	background:
		radial-gradient(circle at 68% 70%, var(--ptr-accent) 0 28%, transparent 29%),
		linear-gradient(135deg, #0a332c 0%, #15715f 62%, #76e0b0 100%);
	box-shadow: 0 0 0 0.34rem rgba(80, 232, 168, 0.18);
}

.ptr-icon-button,
.ptr-index-bar-toggle,
.ptr-index-drawer-close {
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(10, 51, 44, 0.08);
	box-shadow: 0 0.45rem 1.2rem rgba(10, 51, 44, 0.06);
	color: var(--ptr-forest);
}

.ptr-icon-button:hover,
.ptr-icon-button:focus-visible,
.ptr-index-bar-toggle:hover,
.ptr-index-bar-toggle:focus-visible,
.ptr-index-drawer-close:hover,
.ptr-index-drawer-close:focus-visible {
	background: var(--ptr-accent-soft);
	color: var(--ptr-ink);
	transform: translateY(-1px);
}

.ptr-page-shell {
	padding-top: clamp(1.6rem, 4vw, 3rem);
}

.ptr-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	margin: 0 auto clamp(2rem, 5vw, 4rem);
	padding: clamp(3.6rem, 8vw, 7rem) clamp(1.35rem, 4vw, 4rem);
	border: 1px solid rgba(80, 232, 168, 0.18);
	border-radius: clamp(1.7rem, 4vw, 3.2rem);
	background:
		radial-gradient(circle at 16% 16%, rgba(80, 232, 168, 0.42), rgba(80, 232, 168, 0) 24rem),
		radial-gradient(circle at 82% 26%, rgba(255, 216, 0, 0.18), rgba(255, 216, 0, 0) 18rem),
		linear-gradient(135deg, #051714 0%, #0a332c 50%, #0f5040 100%);
	color: #fcf9f7;
	box-shadow: 0 2.4rem 5rem rgba(10, 51, 44, 0.22);
}

.ptr-hero::before,
.ptr-hero::after {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: -1;
}

.ptr-hero::before {
	inset: 1.1rem;
	border-radius: inherit;
	border: 1px solid rgba(255, 255, 255, 0.09);
}

.ptr-hero::after {
	right: -6rem;
	bottom: -6.5rem;
	width: min(42vw, 30rem);
	aspect-ratio: 1;
	border-radius: 50%;
	background:
		repeating-linear-gradient(90deg, rgba(80, 232, 168, 0.2) 0 1px, transparent 1px 1.25rem),
		radial-gradient(circle, rgba(80, 232, 168, 0.34), rgba(80, 232, 168, 0) 68%);
	transform: rotate(-18deg);
}

.ptr-hero-meta {
	color: rgba(252, 249, 247, 0.68);
	font-weight: 560;
	letter-spacing: -0.01em;
}

.ptr-hero-meta time {
	color: #ffffff;
}

.ptr-hero-title {
	max-width: 13ch;
	color: #ffffff;
	font-weight: 720;
	letter-spacing: -0.075em;
}

.ptr-hero-chip {
	min-height: 3.2rem;
	background: rgba(252, 249, 247, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: rgba(252, 249, 247, 0.82);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ptr-divider {
	background: rgba(10, 51, 44, 0.1);
}

.ptr-toolbar {
	margin-bottom: 0.5rem;
	padding: 1rem 1.1rem 1.15rem;
	border: 1px solid rgba(10, 51, 44, 0.08);
	border-radius: 1.5rem;
	background: rgba(255, 255, 255, 0.64);
	box-shadow: 0 1rem 2.5rem rgba(10, 51, 44, 0.06);
}

.ptr-toolbar-icon {
	background: var(--ptr-forest);
	color: #ffffff;
	box-shadow: inset 0 -0.8rem 1.8rem rgba(80, 232, 168, 0.12);
}

.ptr-toolbar-button:hover .ptr-toolbar-icon,
.ptr-toolbar-button:focus-visible .ptr-toolbar-icon {
	background: #136342;
	color: var(--ptr-accent);
}

.ptr-toolbar-label,
.ptr-toolbar-duration {
	color: var(--ptr-forest);
	font-weight: 650;
}

.ptr-toolbar-duration {
	border-left-color: rgba(10, 51, 44, 0.12);
}

.ptr-index-bar {
	background: rgba(252, 249, 247, 0.9);
	border-bottom: 1px solid rgba(10, 51, 44, 0.1);
	box-shadow: 0 0.8rem 1.7rem rgba(10, 51, 44, 0.05);
}

.ptr-index-bar-label {
	color: var(--ptr-forest);
	font-weight: 650;
}

.ptr-index-drawer {
	background: rgba(252, 249, 247, 0.98);
	border-bottom: 1px solid rgba(10, 51, 44, 0.12);
	box-shadow: 0 2rem 4rem rgba(10, 51, 44, 0.15);
}

.ptr-index-drawer-head,
.ptr-desktop-index-kicker,
.ptr-context-panel__kicker,
.ptr-search-overlay__eyebrow,
.ptr-listing-shell__eyebrow,
.ptr-search-page__eyebrow {
	color: #3b966f;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.ptr-index-link {
	color: rgba(10, 51, 44, 0.58);
	font-weight: 540;
}

.ptr-index-link:hover,
.ptr-index-link:focus-visible,
.ptr-index-link.is-active {
	color: var(--ptr-forest);
}

.ptr-index-link.is-active {
	text-decoration: underline;
	text-decoration-color: var(--ptr-accent);
	text-decoration-thickness: 0.18rem;
	text-underline-offset: 0.28em;
}

.ptr-index-links--drawer .ptr-index-link {
	color: rgba(10, 51, 44, 0.56);
}

.ptr-index-links--drawer .ptr-index-link.is-active {
	color: var(--ptr-forest);
}

.ptr-content-layout.has-index {
	gap: clamp(2rem, 5vw, 5rem);
}

.ptr-desktop-index-sticky {
	padding: 1rem;
	border: 1px solid rgba(10, 51, 44, 0.08);
	border-radius: 1.25rem;
	background: rgba(255, 255, 255, 0.56);
	box-shadow: 0 1rem 2.5rem rgba(10, 51, 44, 0.05);
}

.ptr-article {
	padding-top: clamp(0.5rem, 2vw, 1.4rem);
}

.ptr-article p,
.ptr-article li,
.ptr-article blockquote {
	color: #143c34;
	font-weight: 430;
	line-height: 1.7;
}

.ptr-article p:first-of-type {
	color: var(--ptr-forest);
	font-weight: 520;
}

.ptr-article a {
	color: #0f6651;
	text-decoration-color: rgba(80, 232, 168, 0.95);
	text-decoration-thickness: 0.12em;
	text-underline-offset: 0.18em;
}

.ptr-article a:hover,
.ptr-article a:focus-visible {
	color: #051714;
	background: linear-gradient(transparent 62%, rgba(80, 232, 168, 0.32) 62%);
	outline: none;
}

.ptr-article strong {
	color: var(--ptr-forest);
}

.ptr-article h2,
.ptr-article h3 {
	color: var(--ptr-forest);
}

.ptr-context-panel,
.ptr-listing-card,
.ptr-search-result {
	border-color: rgba(10, 51, 44, 0.1);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(248, 244, 240, 0.94)),
		radial-gradient(circle at 100% 0%, rgba(80, 232, 168, 0.18), rgba(80, 232, 168, 0) 18rem);
	box-shadow: 0 1.4rem 3.5rem rgba(10, 51, 44, 0.08);
}

.ptr-context-panel__title,
.ptr-listing-card h2,
.ptr-search-result h2 {
	color: var(--ptr-forest);
	font-weight: 740;
}

.ptr-context-panel__intro,
.ptr-context-panel__chain,
.ptr-search-result-card__excerpt,
.ptr-search-results__empty {
	color: var(--ptr-text-soft);
}

.ptr-context-item,
.ptr-search-result-card {
	background: rgba(255, 255, 255, 0.76);
	border-color: rgba(10, 51, 44, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.ptr-context-item__label {
	color: #3b966f;
	font-weight: 700;
}

.ptr-context-item__value {
	color: var(--ptr-forest);
	font-weight: 650;
}

.ptr-inline-figure__frame {
	background:
		radial-gradient(circle at 12% 15%, rgba(80, 232, 168, 0.75), rgba(80, 232, 168, 0) 21rem),
		linear-gradient(135deg, #051714 0%, #0a332c 46%, #15715f 100%);
	box-shadow: 0 2rem 4.5rem rgba(10, 51, 44, 0.24);
}

.ptr-inline-figure__canvas {
	background: rgba(252, 249, 247, 0.9);
}

.ptr-inline-figure__pane--left {
	background:
		linear-gradient(180deg, rgba(252, 249, 247, 0.98), rgba(229, 251, 241, 0.82)),
		linear-gradient(90deg, rgba(80, 232, 168, 0.18), rgba(80, 232, 168, 0));
}

.ptr-inline-figure__pane--left::before,
.ptr-inline-figure__pane--left::after {
	background: rgba(10, 51, 44, 0.1);
}

.ptr-inline-figure__pane--left::before {
	box-shadow:
		0 1.45rem 0 rgba(10, 51, 44, 0.07),
		0 2.9rem 0 rgba(10, 51, 44, 0.07),
		0 4.35rem 0 rgba(10, 51, 44, 0.07),
		0 5.8rem 0 rgba(10, 51, 44, 0.07);
}

.ptr-inline-figure__pane--right {
	background: linear-gradient(180deg, #0a332c, #051714 72%, #03100e);
}

.ptr-inline-figure__card {
	background:
		linear-gradient(180deg, rgba(80, 232, 168, 0.28), rgba(80, 232, 168, 0.08)),
		repeating-linear-gradient(180deg, rgba(80, 232, 168, 0.08) 0, rgba(80, 232, 168, 0.08) 10px, transparent 10px, transparent 20px);
	border-color: rgba(80, 232, 168, 0.36);
}

.ptr-inline-figure__card::before,
.ptr-inline-figure__card::after {
	background: rgba(229, 251, 241, 0.2);
}

.ptr-inline-figure__card::before {
	box-shadow:
		0 1.8rem 0 rgba(229, 251, 241, 0.14),
		0 3.6rem 0 rgba(229, 251, 241, 0.14);
}

.ptr-inline-figure__card::after {
	background: var(--ptr-accent);
}

.ptr-inline-figure__card--small {
	background: linear-gradient(180deg, rgba(255, 216, 0, 0.28), rgba(255, 216, 0, 0.1));
	border-color: rgba(255, 216, 0, 0.34);
}

.ptr-search-overlay__backdrop {
	background: rgba(5, 23, 20, 0.44);
	backdrop-filter: blur(18px) saturate(1.1);
}

.ptr-search-overlay__panel {
	background: rgba(252, 249, 247, 0.98);
	border-color: rgba(80, 232, 168, 0.24);
	box-shadow: 0 2rem 5rem rgba(5, 23, 20, 0.24);
}

.ptr-search-box,
.ptr-inline-search-form {
	background: rgba(255, 255, 255, 0.78);
	border-color: rgba(10, 51, 44, 0.1);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.ptr-search-box button,
.ptr-inline-search-form button {
	background: var(--ptr-forest);
	color: #ffffff;
	font-weight: 700;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.ptr-search-box button:hover,
.ptr-search-box button:focus-visible,
.ptr-inline-search-form button:hover,
.ptr-inline-search-form button:focus-visible {
	background: var(--ptr-accent);
	color: var(--ptr-ink);
	transform: translateY(-1px);
	outline: none;
}

.ptr-search-result-card:hover,
.ptr-search-result-card:focus-visible {
	background: #ffffff;
	border-color: rgba(80, 232, 168, 0.64);
	box-shadow: 0 1rem 2.2rem rgba(10, 51, 44, 0.08);
}

.ptr-site-footer {
	margin-top: 5rem;
	border-top: 0;
	background:
		radial-gradient(circle at 14% 12%, rgba(80, 232, 168, 0.2), rgba(80, 232, 168, 0) 18rem),
		linear-gradient(135deg, #051714 0%, #0a332c 100%);
	color: rgba(252, 249, 247, 0.72);
}

.ptr-site-footer__inner {
	color: rgba(252, 249, 247, 0.72);
}

.ptr-site-footer__brand > p:first-child {
	color: #ffffff;
	font-weight: 760;
}

.ptr-site-footer__ecosystem-label {
	color: var(--ptr-accent);
}

.ptr-site-footer__ecosystem a:hover,
.ptr-site-footer__ecosystem a:focus-visible {
	color: var(--ptr-accent);
}

.ptr-toast {
	background: var(--ptr-forest);
	color: #ffffff;
	box-shadow: 0 1.4rem 3rem rgba(10, 51, 44, 0.24);
}

.ptr-skip-link:focus {
	background: var(--ptr-forest);
	color: #ffffff;
	box-shadow: 0 1rem 2.4rem rgba(10, 51, 44, 0.18);
}

@media (max-width: 700px) {
	.ptr-page-shell {
		padding-top: 0.85rem;
	}

	.ptr-hero {
		margin-inline: -0.35rem;
		padding: 3rem 1.15rem 3.25rem;
		border-radius: 1.65rem;
	}

	.ptr-hero-title {
		max-width: 11ch;
	}

	.ptr-toolbar {
		padding: 0.9rem;
		border-radius: 1.3rem;
	}

	.ptr-desktop-index-sticky {
		box-shadow: none;
	}
}

/* Soft marfim reading mode */
:root {
	--ptr-bg: #fcf9f7;
	--ptr-surface: transparent;
	--ptr-surface-strong: #f8f4f0;
	--ptr-border: #e9e2dc;
	--ptr-border-strong: #d8cec5;
	--ptr-text: #0a332c;
	--ptr-text-soft: #5d6d68;
	--ptr-text-muted: #8d9994;
	--ptr-shadow: none;
}

body {
	background: #fcf9f7;
	color: var(--ptr-text);
}

body::before {
	display: none;
}

.ptr-site-header {
	background: rgba(252, 249, 247, 0.94);
	border-bottom: 1px solid rgba(10, 51, 44, 0.07);
	box-shadow: none;
}

.ptr-brand {
	gap: 0;
	color: var(--ptr-text);
}

.ptr-brand::before {
	display: none;
}

.ptr-icon-button,
.ptr-index-bar-toggle,
.ptr-index-drawer-close {
	background: transparent;
	border: 0;
	box-shadow: none;
}

.ptr-icon-button:hover,
.ptr-icon-button:focus-visible,
.ptr-index-bar-toggle:hover,
.ptr-index-bar-toggle:focus-visible,
.ptr-index-drawer-close:hover,
.ptr-index-drawer-close:focus-visible {
	background: rgba(10, 51, 44, 0.06);
	transform: none;
}

.ptr-page-shell {
	padding-top: clamp(3rem, 8vw, 6.5rem);
}

.ptr-hero {
	overflow: visible;
	margin: 0;
	padding: 0 0 clamp(1.4rem, 3.5vw, 2.4rem);
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--ptr-text);
	box-shadow: none;
}

.ptr-hero::before,
.ptr-hero::after {
	display: none;
}

.ptr-hero-meta {
	color: var(--ptr-text-soft);
	font-weight: 520;
}

.ptr-hero-meta time {
	color: var(--ptr-text);
}

.ptr-hero-title {
	max-width: 14ch;
	color: var(--ptr-text);
	font-weight: 640;
	letter-spacing: -0.07em;
}

.ptr-hero-chip {
	background: #f3ede7;
	border: 0;
	color: var(--ptr-text-soft);
	box-shadow: none;
}

.ptr-notes-card-slot {
	display: flex;
	justify-content: center;
	margin: clamp(0.75rem, 1.4vw, 1rem) auto 0;
}

.ptr-notes-card {
	--gh-notes-hover-scale: 1.035;
	--gh-notes-bubble-scale: 1.01;
	position: relative;
	isolation: isolate;
	transform-origin: center center;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	width: min(100%, 31rem);
	gap: 1.2rem;
	padding: 1.55rem 1.35rem;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 1.2rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(243, 248, 255, 0.36) 54%, rgba(236, 244, 255, 0.3));
	box-shadow: 0 12px 28px rgba(16, 42, 86, 0.1), 0 3px 10px rgba(16, 42, 86, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.82);
	color: #4b5563;
	text-align: center;
	text-decoration: none;
	backdrop-filter: blur(14px) saturate(138%);
	-webkit-backdrop-filter: blur(14px) saturate(138%);
	overflow: visible;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
	transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.24s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.ptr-notes-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
	background: radial-gradient(110% 90% at 12% 10%, rgba(255, 255, 255, 0.64) 0%, rgba(255, 255, 255, 0.2) 42%, rgba(255, 255, 255, 0) 76%), linear-gradient(160deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0) 68%);
	opacity: 0.9;
}

.ptr-notes-card::after {
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: calc(1.2rem + 4px);
	pointer-events: none;
	z-index: 1;
	opacity: 0.78;
	transform: scale(1);
	background: radial-gradient(120% 100% at 24% 18%, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.24) 36%, rgba(255, 255, 255, 0) 74%), rgba(232, 242, 255, 0.2);
	border: 1px solid rgba(160, 188, 236, 0.64);
	box-shadow: 0 16px 30px rgba(17, 39, 82, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.78), inset 0 -1px 0 rgba(126, 159, 214, 0.22);
	transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease;
}

.ptr-notes-card > * {
	position: relative;
	z-index: 2;
}

.ptr-notes-card:hover,
.ptr-notes-card:focus-visible,
.ptr-notes-card:focus-within,
.ptr-notes-card:active {
	border-color: rgba(15, 98, 254, 0.42);
	box-shadow: 0 20px 36px rgba(16, 42, 86, 0.16), 0 6px 16px rgba(16, 42, 86, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.88);
	color: #4b5563;
	transform: scale(var(--gh-notes-hover-scale));
	z-index: 3;
}

.ptr-notes-card:hover::after,
.ptr-notes-card:focus-visible::after,
.ptr-notes-card:focus-within::after,
.ptr-notes-card:active::after {
	opacity: 1;
	transform: scale(var(--gh-notes-bubble-scale));
}

.ptr-notes-card:focus-visible {
	outline: 2px solid rgba(15, 98, 254, 0.42);
	outline-offset: 3px;
}

.ptr-notes-card__copy {
	display: block;
	max-width: 29rem;
	margin: 0;
	color: #4b5563;
	font-size: 1.38rem;
	line-height: 1.52;
}

.ptr-notes-card__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-width: 18rem;
	padding: 0.78rem 1.45rem;
	border: 1px solid rgba(79, 116, 95, 0.28);
	border-radius: 999px;
	background: linear-gradient(160deg, rgba(247, 252, 248, 0.94), rgba(222, 239, 226, 0.72));
	color: #4e735f;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), 0 8px 18px rgba(54, 88, 68, 0.1);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1;
	pointer-events: none;
	transition: border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.ptr-notes-card__button::after {
	content: "↗";
	color: #4e735f;
	font-weight: 700;
	line-height: 1;
}

.ptr-notes-card:hover .ptr-notes-card__button,
.ptr-notes-card:focus-visible .ptr-notes-card__button,
.ptr-notes-card:focus-within .ptr-notes-card__button,
.ptr-notes-card:active .ptr-notes-card__button {
	border-color: rgba(79, 116, 95, 0.42);
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(210, 232, 216, 0.82));
	color: #456c58;
	box-shadow: inset 0 0 0 1px rgba(79, 116, 95, 0.1), 0 10px 22px rgba(54, 88, 68, 0.13);
}

.ptr-notes-card:hover .ptr-notes-card__button::after,
.ptr-notes-card:focus-visible .ptr-notes-card__button::after,
.ptr-notes-card:focus-within .ptr-notes-card__button::after,
.ptr-notes-card:active .ptr-notes-card__button::after {
	color: #456c58;
}

.ptr-toolbar {
	margin-bottom: 0;
	padding: 1.35rem 0 2rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.ptr-toolbar-icon {
	background: #eef8f2;
	color: var(--ptr-text);
	box-shadow: none;
}

.ptr-toolbar-button:hover .ptr-toolbar-icon,
.ptr-toolbar-button:focus-visible .ptr-toolbar-icon {
	background: #e5fbf1;
	color: var(--ptr-text);
}

.ptr-toolbar-label,
.ptr-toolbar-duration {
	color: var(--ptr-text);
	font-weight: 620;
}

.ptr-index-bar {
	background: rgba(252, 249, 247, 0.96);
	box-shadow: none;
}

.ptr-index-drawer {
	background: rgba(252, 249, 247, 0.985);
	box-shadow: none;
}

.ptr-desktop-index-sticky,
.ptr-context-panel,
.ptr-listing-card,
.ptr-search-result,
.ptr-search-overlay__panel,
.ptr-search-result-card,
.ptr-context-item {
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.ptr-desktop-index-sticky,
.ptr-context-panel,
.ptr-listing-card,
.ptr-search-result {
	border: 0;
}

.ptr-context-item,
.ptr-search-result-card {
	border: 1px solid rgba(10, 51, 44, 0.08);
}

.ptr-article p,
.ptr-article li,
.ptr-article blockquote {
	color: #183f37;
	font-weight: 430;
	line-height: 1.68;
}

.ptr-article p:first-of-type {
	color: #183f37;
	font-weight: 430;
}

.ptr-article a {
	color: #0f5040;
	text-decoration-color: rgba(59, 150, 111, 0.45);
	text-decoration-thickness: 1.5px;
}

.ptr-article a:hover,
.ptr-article a:focus-visible {
	color: #0a332c;
	background: transparent;
}

.ptr-index-link.is-active {
	text-decoration-color: #50e8a8;
	text-decoration-thickness: 0.12rem;
}

.ptr-inline-figure__frame,
.ptr-inline-figure__canvas,
.ptr-inline-figure__pane--left,
.ptr-inline-figure__pane--right,
.ptr-inline-figure__card,
.ptr-inline-figure__card--small {
	background: transparent;
	border-color: rgba(10, 51, 44, 0.1);
	box-shadow: none;
}

.ptr-inline-figure__frame {
	padding: 0;
}

.ptr-inline-figure__pane--left::before,
.ptr-inline-figure__pane--left::after,
.ptr-inline-figure__card::before,
.ptr-inline-figure__card::after {
	opacity: 0.25;
}

.ptr-search-overlay__backdrop {
	background: rgba(252, 249, 247, 0.74);
}

.ptr-search-overlay__panel {
	border: 1px solid rgba(10, 51, 44, 0.1);
	background: #fcf9f7;
	border-radius: 1.25rem;
}

.ptr-search-box,
.ptr-inline-search-form {
	background: #f8f4f0;
	box-shadow: none;
}

.ptr-search-box button,
.ptr-inline-search-form button {
	background: #0a332c;
	color: #ffffff;
}

.ptr-search-box button:hover,
.ptr-search-box button:focus-visible,
.ptr-inline-search-form button:hover,
.ptr-inline-search-form button:focus-visible {
	background: #0f5040;
	color: #ffffff;
	transform: none;
}

.ptr-site-footer {
	margin-top: 4rem;
	border-top: 1px solid rgba(10, 51, 44, 0.08);
	background: transparent;
	color: var(--ptr-text-soft);
}

.ptr-site-footer__inner {
	color: var(--ptr-text-soft);
}

.ptr-site-footer__brand > p:first-child,
.ptr-site-footer__ecosystem a:hover,
.ptr-site-footer__ecosystem a:focus-visible {
	color: var(--ptr-text);
}

.ptr-site-footer__ecosystem-label {
	color: var(--ptr-text-muted);
}

@media (max-width: 700px) {
	.ptr-page-shell {
		padding-top: clamp(2rem, 7vw, 3rem);
	}

	.ptr-hero {
		margin-inline: 0;
		padding: 0 0 clamp(1.2rem, 5vw, 2rem);
		border-radius: 0;
	}

	.ptr-hero-title {
		max-width: 11ch;
	}

	.ptr-notes-card-slot {
		margin-top: 0.65rem;
	}

	.ptr-notes-card {
		--gh-notes-hover-scale: 1.01;
		--gh-notes-bubble-scale: 1;
		width: 100%;
		gap: 1rem;
		padding: 1.35rem 1.15rem;
	}

	.ptr-notes-card::after {
		inset: -2px;
		border-radius: calc(1.2rem + 2px);
		opacity: 0.58;
		transform: scale(1);
	}

	.ptr-notes-card__button {
		width: min(100%, 20rem);
		min-width: 0;
	}

	.ptr-notes-card__copy {
		font-size: 1.02rem;
		line-height: 1.48;
	}

	.ptr-toolbar {
		padding: 1.1rem 0 1.8rem;
		border-radius: 0;
	}
}
