* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font: var(--text-base)/1.45 var(--font-body);
}

button,input,select,textarea {
    font: inherit;
}

button,a,input,select,textarea,summary {
    -webkit-tap-highlight-color: var(--clear);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: var(--primary);
}

button,summary {
    cursor: pointer;
}

button {
    color: inherit;
}

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

h1,h2,h3,p {
    margin: 0 0 var(--space-3);
}

h1,h2,h3 {
    line-height: 1.12;
    letter-spacing: -.035em;
}

h1 {
    font-size: var(--text-title);
}

h2 {
    font-size: 1.7rem;
}

h3 {
    font-size: 1.35rem;
}

h1:last-child,h2:last-child,h3:last-child,p:last-child {
    margin-bottom: 0;
}

:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

[hidden] {
    display: none !important;
}

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

.skip-link {
    position: fixed;
    left: 1rem;
    top: -100px;
    z-index: 100;
    padding: 1rem;
    background: var(--surface);
}

.skip-link:focus {
    top: 1rem;
}

.lede {
    font-size: var(--text-lede);
    color: var(--muted);
    line-height: 1.35;
}

.muted,small,time {
    color: var(--muted);
    font-size: var(--text-small);
}

.preserve-lines {
    white-space: pre-line;
    overflow-wrap: anywhere;
}

.accent-link,.availability {
    color: var(--primary);
}

.availability {
    color: var(--green);
}

.sprout {
    display: inline-block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    image-rendering: pixelated;
    object-fit: contain;
    vertical-align: middle;
    margin-left: 4px;
}

.eyebrow {
    text-transform: uppercase;
    color: var(--primary);
    font-size: .85rem;
    letter-spacing: .05em;
}

blockquote {
    margin: 1.5rem 0;
    font-style: italic;
}

progress {
    accent-color: var(--primary);
    height: 11px;
    width: 100%;
    border: 0;
    border-radius: var(--radius-pill);
    background: var(--track);
}

progress::-webkit-progress-bar {
    background: var(--track);
    border-radius: var(--radius-pill);
}

progress::-webkit-progress-value {
    background: var(--primary);
    border-radius: var(--radius-pill);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,*::before,*::after {
        transition: none !important;
        animation: none !important;
    }
}
