@charset "UTF-8";
/* bencrowder.net (processed via SASS) */
/* ----------------------------------------------------------------*/
/* Variables */
:root {
  /* ----------------------*/
  /* Colors */
  --text-color: hsl(15, 4%, 18%);
  --lighter-text-color: hsl(37, 6%, 26%);
  --gray-color: hsl(48, 8%, 30%);
  --primary-color: hsl(355, 67%, 42%);
  --primary-color-light: hsl(208, 65%, 86%);
  --accent-color: hsl(19, 29%, 23%);
  --accent-color-dark: hsl(5, 3%, 23%);
  --accent-color-light: hsl(5, 3%, 80%);
  --separator-color: hsl(43, 60%, 75%);
  --separator-faint-color: hsl(43, 30%, 85%);
  --border-color: var(--separator-color);
  --underline-color: var(--separator-color);
  /* Frame, nav, footer */
  --frame-link-color: var(--accent-color-dark);
  --frame-underline-color: var(--underline-color);
  --nav-header-color: hsl(213, 44%, 44%);
  --footer-color: var(--gray-color);
  --footer-link-color: var(--gray-color);
  /* Links */
  --link-color: var(--primary-color);
  --link-hover-color: var(--accent-color-dark);
  --link-alternate-hover-color: var(--accent-color-dark);
  --link-underline-color: var(--underline-color);
  /* Lists */
  --list-bullet-color: hsl(0, 0%, 30%);
  /* Tags */
  --tag-color: var(--gray-color);
  --tag-hash-color: hsl(149, 30%, 68%);
  /* ----------------------*/
  /* Layout */
  /* Side padding at smaller sizes */
  --side-padding: 1rem;
}

/* ----------------------------------------------------------------*/
/* Transitional layout */
@media screen and (min-width: 30em) {
  :root {
    --side-padding: 3rem;
  }
}
@media screen and (min-width: 40em) {
  :root {
    --side-padding: 4rem;
  }
}
@media screen and (min-width: 45em) {
  :root {
    --side-padding: 5rem;
  }
}
/* ----------------------------------------------------------------*/
/* Overall */
@font-face {
  font-family: ebcg;
  src: url("/fonts/ebc-garamond/ebc-garamond-regular.woff2?v202601a") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: ebcg;
  src: url("/fonts/ebc-garamond/ebc-garamond-italic.woff2?v202601a") format("woff2");
  font-weight: 400;
  font-style: italic;
}
* {
  box-sizing: border-box;
}

html {
  background: #faf8f5;
  color: var(--text-color);
  font-family: ebcg, serif;
  font-size: 147%;
  font-variant-numeric: oldstyle-nums;
  line-height: 1.25;
}

body {
  margin: 0;
  padding: 0;
}

.separator {
  color: var(--separator-faint-color);
  margin-inline: 1pt;
}

.no-break {
  white-space: nowrap;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: pretty;
}

/* ----------------------------------------------------------------*/
/* Logo */
a#logo {
  position: absolute;
  height: 30px;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
a#logo img {
  display: block;
  width: 100%;
}
a#logo img.wide {
  display: none;
}
@media screen and (min-width: 600px) {
  a#logo img.wide {
    display: block;
  }
  a#logo img.thin {
    display: none;
  }
}

/* ----------------------------------------------------------------*/
/* Header */
body > header {
  display: flex;
  font-size: 0.9rem;
  font-variant-caps: all-small-caps;
  justify-content: space-between;
  letter-spacing: 0.02rem;
  padding: 1rem var(--side-padding) 0rem var(--side-padding);
}
body > header .page-title {
  align-items: center;
  display: flex;
  gap: 1pt;
}
body > header .page-title a.logo {
  display: flex;
  margin-right: 5pt;
}
body > header .page-title img {
  max-height: 1rem;
}
body > header .page-title a {
  color: var(--frame-link-color);
  line-height: 1.2;
}
body > header .page-title a:hover {
  /* Use the link color since it's noticeably different */
  color: var(--link-color);
}
body > header .separator {
  color: var(--separator-color);
  font-size: 0.8rem;
  line-height: 1.2;
  margin-inline: 3pt;
}
body > header a.area {
  text-transform: lowercase;
}
body > header a.area:hover {
  color: var(--link-color);
}
body > header a.menu-link {
  color: var(--text-color);
}
body > header a.menu-link:hover {
  color: var(--link-color);
}

/* ----------------------------------------------------------------*/
/* Menu */
nav#menu, body > footer > nav {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 1rem;
}
nav#menu ul, body > footer > nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav#menu ul li, body > footer > nav ul li {
  display: inline;
  hyphens: none;
  margin-right: 0.4rem;
  padding: 0;
}
nav#menu ul li::before, body > footer > nav ul li::before {
  content: none;
}

body > nav#menu {
  margin-top: 0.25rem;
  margin-bottom: 0;
  padding: 0rem var(--side-padding);
}

/* ----------------------------------------------------------------*/
/* Content area */
body > main {
  border-radius: 3pt;
  padding: 1.5rem var(--side-padding) 2.5rem var(--side-padding);
}

/* ----------------------------------------------------------------*/
/* Footer */
body > footer {
  border-top: solid 1px var(--border-color);
  color: var(--footer-color);
  font-size: 0.8rem;
  line-height: 1.3;
  margin-top: 1.5rem;
  padding: 1rem var(--side-padding) 12rem var(--side-padding);
}
body > footer a {
  display: inline;
  line-height: 1.4;
}
body > footer a:hover {
  color: var(--link-color);
}
body > footer .metadata {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body > footer .metadata * {
  line-height: 1.2;
}
body > footer .metadata a.license-link {
  color: var(--footer-link-color);
  text-decoration-color: var(--border-color);
  font-variant-caps: all-small-caps;
  letter-spacing: 0.04rem;
}
@media screen and (min-width: 800px) {
  body > footer .metadata {
    flex-direction: row;
    justify-content: space-between;
  }
  body > footer .metadata .metadata p {
    text-align: right;
  }
}

/* ----------------------------------------------------------------*/
/* Layout */
@media screen and (min-width: 50em) {
  html {
    font-size: 155%;
  }

  body {
    margin-left: auto;
    margin-right: auto;
    max-width: 30rem;
  }

  :root {
    --side-padding: 0;
  }
}
/* ----------------------------------------------------------------*/
/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-color);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: 2rem;
  line-height: 1.05;
  margin: 1.75rem 0 1.2rem;
}

h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 0.6rem;
}

h3 {
  font-size: 1.25rem;
  margin: 1.75rem 0 0.6rem;
}

h4 {
  font-size: 1rem;
  margin: 1.75rem 0 0.6rem;
}

/* Headings shouldn't have a top margin if they're the first element
 * in their parent element */
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child {
  margin-top: 0;
}

h1 + h2 {
  margin-top: 1rem;
}

/* Collapse top margins on paragraphs and lists after headings, so
 * the heading's bottom margin will dominate. Leave h1s out because
 * we want more spacing on the page titles. */
h2 + p,
h3 + p,
h4 + p {
  margin-top: 0;
}

h2 + ul,
h3 + ul,
h4 + ul {
  margin-top: 0;
}

/* ----------------------------------------------------------------*/
/* Text miscellanea */
p, li, blockquote, .intro {
  /* Hyphenation */
  hyphens: auto;
}

p {
  margin-block: 1rem;
  /* Clear out top margins for first paragraph in a parent */
}
p:first-child, p:first-of-type {
  margin-top: 0;
}

/* Links */
a {
  color: var(--link-color);
  text-decoration: underline;
  text-decoration-color: var(--link-underline-color);
  text-decoration-skip: ink;
  text-decoration-skip-ink: all;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--link-hover-color);
}

/* Blockquotes */
blockquote {
  margin-block: 1lh;
  margin-inline-start: .75rem;
  border-inline-start: solid 1pt var(--accent-color-light);
  padding-inline-start: .75rem;
  /* Handle nesting */
}
/*
blockquote::before {
  color: #b9d392;
  content: "“";
  float: left;
  margin-right: -1ch;
  left: -1.6rem;
  position: relative;
  font-size: 2.6rem;
  top: -0.7rem;
}
*/
blockquote:first-child {
  margin-top: 0;
}
blockquote:last-child {
  margin-bottom: 0;
}
blockquote blockquote {
  border-left-color: #e6cacf;
  margin-left: 2rem;
}
blockquote blockquote::before {
  color: #a4bcda;
}

/* Sections */
.section:not(first-child) {
  border-top: solid 1px var(--border-color);
  margin-top: 2.2rem;
  padding-top: 2rem;
}

/* Reading log */
details + .section.reading-year {
  border-top: none;
  padding-top: 0;
}

/* Fix for first section after title */
h1 + .section {
  border-top: none;
  margin-top: 1.5rem;
  padding-top: 0;
}

/* Introduction */
.intro {
  font-style: italic;
  margin-block-end: 1.5rem;

  &.compact {
    margin-block-end: 0.75rem;
  }
}

/* Subtitle */
.sub {
  color: var(--gray-color);
  font-size: 0.9em;
  /* Use em because we want it relative to whatever it's with */
  margin: 0.1rem 0 0;
  line-height: 1.3;
  padding-bottom: 1px;
  /* Fix for clipped underlines */
}

/* Medium-small subtitle */
.submed {
  color: #afaa9d;
  font-size: 0.8em;
  /* Use em because we want it relative to whatever it's with */
  margin: 0;
  line-height: 1.2;
}

/* Small subtitle */
.subsmall {
  color: #b8ad94;
  font-size: 0.7em;
  /* Use em because we want it relative to whatever it's with */
  margin: 0;
  line-height: 1.2;
}

/* Colon-delimited lists */
.colon-list {
  color: #b3b3b3;
}
.colon-list span {
  color: #4d4d4d;
}

/* Selection */
::selection {
  background: var(--link-color);
  color: white;
}

/* Rules */
hr {
  background: #cccccc;
  border-width: 0;
  height: 0.75pt;
  margin: 2rem auto;
  text-align: center;
  width: 80%;
}

/* Superscript/subscript */
sup,
sub {
  position: relative;
  vertical-align: 0;
}

sup {
  top: -0.9ex;
}

sub {
  top: 0.9ex;
}

/* Author names on book project pages */
h1 + .author, figure.thumbnail + .author {
  font-style: italic;
  color: #333333;
}

h1:has(~ .author) {
  margin-bottom: 0.2rem;
}

/* Small caps*/
.smcp {
  font-variant: all-small-caps;
  letter-spacing: 0.05rem;
}

/* ----------------------------------------------------------------*/
/* Lists */
ul {
  padding-left: 0.25rem;
  /* Override default list appearance */
  --card-inline-gap: 1.5rem;
  --card-block-gap: 0.75rem;
  /* 3/5 columns, used on reading page */
  /* 2/3 columns, used on blog archive page */
  /* 1/2 columns, used on project pages for tags */
  /* Expanded lists (more padding), used on blog archive page */
  /* Compact lists (less padding), used on reading page */
  /* Linear */
  /* Reading page styles */
}
ul li {
  line-height: 1.3;
  list-style: none;
  margin-left: 0;
  padding-left: 1rem;
  position: relative;
  overflow: hidden;
}
ul li::before {
  content: "•";
  color: var(--list-bullet-color);
  position: absolute;
  left: 0.25rem;
  top: 0.05rem;
}
ul li + li {
  margin-top: 0.3rem;
}
ul li a.see-all {
  font-style: italic;
}
ul li ul {
  margin-top: 0.5rem;
}
ul.cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--card-block-gap) var(--card-inline-gap);
  margin: 0.5rem 0 0;
  padding-left: 0;
  justify-content: start;
}
ul.cards li {
  /* Reset list elements */
  margin: 0;
  padding: 0;
  border-radius: 4pt;
  width: 100%;
}
ul.cards li::before {
  content: none;
}
@media screen and (min-width: 800px) {
  ul.cards li {
    width: calc(50% - var(--art-inline-gap));
    height: calc(50% - var(--art-block-gap));
  }
}
ul li.card {
  align-items: start;
  border-radius: 4pt;
  display: flex;
  gap: 0.55rem;
}
@media screen and (min-width: 800px) {
  ul li.card {
    width: calc(50% - var(--card-inline-gap));
    height: calc(50% - var(--card-block-gap));
  }
}
ul li.card img {
  border-radius: 4pt;
  display: block;
  height: 58px;
  max-width: 58px;
  mix-blend-mode: multiply;
  width: 58px;
}
ul li.card > a {
  border-radius: 3pt;
  margin: 1px;
  mix-blend-mode: multiply;
  outline: solid 1px rgba(0 0 0 / 0.05);
}
ul li.card > a > img {
  margin: -1px;
}
ul li.card img:hover {
  filter: brightness(1.05) saturate(1.05);
}
ul li.card img.border {
  border: solid 1px var(--separator-faint-color);
}
ul li.card > div {
  display: flex;
  flex-direction: column;
  gap: 2pt;
  line-height: 1.1;
}
ul li.card > div a cite {
  word-break: break-word;
}
ul li.card > div .sub {
  font-size: 0.85rem;
  line-height: 1.1;
  margin: 0;
}
@media screen and (min-width: 700px) {
  ul.collected-talks {
    columns: 2;
  }
}
ul.collected-talks li {
  padding: 0;
}
ul.collected-talks li::before {
  content: none;
}
ul.collected-talks li + li {
  margin-top: 0.6rem;
}
ul.columns-5 {
  /* Use three columns at smaller sizes */
  column-count: 3;
  /* Use five at larger sizes */
}
@media screen and (min-width: 30em) {
  ul.columns-5 {
    column-count: 5;
  }
}
ul.columns-3 {
  /* Use two columns at smaller sizes */
  column-count: 2;
  /* Use three columns at larger sizes */
}
@media screen and (min-width: 30em) {
  ul.columns-3 {
    column-count: 3;
  }
}
ul.columns-2 {
  /* Use two columns at larger sizes */
}
@media screen and (min-width: 30em) {
  ul.columns-2 {
    column-count: 2;
  }
}
ul.expanded li + li {
  margin-top: 1.2rem;
}
ul.compact li {
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0.2rem;
}
ul.linear {
  padding-left: 0;
}
ul.linear li {
  line-height: 1.1;
  margin-left: 1rem;
  overflow: initial;
  padding-left: 0;
  text-indent: -1rem;
}
ul.linear li + li {
  margin-top: 0.5rem;
}
ul.linear li:not(.separated) > a {
  margin-right: 0.4rem;
}
ul.linear li .sub {
  line-height: 1.2;
}
ul.linear li::before {
  content: none;
}
ul.reading {
  list-style: none;
  padding: 0;
}
ul.reading li {
  line-height: 1.2;
  margin-bottom: 0.35rem;
  margin-left: 1.25rem;
  text-indent: -1.25rem;
  overflow: initial;
  padding: 0;
}
ul.reading li.hidden {
  display: none;
}
ul.reading li::before {
  content: none;
}
ul.reading .book-title a {
  color: inherit;
}
ul.reading .book-title a:hover {
  color: var(--link-color);
}
ul.reading .star {
  display: inline-block;
  font-size: 0.7rem;
  line-height: 1.4;
  margin-left: -0.8rem;
  margin-right: 0.2rem;
  margin-top: 0.2rem;
  width: 0.8em;
}
@media screen and (min-width: 30em) {
  ul.reading .star {
    margin-top: 0.3rem;
  }
}

ol li {
  line-height: 1.25;
}
ol li + li {
  margin-top: 0.45rem;
}

/* ----------------------------------------------------------------*/
/* Images & video */
figure {
  margin: 1lh 0;
  /* Keep images from overflowing the page */
  /* Hover */
  /* Border around images that need it */
  /* Round images, used pretty much only on about page */
  /* Floating images to the right, used for about page and thumbnails */
  /* Zero out top margins on headings following figures (project pages, etc.) */
  /* Thumbnails are a bit smaller */
  /* Smaller */
  /* And small images are even smaller (used on the Collected Talks page) */
  /* Used on the Collected Talks detail pages */
  /* Marginless drop the margins (used on the Collected Talks page) */
  /* Clamp vertical size, for phone screenshots on blog */
}
figure img {
  max-width: 100%;
}
figure:hover a img {
  filter: brightness(1.05) saturate(1.05);
}
figure.border img {
  border: solid 0.5pt #999999;
}
figure.round img {
  border-radius: 100%;
}
figure.right {
  float: right;
  margin: 0 0 1.5rem 1.5rem;
  max-width: 10rem;
  width: 30%;
}
figure + h1, figure + h2 {
  margin-top: 0;
}
figure.thumbnail {
  width: 25%;
}
figure.smaller {
  width: 18%;
}
figure.small {
  width: 10%;
}
figure.collected-talks {
  margin-left: 0.5rem;
  margin-bottom: 0.5rem;
  width: 90px;
}
figure.collected-talks img {
  border-radius: 100%;
}
figure.collected-talks.small {
  width: 45px;
}
figure.toc {
  float: left;
  margin: 0;
  margin-right: 0.65rem;
}
figure.clampvert img {
  max-height: 25rem;
}

iframe {
  max-width: 100%;
}

/* ----------------------------------------------------------------*/
/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 1.5rem 0;
  overflow-x: auto;
  max-width: 100%;
}

table * {
  font-variant-numeric: initial;
}

th {
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 400;
  text-align: left;
  border-bottom: solid 1px var(--border-color);
  padding: 0 0.25rem 0.4rem 0;
  line-height: 1.2;
}
@media screen and (min-width: 50em) {
  th {
    padding-right: 1.25rem;
  }
}

td {
  border-bottom: solid 1px var(--border-color);
  font-size: 0.95rem;
  padding: 0.35rem 1rem 0.35rem 0;
  line-height: 1.2;
  word-break: break-all;
  /* Used on writing statistics page */
}
td.faded {
  color: var(--border-color);
}

/* ----------------------------------------------------------------*/
/* Code */
code,
pre {
  background: #f4eae1;
  border-radius: 5pt;
  color: #572e0a;
  font-family: Monaco, Menlo, Courier, monospace;
  font-size: 0.7rem;
}

code {
  padding: 0.1rem 0.2rem;
}

pre {
  line-height: 1.35;
  margin: 1.5rem 0;
  overflow-x: scroll;
  padding: 0.75rem 1rem;
}
pre code {
  padding: 0;
}

/* ----------------------------------------------------------------*/
/* Tag list */
.tags .tag {
  color: var(--tag-color);
  font-style: italic;
  font-weight: 400;
  margin-right: 0.3rem;
  text-decoration-color: var(--link-underline-color);
  white-space: nowrap;
}
.tags a.tag:hover {
  color: var(--primary-color);
}

ul.tag-index li {
  line-height: 1.1;
  padding: 0;
}
ul.tag-index li::before {
  content: none;
}
ul.tag-index li + li {
  margin-top: 0.4rem;
}
ul.tag-index li a.tag {
  display: inline-block;
  font-size: 0.9rem;
  margin-left: 1rem;
  text-indent: -1rem;
  white-space: wrap;
}

/* ----------------------------------------------------------------*/
/* Blog post list */
body.blog main > header {
  margin-bottom: 1.5rem;
}
body.blog main > header h1 .tag {
  font-style: normal;
}
body.blog main > header .colon-list:first-of-type {
  line-height: 1.3;
  margin-bottom: 1rem;
}
body.blog main > footer {
  margin-top: 3rem;
}
body.blog main > footer .colon-list {
  font-style: italic;
}

.blog-actions {
  color: var(--gray-color);
  margin-bottom: 0.35rem;
}
.blog-actions + nav {
  color: var(--gray-color);
  margin-top: 1rem;
}
.blog-actions + .year-index {
  margin-top: 1.5rem;
}

ul.blog-posts {
  padding: 0;
}
ul.blog-posts li {
  align-items: baseline;
  display: grid;
  gap: 2px 10px;
  grid-template-areas: "date title";
  grid-template-columns: 3.1rem 1fr;
  padding: 0;
}
ul.blog-posts li::before {
  content: none;
}
ul.blog-posts li time {
  font-size: 0.9rem;
  font-style: italic;
  grid-area: date;
  text-align: right;
}
ul.blog-posts li .title {
  grid-area: title;
}
ul.blog-posts li .title > a {
  display: inline;
  margin-right: 5px;
}
ul.blog-posts li .title .tags {
  display: block;
  font-size: 0.75rem;
  line-height: 1.2;
}
@media screen and (min-width: 500px) {
  ul.blog-posts li .title .tags {
    display: inline;
  }
}
ul.blog-posts li .title .tags .tag {
  margin-right: 0.2rem;
}
ul.blog-posts li + li {
  margin-top: 0.5rem;
}

/* ----------------------------------------------------------------*/
/* Blog post */
article.post {
  /* In list view, include padding and border */
  /* The post text */
  /* Spacing */
  /* Hide the RSS feed hr and tag list */
  /* Hide the RSS feed footer in list view */
  /* Style the RSS feed footer */
  /* Post navigation in detail view */
  /* Time colors */
}
article.post:not(.detail) {
  border-top: solid 1px var(--border-color);
  margin-top: 2rem;
  padding-top: 2rem;
}
article.post header {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  /* Date defaults */
  /* Post title in detail view */
  /* Post title in list view, titled posts */
  /* Post title in list view, untitled date link posts */
}
article.post header .metadata {
  line-height: 1.3;
  margin-top: 0.45rem;
}
article.post header a.date-link time {
  font-size: 1rem;
}
article.post header h1 {
  margin: 0 0 0.15rem 0;
}
article.post header h2 {
  margin: 0;
}
article.post header h2 a {
  color: var(--text-color);
  font-family: inherit;
}
article.post header h2 a:hover {
  color: var(--primary-color);
}
article.post header a.date-link {
  color: var(--text-color);
}
article.post header a.date-link:hover {
  color: var(--primary-color);
}
article.post header .tags {
  margin-top: 0.5rem;
}
article.post header .tags a.tag:hover {
  color: var(--primary-color);
}
article.post main {
  margin-top: 1rem;
}
article.post hr.feed-extra,
article.post p.feed-extra.feed-tags {
  display: none;
}
article.post:not(.detail) .feed-extra {
  display: none;
}
article.post p.feed-mail {
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 2.5rem;
  text-align: right;
}
article.post.detail + nav {
  display: flex;
  font-size: 0.9rem;
  font-style: italic;
  gap: 0.25rem;
  margin-top: 2rem;
  text-align: right;
}
article.post.detail + nav a.reply-by-email {
  margin-right: auto;
}
article.post.detail time {
  color: var(--gray-color);
}
article.post:not(.detail) h2 + .metadata time {
  color: var(--gray-color);
}

/* ----------------------------------------------------------------*/
/* Artwork list */
ul.artworks {
  --art-inline-gap: var(--card-inline-gap);
  --art-block-gap: var(--card-block-gap);
  display: flex;
  flex-wrap: wrap;
  gap: var(--art-block-gap) var(--art-inline-gap);
  margin: 0.5rem 0 0;
  padding-left: 0;
  justify-content: start;
}
ul.artworks li {
  /* Reset list elements */
  margin: 0;
  padding: 0;
  border-radius: 4pt;
  width: 100%;
  /* Set up art thumbnail layout */
  display: inline-flex;
}
ul.artworks li::before {
  content: none;
}
@media screen and (min-width: 800px) {
  ul.artworks li {
    width: calc(50% - var(--art-inline-gap));
    height: calc(50% - var(--art-block-gap));
  }
}
ul.artworks li figure {
  margin: 0;
}
ul.artworks li a.image {
  border-radius: 4pt;
  display: flex;
  gap: 0.5rem;
}
ul.artworks li a.image img {
  border-radius: 4pt;
  display: block;
  max-width: 50px;
  width: 100%;
  height: 100%;
}
ul.artworks li figcaption {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.2;
  margin-top: 2pt;
  padding: 3pt;
  word-break: break-word;
}
ul.artworks + a.more, ul.artworks + p:has(a.more) {
  display: block;
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 0.1rem;
  text-align: right;
}

/* ----------------------------------------------------------------*/
/* Collections (imagelinks) */
ul.imagelinks {
  --art-inline-gap: 1rem;
  --art-block-gap: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: var(--art-block-gap) var(--art-inline-gap);
  list-style: none;
  margin-top: 1rem;
  padding: 0;
}
ul.imagelinks li::before {
  content: none;
}
ul.imagelinks li {
  margin: 0;
  padding-left: 0;
  width: 100%;
}
ul.imagelinks li > a {
  border: solid 1px #ccc;
  border-radius: 3px;
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
}
ul.imagelinks li figure {
  margin: 0;
  max-width: 100px;
}
ul.imagelinks li figure img {
  border-radius: 3px 0 0 3px;
  display: block;
  width: 100%;
  /* Hover */
}
ul.imagelinks li figure img:hover {
  filter: brightness(1.05) saturate(1.05);
}
ul.imagelinks li .metadata {
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 0.9rem;
  justify-content: space-between;
  line-height: 1.1;
  padding-block: 0.6rem;
}
ul.imagelinks li .metadata .title {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.1;
}
ul.imagelinks li .metadata .count, ul.imagelinks li .metadata .updated {
  color: #666;
  font-size: 0.7rem;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.03rem;
}
ul.imagelinks li .metadata .count {
  margin-top: 3pt;
}
ul.imagelinks li .metadata .updated {
  align-content: end;
  flex: 1;
}
@media screen and (min-width: 600px) {
  ul.imagelinks li {
    width: calc(50% - calc(var(--art-inline-gap) / 2));
  }
  ul.imagelinks li figure {
    max-width: 120px;
  }
}

/* ----------------------------------------------------------------*/
/* Artwork detail */
h1.has-feed a.feed {
  font-size: 0.8rem;
  font-variant-caps: initial;
}
@media screen and (min-width: 750px) {
  h1.has-feed {
    align-items: baseline;
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: space-between;
  }
}

article.art h1 .hash {
  font-size: 0.8em;
}
article.art figure {
  margin-bottom: 0.25rem;
}
article.art > footer {
  /* Buy prints link */
  /* Artwork navigation */
}
article.art > footer a.prints {
  background: #c0e199;
  border-radius: 5pt;
  color: black;
  float: right;
  font-weight: 400;
  margin: 0.25rem 0 0.25rem 0.8rem;
  padding: 0.2rem 0.8rem 0.5rem;
  text-decoration-color: #6d8354;
}
article.art > footer a.prints:hover {
  background: #1a1a1a;
  color: white;
}
article.art > footer ul.art .nav-link {
  font-style: italic;
}
article.art > footer nav {
  display: flex;
  justify-content: space-between;
}
article.art > footer nav .previous {
  text-align: right;
}
article.art > footer nav .previous ul.artworks {
  justify-content: flex-end;
}
article.art > footer nav ul.artworks {
  margin-top: 0.5rem;
}
article.art > footer nav ul.artworks li {
  margin: 0;
}
article.art > footer .tags {
  display: block;
  margin-top: 0.7rem;
}
article.art > footer table.prints {
  margin-bottom: 2rem;
}

/* ----------------------------------------------------------------*/
/* Poetry */
.poetry {
  margin: 2rem 0 0;
}
.poetry p {
  hyphens: none;
  margin: 0 0 0 2rem;
  text-indent: -2rem;
}
.poetry p.stanza {
  margin-top: 1rem;
}
.poetry p.indent {
  margin-left: 5rem;
}

/* ----------------------------------------------------------------*/
/* Reading page, blog archive */

.year-index {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.25;
  margin-block-start: 0.25rem;

  a {
    display: inline-block;
    margin-right: 0.75rem;
  }

  & > span {
    font-style: italic;
    margin-right: 0.75rem;
  }
}

#reading-years {
  overflow: hidden;

  & details summary {
    float: left;
    margin-inline-end: 0.75rem;
  }

  & .year-index {
    display: inline;
    margin-right: 0;
  }
}

.month-reading-heading {
  border-bottom: solid 3px #c0db84;
  display: inline-block;
  font-variant-caps: all-small-caps;
  font-variant-numeric: oldstyle-nums;
  font-variation-settings: "opsz" 20;
  letter-spacing: 0.04rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.2rem;
}

.year-stats {
  font-size: 1rem;
  font-variant-numeric: lining-nums;
}

.section.reading-year h2.reading-heading {
  margin-block-end: 0;
}

.section.reading-year .reading-subheading {
  font-size: 0.85rem;
  font-variant-caps: all-small-caps;
  letter-spacing: 0.05rem;
}

.reading-month {
  margin-top: 1.5rem;
}
.reading-month ul.reading {
  margin-top: 0;
}

h2 + .reading-month {
  margin-top: 1rem;
  border-top: none;
  padding-top: 0;
}

.hidden {
  display: none;
}

#search-books {
  background: none;
  border: solid 1px var(--border-color);
  border-radius: 3px;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  padding: 0.1rem 0.4rem 0.3rem;
}

.search-results h3 {
  margin-top: 1rem;
}

.read-date {
  word-break: keep-all;
}

/* ----------------------------------------------------------------*/
/* Guestbook */
#guestbook-entry.hidden {
  display: none;
}

form#guestbook {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
form#guestbook div {
  display: block;
}
form#guestbook div label {
  font-size: 0.9rem;
  font-style: italic;
}
form#guestbook div input[type=text], form#guestbook div input[type=email], form#guestbook div textarea {
  background: none;
  border: solid 1px #b8b8b8;
  border-radius: 3px;
  display: block;
  font-family: ebcg;
  font-size: 1rem;
  padding: 0.3rem 0.3rem 0.2rem;
}
form#guestbook div textarea {
  line-height: 1.45;
  height: 10rem;
  resize: none;
  width: 100%;
}
form#guestbook div input[name=email], form#guestbook div input[name=website] {
  width: 100%;
}
form#guestbook div input[type=submit] {
  background: var(--primary-color);
  border: none;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  font-family: ebcg;
  font-size: 1rem;
  font-variant-caps: all-small-caps;
  font-weight: 400;
  letter-spacing: 0.03rem;
  margin-top: 1rem;
  padding: 0.3rem 0.8rem 0.4rem;
  text-transform: uppercase;
}
form#guestbook div input[type=submit]:hover {
  background: var(--accent-color);
}

/* ----------------------------------------------------------------*/
/* Timeline */
.timeline {
  margin-top: 1.5rem;
}

.timeline .year {
  align-items: baseline;
  display: flex;
  font-size: 0.95rem;
  gap: 1rem;
  line-height: 1.375;
}
.timeline .year + .year {
  border-top: solid 1pt #cfcec9;
  margin-top: 0.35rem;
  padding-top: 0.45rem;
}
.timeline .year .label {
  font-weight: 400;
  text-align: right;
  width: 2.75rem;
}
.timeline .year .timeline-projects {
  flex: 1;
}

details summary {
  color: var(--primary-color);
  cursor: pointer;
}
details summary:hover {
  color: var(--text-color);
}
details summary::-webkit-details-marker, details summary::marker {
  font-size: 0.7rem;
}

/* ----------------------------------------------------------------*/
/* Morrone del Sannio morti table */
.fh-wrapper {
  overflow-x: scroll;
}

table.fhindex td.name {
  font-style: italic;
}

@media screen and (max-width: 750px) {
  table.fhindex th,
table.fhindex td {
    display: block;
  }

  table.fhindex th {
    padding: 0.35rem 1rem 0.35rem 0;
  }

  table.fhindex th:not(:first-child),
table.fhindex td:not(:first-child) {
    margin-left: 1rem;
  }
}
/* ----------------------------------------------------------------*/
/* Fiction */
body.fiction main p {
  margin: 0;
  text-indent: 1.25rem;
}
body.fiction main p:first-child {
  text-indent: 0;
}

body.fiction main .intro + p,
body.fiction main p.scene-divider + p,
body.fiction main h2 + p,
body.fiction main p.first {
  text-indent: 0;
}

body.fiction main p.spaced {
  margin-top: 0.75rem;
  text-indent: 0;
}

body.fiction main p.scene-divider {
  margin: 2rem 0;
  text-align: center;
}

/*# sourceMappingURL=style.css.map */

ul.linear.writing-statistics {
  li {
    line-height: 1.25;
  }
}
