:root {
    --now-bg: rgb(251, 254, 249);
    --now-text: rgb(45, 55, 72);
    --now-muted: rgb(113, 128, 150);
    --now-border: oklch(92.8% 0.006 264.531);
    --now-accent: rgb(255, 69, 0);
}

body {
    background-color: var(--now-bg);
    color: var(--now-text);
    font-family: "Albert Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
}

h1, h2, h3 {
    font-weight: 500;
    line-height: 1.25;
}

h1 {
    font-size: 1.75rem;
    margin: 0 0 0.25rem;
}

h2 {
    font-size: 1.25rem;
    margin: 2.5rem 0 0.75rem;
}

h3 {
    font-size: 1.05rem;
    margin: 2rem 0 0.5rem;
}

p {
    margin: 0 0 1rem;
}

a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: var(--now-border);
    text-underline-offset: 0.15em;
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

a:hover {
    text-decoration-color: var(--now-accent);
}

.back-link {
    margin: 0 0 2.5rem;
    font-size: 0.9rem;
}

.text-link {
    color: var(--now-action);
}

.post-date {
    color: var(--now-muted);
    font-size: 0.85rem;
}

header {
    padding: 3rem 1rem 0;
    max-width: 68ch;
    margin-inline: auto;
}

header h1 + .post-date {
    display: block;
    margin-bottom: 1rem;
}

.post-list li {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--now-border);
}

.post-list li:first-child {
    border-top: 1px solid var(--now-border);
}

.post-list a {
    text-decoration: none;
}

.post-list a:hover {
    text-decoration: underline;
    text-decoration-color: var(--now-accent);
}

blockquote {
    border-left-color: var(--now-border);
    color: var(--now-muted);
}

img {
    display: block;
    margin-inline: auto;
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 0.5rem;
    filter: grayscale(100%);
    transition: filter 0.25s ease;
}

img:hover {
    filter: grayscale(0%);
}

.muted {
    color: var(--now-muted);
}

#nav-logo-container {
    display: inline-flex;
    align-self: flex-start;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}
#nav-logo-container:hover  { transform: rotate(-6deg); filter: brightness(1.1); }
/* #nav-logo-container:active { transform: rotate(13deg); filter: brightness(.9); } */

#nav-logo-text {
    font-weight: 700;
    font-size: 1rem;
    padding: .375rem;
    background: 
        radial-gradient(circle, rgba(255, 113, 18, 0.5) 0%, rgba(255, 69, 0, 0.5) 100%),
        linear-gradient(to bottom right, rgb(255, 122, 55), rgb(255, 197, 7));     
}

.min-28 {
    min-width: 28px;
    min-height: 28px;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.border-thick-black {
    border: 2px solid black; 
}

.flex-align-center { align-items: center }

.font-wider { letter-spacing: 0.05em }