/* =========================================================================
   Benedict Pascal (Lozen) — Portfolio
   Dependency-free stylesheet. Tokens → base → layout → components.
   ========================================================================= */

/* ---------------------------------------- tokens */
:root {
  --bg:            #ffffff;
  --fg:            #0a0a0a;
  --muted:         #f5f5f5;
  --muted-fg:      #6b6b6b;
  --border:        #e6e6e6;
  --border-strong: #d4d4d4;
  --accent:        #1a7f37;
  --accent-2:      #1d4ed8;
  --accent-soft:   rgba(26, 127, 55, .10);
  --card:          #ffffff;
  --dock-bg:       rgba(255, 255, 255, .72);
  --shadow-sm:     0 1px 2px rgba(0, 0, 0, .05);
  --shadow-md:     0 4px 14px rgba(0, 0, 0, .07);
  --shadow-lg:     0 10px 34px rgba(0, 0, 0, .12);

  --radius:   10px;
  --radius-lg: 14px;
  --maxw:     42rem;          /* 672px — the reference column width */

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --brand-gradient: linear-gradient(135deg, #9ee822 0%, #22b14c 45%, #1d4ed8 100%);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html.dark {
  --bg:            #0a0a0a;
  --fg:            #fafafa;
  --muted:         #171717;
  --muted-fg:      #a1a1a1;
  --border:        #242424;
  --border-strong: #333333;
  --accent:        #8fe01e;
  --accent-2:      #5b9df9;
  --accent-soft:   rgba(143, 224, 30, .14);
  --card:          #0f0f0f;
  --dock-bg:       rgba(16, 16, 16, .72);
  --shadow-sm:     0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md:     0 4px 14px rgba(0, 0, 0, .5);
  --shadow-lg:     0 10px 34px rgba(0, 0, 0, .6);
}

/* ---------------------------------------- reset + base */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: .9375rem;
  line-height: 1.6;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .25s var(--ease), color .25s var(--ease);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
strong { font-weight: 650; color: var(--fg); }
em { font-style: normal; color: var(--fg); font-weight: 550; }

::selection { background: var(--accent-soft); color: var(--fg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.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: absolute; left: 50%; top: 0;
  transform: translate(-50%, -120%);
  z-index: 100;
  background: var(--fg); color: var(--bg);
  padding: .6rem 1rem; border-radius: 0 0 var(--radius) var(--radius);
  font-size: .8125rem; font-weight: 600;
  transition: transform .2s var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

.nowrap { white-space: nowrap; }
.mono { font-family: var(--font-mono); font-size: .9em; letter-spacing: -.01em; }
.icon-sm { width: 15px; height: 15px; flex: none; }

/* ---------------------------------------- layout */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 3rem 1.5rem 8rem;
}

@media (min-width: 640px) {
  .container { padding: 6rem 1.5rem 9rem; }
}

.section { margin-bottom: 3.25rem; }

.section-title {
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 1.125rem;
}

.section-lede {
  color: var(--muted-fg);
  font-size: .9375rem;
  margin-bottom: 1.25rem;
  max-width: 38rem;
}

/* ---------------------------------------- hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.hero-text { flex: 1; min-width: 0; }

.hero-name {
  font-size: clamp(1.75rem, 6.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
  margin-bottom: .625rem;
}

.hero-tagline {
  color: var(--muted-fg);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 34rem;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: .875rem;
  font-size: .8125rem;
  color: var(--muted-fg);
}
.hero-meta .icon-sm { color: var(--accent); }

.hero-avatar img {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--muted);
}

@media (max-width: 480px) {
  .hero { flex-direction: column-reverse; align-items: flex-start; gap: 1.25rem; }
  .hero-avatar img { width: 84px; height: 84px; }
}

/* ---------------------------------------- prose */
.prose p {
  color: var(--muted-fg);
  margin-bottom: .875rem;
}
.prose p:last-child { margin-bottom: 0; }

/* ---------------------------------------- lens grid */
.lens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: .5rem;
}

.lens {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem .875rem;
  background: var(--card);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.lens:hover { border-color: var(--border-strong); transform: translateY(-2px); }

.lens-role {
  display: block;
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-mono);
  margin-bottom: .2rem;
}
.lens-q { display: block; font-size: .875rem; color: var(--muted-fg); }

/* ---------------------------------------- experience entries */
.entry-list { display: flex; flex-direction: column; gap: 1.5rem; }

.entry { display: flex; gap: .875rem; }

.entry-mark {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--muted);
  display: grid; place-items: center;
  font-size: .875rem; font-weight: 700;
  color: var(--muted-fg);
  margin-top: .1rem;
}

.entry-body { flex: 1; min-width: 0; }

.entry-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
}

.entry-org {
  font-size: .9375rem;
  font-weight: 650;
  letter-spacing: -.01em;
}

.entry-period {
  flex: none;
  font-family: var(--font-mono);
  font-size: .6875rem;
  color: var(--muted-fg);
  white-space: nowrap;
}

.entry-role {
  font-size: .8125rem;
  color: var(--muted-fg);
  margin-top: .05rem;
}

.entry-summary {
  font-size: .875rem;
  color: var(--muted-fg);
  margin-top: .625rem;
}

.bullets { margin-top: .625rem; display: flex; flex-direction: column; gap: .375rem; }

.bullets li {
  position: relative;
  padding-left: 1rem;
  font-size: .875rem;
  color: var(--muted-fg);
  line-height: 1.55;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: .1rem; top: .6rem;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border-strong);
}

@media (max-width: 480px) {
  .entry-head { flex-direction: column; align-items: flex-start; gap: .15rem; }
}

/* ---------------------------------------- skills */
.skill-groups { display: flex; flex-direction: column; gap: 1rem; }

.skill-label {
  font-family: var(--font-mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted-fg);
  margin-bottom: .5rem;
}

.chips { display: flex; flex-wrap: wrap; gap: .375rem; }

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  background: var(--muted);
  color: var(--fg);
  border-radius: 999px;
  padding: .1875rem .625rem;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.5;
  transition: border-color .18s var(--ease), background-color .18s var(--ease);
}
.chip:hover { border-color: var(--border-strong); }

/* ---------------------------------------- section intro (projects) */
.section-intro { text-align: center; margin-bottom: 2rem; }

.pill {
  display: inline-block;
  background: var(--fg);
  color: var(--bg);
  border-radius: 999px;
  padding: .1875rem .75rem;
  font-size: .6875rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}

.section-heading {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  margin: .875rem 0 .625rem;
}

.section-intro .section-lede { margin-inline: auto; }

/* ---------------------------------------- project cards */
.project-grid { display: flex; flex-direction: column; gap: .875rem; }

.project {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 1.125rem 1.25rem 1.25rem;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), transform .22s var(--ease);
}
.project:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.project-head { display: flex; align-items: flex-start; gap: .75rem; }

.project-index {
  flex: none;
  font-family: var(--font-mono);
  font-size: .6875rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 6px;
  padding: .25rem .4rem;
  line-height: 1;
  margin-top: .25rem;
}

.project-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.3;
}

.project-sub {
  font-size: .8125rem;
  color: var(--muted-fg);
  margin-top: .0625rem;
}

.project-desc {
  font-size: .875rem;
  color: var(--muted-fg);
  margin-top: .75rem;
  line-height: 1.6;
}

.project-more { margin-top: .25rem; }
.project-more[hidden] { display: none; }

.detail-label {
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--fg);
  margin-top: .875rem;
}

.more-btn {
  margin-top: .75rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: opacity .18s var(--ease);
}
.more-btn:hover { opacity: .72; }
.more-btn::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform .22s var(--ease);
}
.more-btn[aria-expanded="true"]::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.project-award {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: .4rem;
  margin-top: .875rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: .25rem .625rem;
}

.tags { margin-top: .875rem; }

/* ---------------------------------------- process ladder */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: .625rem;
  counter-reset: step;
}

.process li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: .75rem .875rem;
  transition: border-color .2s var(--ease);
}
.process li:hover { border-color: var(--border-strong); }

.step-n {
  flex: none;
  font-family: var(--font-mono);
  font-size: .6875rem;
  color: var(--muted-fg);
  padding-top: .125rem;
}

.step-t { font-size: .875rem; font-weight: 650; letter-spacing: -.01em; }
.step-d { font-size: .8125rem; color: var(--muted-fg); margin-top: .0625rem; }

/* ---------------------------------------- awards */
.award-list { display: flex; flex-direction: column; gap: .625rem; }

.award {
  display: flex;
  gap: .875rem;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: .875rem 1rem;
}

.award-mark {
  flex: none;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
}
.award-mark svg { width: 17px; height: 17px; }

.award-t { font-size: .875rem; font-weight: 650; letter-spacing: -.01em; }
.award-d { font-size: .8125rem; color: var(--muted-fg); margin-top: .125rem; }

/* ---------------------------------------- values */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .625rem;
}

.value {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: .875rem 1rem;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.value:hover { border-color: var(--border-strong); transform: translateY(-2px); }

.value-t { font-size: .875rem; font-weight: 650; letter-spacing: -.01em; }
.value-d { font-size: .8125rem; color: var(--muted-fg); margin-top: .25rem; }

/* ---------------------------------------- contact */
.contact { text-align: center; padding: 1rem 0; }

.contact-heading {
  font-size: clamp(1.5rem, 5.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.15;
  margin: .875rem 0 .75rem;
}

.contact-lede {
  color: var(--muted-fg);
  font-size: .9375rem;
  max-width: 34rem;
  margin: 0 auto 1.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: .5rem .875rem;
  font-size: .8125rem;
  font-weight: 600;
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover { border-color: var(--border-strong); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

.btn-primary {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.btn-primary:hover { box-shadow: var(--shadow-md); }

/* ---------------------------------------- footer */
.footer {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .75rem;
  color: var(--muted-fg);
}
.footer-note { margin-top: .25rem; opacity: .75; }

/* ---------------------------------------- dock */
.dock {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: .1875rem;
  padding: .3125rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--dock-bg);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  backdrop-filter: blur(14px) saturate(180%);
  box-shadow: var(--shadow-lg);
}

.dock-item {
  position: relative;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--muted-fg);
  transition: background-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.dock-item svg { width: 17px; height: 17px; }
.dock-item:hover { background: var(--muted); color: var(--fg); transform: translateY(-3px); }
.dock-item.active { color: var(--accent); background: var(--accent-soft); }

/* tooltip */
.dock-item::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 9px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--fg);
  color: var(--bg);
  font-size: .6875rem;
  font-weight: 600;
  padding: .25rem .5rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .16s var(--ease), transform .16s var(--ease);
}
.dock-item:hover::after,
.dock-item:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dock-sep {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 .25rem;
}

/* theme icon swap */
html.light .icon-sun,
html.dark  .icon-moon { display: none; }

@media (max-width: 400px) {
  .dock { gap: 0; padding: .25rem; }
  .dock-item { width: 34px; height: 34px; }
  .dock-item svg { width: 16px; height: 16px; }
  .dock-sep { margin: 0 .125rem; }
}

/* ---------------------------------------- reveal animation */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(5px);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  transition:
    opacity .6s var(--ease),
    transform .6s var(--ease),
    filter .6s var(--ease);
}

/* stagger the project cards as the grid comes into view */
html.js .project-grid .project { opacity: 0; transform: translateY(12px); }
html.js .project-grid.is-visible .project {
  opacity: 1;
  transform: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
html.js .project-grid.is-visible .project:nth-child(1) { transition-delay: .04s; }
html.js .project-grid.is-visible .project:nth-child(2) { transition-delay: .08s; }
html.js .project-grid.is-visible .project:nth-child(3) { transition-delay: .12s; }
html.js .project-grid.is-visible .project:nth-child(4) { transition-delay: .16s; }
html.js .project-grid.is-visible .project:nth-child(5) { transition-delay: .20s; }
html.js .project-grid.is-visible .project:nth-child(6) { transition-delay: .24s; }
html.js .project-grid.is-visible .project:nth-child(7) { transition-delay: .28s; }
html.js .project-grid.is-visible .project:nth-child(8) { transition-delay: .32s; }
html.js .project-grid.is-visible .project:nth-child(9) { transition-delay: .36s; }
html.js .project-grid.is-visible .project:nth-child(10) { transition-delay: .40s; }

/* ---------------------------------------- motion / print */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html.js [data-reveal],
  html.js .project-grid .project {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media print {
  .dock, .skip-link { display: none !important; }
  .container { max-width: none; padding: 0; }
  .project, .value, .process li, .award, .lens { break-inside: avoid; }
  html.js [data-reveal],
  html.js .project-grid .project { opacity: 1 !important; transform: none !important; filter: none !important; }
  .project-more[hidden] { display: block !important; }
}

/* ---------------------------------------- project media */
.project-media {
  display: block;
  margin: .875rem -.25rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--muted);
  cursor: zoom-in;
}

.project-media img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  background: var(--muted);
  transition: transform .4s var(--ease);
}
.project-media:hover img { transform: scale(1.025); }

/* ---------------------------------------- design gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .625rem;
}

.gallery figure {
  position: relative;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--muted);
  cursor: zoom-in;
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.gallery figure:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.5rem .625rem .5rem;
  font-size: .6875rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, .82), rgba(0, 0, 0, 0));
  line-height: 1.35;
}

/* ---------------------------------------- lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, .86);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--ease), visibility .22s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox img {
  max-width: min(1000px, 100%);
  max-height: 86vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .6);
  transform: scale(.97);
  transition: transform .22s var(--ease);
}
.lightbox.open img { transform: scale(1); }

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .82);
  font-size: .8125rem;
  text-align: center;
  max-width: 90%;
}

.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  transition: background-color .18s var(--ease);
}
.lightbox-close:hover { background: rgba(255, 255, 255, .24); }
.lightbox-close svg { width: 18px; height: 18px; }

/* ---------------------------------------- footer brand */
.footer-brand {
  display: block;
  width: 168px;
  height: auto;
  margin: 0 auto 1rem;
  border-radius: 8px;
  opacity: .95;
}
html.light .footer-brand {
  /* the logo artwork sits on black — give it a matching plate in light mode */
  background: #050505;
  padding: .5rem .625rem;
}

/* ---------------------------------------- project links */
.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: .375rem;
  margin-top: .875rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: .3125rem;
  border: 1px solid var(--border);
  background: var(--muted);
  border-radius: 999px;
  padding: .25rem .625rem .25rem .5rem;
  font-size: .75rem;
  font-weight: 600;
  transition: border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.project-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.project-link svg { width: 13px; height: 13px; flex: none; }

.live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, .18);
  flex: none;
}

.quote {
  display: block;
  margin-top: .5rem;
  padding-left: .625rem;
  border-left: 2px solid var(--accent);
  font-style: italic;
  color: var(--fg);
}

.entry-link {
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-underline-offset: 3px;
  transition: color .18s var(--ease), text-decoration-color .18s var(--ease);
}
.entry-link:hover { color: var(--accent); text-decoration-color: var(--accent); }
