html { 
	font-size: var(--font-base);
}
h1,
.h1,
h2, 
.h2,
h3, 
.h3 { 
	--font-resize: .5;
	font-family: var(--font-family); 
	font-weight: var(--font-weight-bold);
	text-transform:lowercase;
	margin: 0;
}
h1,
.h1 { 
	font-size: calc(6.4em * var(--font-resize));
	line-height: 1.1;
}
h2, 
.h2 { 
  font-size: calc(4.8em * var(--font-resize));
	line-height: 1.2;
}
.h3, 
h3 { 
	--font-resize: .8;
  font-size: calc(2.4em * var(--font-resize));
	line-height: 1.3;
}
p,
.p, 
ul li {  
	font-family: var(--font-family); 
	font-weight: var(--font-weight-light);
	font-size: 1.6em;
}
input, 
textarea, 
select, 
label { 
	font-family: var(--font-family);
  font-weight: var(--font-weight-medium);
}
strong, 
b { 
	font-weight: var(--font-weight-medium);
}
@media only screen and (min-width: 600px) { 
	h1, 
	.h1,
	h2,
	.h2 { 
		--font-resize: .6;
	}
	h3, 
	.h3 { 
		--font-size: .9;
	}
}
@media only screen and (min-width: 992px) { 
	h1, 
	.h1,
	h2,
	.h2 { 
		--font-resize: .75;
	}
	h3, 
	.h3 { 
		--font-resize: 1;
	}
	p, 
	.p { 
		font-size: 1.8em;
	}
}
@media only screen and (min-width: 1200px) { 
	h1, 
	.h1,
	h2,
	.h2 { 
		--font-resize: 1;
	}
}
* { 
	box-sizing: border-box; 
}
.offset-text-lg { 
	transform: translateX(-6px);
}
@media only screen and (min-width: 1023px) { 
	.offset-text-lg { 
		transform: translateX(-12px);
	}
	.inline-break { 
		display:block;
	}
}
.offset-text-sm { 
	transform: translateX(-2px);
}
.brand-dot {
	position: relative;
	text-decoration: none;
	color: inherit;
}
.brand-dot:before {
  content: '';
  display: inline-block;
  transform: translateY(0);
  width: 0.2em;
  height: 0.2em;
  border-radius: 100%;
  background: rgb(var(--brand-primary));
	margin-right: 5px; 
}
.list { 
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.list--dash li:before { 
	content: '-'; 
	margin-right: 5px; 
}
.credit { 
	margin-top: 3rem;
}
.credit p { 
	font-size: 14px!important; 
	display: flex;
	align-items: center;
} 
.credit em {
	opacity: .7;
}
.credit__logo { 
	display: inline-block;
	opacity: 1; 
}
.credit__logo svg { 
	height: 1rem;
	width: auto;
	margin: 0 4px;
}
.credit__logo g { 
	fill: rgb(var(--brand-black));
}
.fade-out { 
	animation: fadeOut linear; 
	animation-timeline: view();
	animation-range: exit;
}
@keyframes fadeOut  { 
	to { 
		opacity: 0; 
	}
}
.form__container { 
	position: relative; 
	display: flex;
	flex-direction: column; 
	justify-content: center;  
}
.form__success { 
	opacity: 0; 
	position: absolute;
	pointer-events: none; 
}
.blur { 
	filter: blur(8px);
	animation-name: unblur; 
	animation-timing-function: ease;
	animation-delay: 3s;
	animation-iteration-count: 1; 
	animation-duration: .5s;
	/* animation-fill-mode: forwards; */
}
@-webkit-keyframes unblur { 
	0% { 
		filter: blur(8px);
	}
	100% { 
		filter: blur(0px)
	}
}
@keyframes unblur { 
	0% { 
		filter: blur(8px);
	}
	100% { 
		filter: blur(0px)
	}
}
@keyframes disappear { 
	0% { 
		opacity: 1; 
	}
	100% { 
		opacity: 0; 
	}
}
@-webkit-keyframes disappear { 
	0% { 
		opacity: 1; 
	}
	100% { 
		opacity: 0; 
	}
}
.form__success { 
	opacity: 0; 
	transition: all ease .3s; 
}
.form__inner.blur + .form__success { 
	opacity: 1; 
	animation-name: disappear; 
	animation-timing-function: ease;
	animation-delay: 3s;
	animation-iteration-count: 1; 
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.form__inner { 
	transition: all ease .3s;
}
.form__inner.hidden { 
	opacity: 0; 
}
.form__inner.hidden ~ .form__success { 
	opacity: 1;
}
.creator .form__container { 
	justify-content: flex-start; 
}
.creator .form__success p { 
	font-weight: var(--font-weight-light);
}
.fade-in {
	animation-name: fadeIn; 
	opacity: 0; 
	animation-timing-function: ease-in;
	animation-duration: .5s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
}
@-webkit-keyframes fadeIn { 
	0% { 
		opacity: 0;
	}
	100% { 
		opacity: 1; 
	}
}	
@keyframes fadeIn { 
	0% { 
		opacity: 0;
	}
	100% { 
		opacity: 1; 
	}
}	
.topbar__header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    padding: 1.4rem 1.6rem;
    background: rgba(var(--brand-white), .94);
    backdrop-filter: blur(8px);
    border-bottom: var(--ui-border-strong) solid rgb(var(--brand-black));
}

.topbar__header .brand-dot {
    text-decoration: none;
    font-size: 2.7rem;
    font-weight: 700;
    text-transform: lowercase;
}

.topbar__links {
    display: flex;
    align-items: center;
    gap: 0;
}

.topbar__link {
    display: inline-flex;
    align-items: center;
    font-size: 1.3rem;
    letter-spacing: .12em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity ease .2s;
}

.topbar__link:hover {
    opacity: .65;
}

.topbar__link--secondary {
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.45;
}

.topbar__links a:not(:last-child)::after {
    content: '•';
    margin: 0 .9rem;
    opacity: .45;
    color: rgba(var(--brand-black), .78);
}

.topbar__links .link-external {
    font-family: var(--font-family);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@media only screen and (min-width: 900px) {
    .topbar__header {
        padding: 1.6rem 2.4rem;
    }
}
.page-content {
    --prose-font-size: 1.75rem;
    --prose-line-height: 1.65;
}

.article-content.page-content {
    --prose-font-size: 1.85rem;
    --prose-line-height: 1.72;
}

.page-content > *:first-child {
    margin-top: 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    line-height: 1.15;
    margin: 0 0 1.4rem;
    font-weight: 600;
}

.page-content h4 {
    font-size: clamp(1.7rem, 2.2vw, 2.2rem);
    margin-top: 2rem;
}

.page-content h5 {
    font-size: clamp(1.5rem, 2vw, 1.95rem);
    margin-top: 1.8rem;
}

.page-content h6 {
    font-size: clamp(1.35rem, 1.7vw, 1.65rem);
    margin-top: 1.6rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.page-content p,
.page-content li,
.page-content blockquote {
    font-size: var(--prose-font-size);
    line-height: var(--prose-line-height);
}

.page-content p,
.page-content ul,
.page-content ol,
.page-content pre,
.page-content table,
.page-content blockquote {
    margin: 0 0 1.8rem;
}

.page-content ul,
.page-content ol {
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: .7rem;
}

.page-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-size: .92em;
    background: rgba(var(--brand-black), .08);
    padding: .15em .35em;
}

.page-content pre {
    overflow-x: auto;
    padding: 1.2rem;
    border: 2px solid rgba(var(--brand-black), .2);
    background: #f6f8f0;
}

.page-content pre code {
    background: transparent;
    padding: 0;
}

.page-content blockquote {
    position: relative;
    border-left: .35rem solid rgba(var(--brand-primary),.35);
    padding: 1.1rem 1.3rem 1.1rem 1.5rem;
    background: rgba(255, 255, 255, .25);
    border-radius: .4rem;
    margin-left: 0;
}

.page-content blockquote > *:last-child {
    margin-bottom: 0;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.45rem;
}

.page-content th,
.page-content td {
    border: 2px solid rgba(var(--brand-black), .16);
    padding: .8rem;
    text-align: left;
}
.link-external {
    text-decoration: none!important;
    font-size: inherit;
    line-height: inherit;
    text-transform: uppercase!important;
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    color: rgb(var(--brand-black));
    transition: all ease .3s;
}

.link-external:after {
    content: url("/assets/brand-arrow.svg");
    margin-left: .4em;
    display: inline-block;
    transition: all ease-out .3s;
    transform: rotate(0deg);
    color: rgb(var(--brand-primary));
}

.link-external:hover:after {
    transform: rotate(360deg);
}

html {
    font-size: var(--font-base);
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: var(--font-family);
    background: rgb(var(--brand-white));
    color: rgb(var(--brand-black));
}
a {
    color: inherit;
}
.article-shell {
    padding: 2.4rem 1.6rem 6rem;
    /* background-image:
        linear-gradient(rgba(var(--brand-black), .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--brand-black), .04) 1px, transparent 1px);
    background-size: 24px 24px; */
}
.article-content {
    max-width: 750px;
    margin: 0 auto;
}
.article-meta {
    display: flex;
    flex-direction: column;
    position: relative;
    /* gap: 1.2rem; */
    margin-bottom: 0;
}
.article-meta p { 
    margin-bottom: 0;
}

.article-meta__date {
    margin: 0;
    font-size: 1.3rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgb(var(--brand-black));
}
.article-share {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 40;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: .6rem;
}
.article-share__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgb(var(--brand-black));
    width: 3.6rem;
    height: 3.6rem;
    padding: 0;
    font-size: 0;
    font-family: inherit;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: rgba(var(--brand-white), .96);
    color: rgb(var(--brand-black));
    text-decoration: none;
    box-shadow: 2px 2px 0 rgba(var(--brand-black), .15);
    cursor: pointer;
}
.article-share__icon {
    width: 2rem;
    height: 2rem;
    display: block;
    border: 0 !important;
}
.article-share__button--copy.is-copied {
    background: rgb(var(--brand-black));
    color: rgb(var(--brand-white));
}
.article-share__button:hover {
    background: rgba(var(--brand-primary), .14);
}
.article-share__button:after {
    content: none !important;
}
.article-content h1,
.article-content h2,
.article-content h3 {
    text-transform: lowercase;
}
.article-content h1 {
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    margin-bottom: 2.4rem;
}
.article-content h2 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin-top: 3.2rem;
}
.article-content h3 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-top: 2.8rem;
}
.article-content hr {
    border: 0;
    height: 2px;
    background: rgb(var(--brand-black));
    margin: 3rem 0;
}
.article-content img {
    max-width: 100%;
    height: auto;
    border: 2px solid rgb(var(--brand-black));
}
.article-content a {
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.page-credit {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 1.6rem 3.2rem;
}
.page-credit .credit p {
    justify-content: center;
}
@media only screen and (min-width: 760px) {
    .article-shell {
        padding: 3.2rem 2rem 7rem;
    }
    .article-share {
        right: 2rem;
        bottom: 2rem;
    }
}
