/* styles.css — the entire site's stylesheet (Zola serves this file as-is;
   there is no CSS build step).

   Assembled 2026-08-15 during the Zola migration from:
   1. @font-face rules vendored from the @fontsource npm packages the old
      Astro build imported (files live in /fonts/vendor/). noto-serif was
      installed but never imported — dropped.
   2. normalize.css v8.0.1, vendored verbatim (was `@import "normalize.css"`).
   3. src/styles/styles.css — the old global stylesheet, verbatim minus the
      npm @imports it opened with.
   4. The scoped <style> blocks from the old .astro pages (follow, us, 404,
      search), flattened by hand. Astro scoped these with data-astro-cid-*
      attrs; here each block's selectors are scoped by a per-page class that
      base.html's main_attrs block puts on <main> (.follow-page, .us-page,
      .notfound-page). The search page's block was is:global and stays
      global, adjusted only where astro-pagefind's markup differed. */

/* brawler-latin-400-normal */
@font-face {
  font-family: 'Brawler';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/fonts/vendor/brawler-latin-400-normal.woff2) format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* carme-latin-400-normal */
@font-face {
  font-family: 'Carme';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/fonts/vendor/carme-latin-400-normal.woff2) format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
/* marko-one-latin-400-normal */
@font-face {
  font-family: 'Marko One';
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url(/fonts/vendor/marko-one-latin-400-normal.woff2) format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
  display: none;
}

:root {
  --color-body-text: white;
  --color-accent-bg: rgb(46, 45, 45);
  /* --color-background: #364353; */
  --color-background: #2f4054;
  --font-serif: Marko One, Carme, Brawler, courier new, ui-serif, serif;

  --color-one: rgb(99, 183, 75);
  --color-two: rgb(248, 181, 38);
  --color-three: rgb(243, 128, 32);
  --color-four: rgb(228, 57, 64);
  --color-five: rgb(147, 63, 150);
  --color-six: rgb(18, 155, 215);

  --search-bg: var(--color-six);
  --search-border: var(--color-one);
  --search-tag: var(--color-four);
  --search-tag-text: black;
  --search-primary: black;
  --search-primary-text: var(--color-body-text);
  --search-results-text: var(--color-body-text);
  --search-results-link: var(--color-two);
}

html {
  height: 100vh;
}

body {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.5;
  background-color: var(--color-background);
  color: var(--color-body-text);
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
}

a,
a:visited {
  color: var(--color-two);
}

.header {
  margin: 3rem 0 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  justify-content: center;
  align-items: center;
}

.header a {
  text-decoration: none;
}

.header h1 {
  font-size: 4rem;
  line-height: 98%;
  padding: 0;
  margin: 0;
}

.header p {
  font-size: 0.9rem;
}

.header img {
  margin: 0;
  border-radius: 50%;
  border: 5px solid var(--color-one);
  height: 120px;
  width: 120px;
}

menu {
  margin: 0 auto 4rem;
  text-align: center;
  background-color: var(--color-accent-bg);
  border-top: 1px solid var(--search-border);
  border-bottom: 1px solid var(--search-border);
  padding: 0;
  width: 100%;
}

menu a,
menu a:visited {
  text-decoration: none;
  color: var(--color-body-text);
}

menu ul {
  margin: 0;
  padding: 0.2ch 2ch;
}
menu li {
  display: inline;
  white-space: nowrap;
  margin: 0.5rem;
}

menu li:before {
  content: "\/";
  font-weight: 900;
  margin-right: 0.5ch;
}

menu li:nth-child(1):before,
menu li:nth-child(1) a:hover,
menu li:nth-child(1) a:active {
  color: var(--color-one);
}
menu li:nth-child(2):before,
menu li:nth-child(2) a:hover,
menu li:nth-child(2) a:active {
  color: var(--color-two);
}
menu li:nth-child(3):before,
menu li:nth-child(3) a:hover,
menu li:nth-child(3) a:active {
  color: var(--color-three);
}
menu li:nth-child(4):before,
menu li:nth-child(4) a:hover,
menu li:nth-child(4) a:active {
  color: var(--color-four);
}
menu li:nth-child(5):before,
menu li:nth-child(5) a:hover,
menu li:nth-child(5) a:active {
  color: var(--color-five);
}
menu li:nth-child(6):before,
menu li:nth-child(6) a:hover,
menu li:nth-child(6) a:active {
  color: var(--color-six);
}

h2.episode {
  font-size: 2.25rem;
  margin-top: 0;
}

h2.episode a {
  text-decoration: none;
  color: var(--color-body-text);
}

h2.episode a:hover {
  text-decoration: underline;
}

p.episode-date {
  font-size: 1rem;
  font-style: italic;
  opacity: 0.8;
}

p.episode-description {
  opacity: 0.8;
}

[data-icon="bi:calendar2-week-fill"] {
  font-size: 1em;
  margin: 0 0.5rem 0 0;
  padding: 0;
  text-align: center;
}

[data-icon="fluent:chat-warning-20-filled"] {
  font-size: 3em;
  margin: 0 0.5rem 0 0;
  padding: 0;
  text-align: center;
  color: var(--color-two);
}

[data-icon="el:twitter"] {
  font-size: 2em;
  margin: 0 0.5rem 0 0;
  padding: 0;
  text-align: center;
  color: var(--color-six);
}

[data-icon="icomoon-free:rss2"] {
  color: var(--color-three);
  font-size: 2rem;
  margin: 0 0.5rem 0 0;
  padding: 0;
  text-align: center;
}

[data-icon="el:podcast"] {
  color: var(--color-four);
  font-size: 2rem;
  margin: 0 0.5rem 0 0;
  padding: 0;
  text-align: center;
}

[data-icon="fontisto:safari"] {
  color: var(--color-six);
  font-size: 2rem;
  margin: 0 0.5rem 0 0;
  padding: 0;
  text-align: center;
}

[data-icon="simple-icons:mastodon"] {
  color: var(--color-five);
  font-size: 2rem;
  margin: 0 0.5rem 0 0;
  padding: 0;
  text-align: center;
}

audio {
  margin: 1.5rem 0;
  width: 100%;
  height: 54px;
  border-radius: 8px;
  border: 2px solid var(--color-five);
  background: var(--color-accent-bg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

audio::-webkit-media-controls-panel {
  background: var(--color-accent-bg);
  border-radius: 6px;
}

audio::-webkit-media-controls-play-button {
  background-color: var(--color-five);
  border-radius: 50%;
}

audio::-webkit-media-controls-current-time-display,
audio::-webkit-media-controls-time-remaining-display {
  color: var(--color-body-text);
  text-shadow: none;
}

audio::-webkit-media-controls-timeline {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  margin: 0 10px;
}

audio::-webkit-media-controls-volume-slider {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
}

audio::-moz-range-track {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
}

audio::-moz-range-thumb {
  background: var(--color-five);
  border: none;
  border-radius: 50%;
}

audio + p {
  line-height: 1.5em;
}

blockquote {
  margin: 3rem 0 0;
  padding: 0.6em 2em;
  background-color: var(--color-accent-bg);
  border-radius: 10px;
  border: 1px solid var(--search-border);
  font-size: 0.9em;
  font-style: italic;
}

blockquote:before {
  display: block;
  font-size: 700%;
  font-style: italic;
  content: '"';
  height: 1px;
  margin-left: -0.6em;
  position: relative;
  top: -2rem;
}

hr.episode-hr {
  border: 1px solid var(--color-four);
  margin: 4rem auto;
  width: 75%;
}

hr.episode-hr:last-of-type {
  visibility: hidden;
  margin: 0;
}

article {
  width: 100%;
  margin-bottom: 5em;
}

article:last-of-type {
  margin-bottom: 0;
}

div.article-content {
  margin: 1rem auto;
  padding: 0 5rem;
  max-width: 50ch;
  /* border-left: 5px solid var(--color-six); */
  /* border-right: 5px solid var(--color-five); */
}

div#disclaimer {
  background-color: var(--color-accent-bg);
  margin: 2rem auto;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  color: var(--color-four);
  font-weight: bold;
}

div#disclaimer h2 {
  margin-top: 0;
  padding-top: 0;
}

div#disclaimer p {
  color: var(--color-body-text);
  margin-bottom: 0;
  font-size: 0.8em;
  font-style: italic;
}

div#disclaimer p.disclaimer {
  color: var(--color-four);
  font-size: 1em;
}

div.disclaimer-link {
  margin: 3em auto;
  font-style: italic;
  font-size: 0.8em;
  display: flex;
  align-items: center;
  align-content: center;
  background-color: var(--color-accent-bg);
  padding: 0.5em;
  border-radius: 10px;
}

details {
  margin-bottom: 2em;
}

details div {
  background-color: var(--color-accent-bg);
  padding: 0.1em 1em;
  margin: 1em 0;
  border-radius: 10px;
}

details div ul {
  opacity: 0.8;
  font-size: 0.85em;
}

div.who {
  margin: 3rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  column-gap: 2rem;
}

div.who:last-of-type {
  margin-bottom: 0;
}

div.who img {
  border-radius: 50%;
  border-radius: 50%;
  border: 5px solid var(--color-two);
  width: 200px;
  height: 200px;
}

div.who p {
  font-size: 0.9em;
  opacity: 0.8;
}

div.who div:nth-child(3) {
  display: flex;
  align-items: center;
  align-content: center;
}

div.url-link {
  margin: 1rem 0;
  display: flex;
  column-gap: 1rem;
  align-items: center;
  align-content: center;
}

nav#pager {
  display: flex;
  column-gap: 0.5rem;
  justify-content: space-evenly;
  margin: 0 auto;
  padding: 2rem 0 1rem;
  font-size: 1.1rem;
  text-transform: uppercase;
}

nav#pager a {
  color: var(--color-two);
}

li.pagefind-ui__result:last-of-type {
  margin-bottom: 1em;
}

button.pagefind-ui__button {
  margin-bottom: 5em;
}

div.coffee-container {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}

@media only screen and (max-width: 810px) {
  .header p {
    padding-top: 1rem;
  }
}

@media only screen and (max-width: 660px) {
  div.who {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 500px) {
  body {
    font-size: 1rem;
  }
  main {
    padding: 1rem 0.5rem;
  }
  .header {
    flex-direction: column;
  }

  .header h1 {
    line-height: 95%;
    font-size: 3rem;
  }

  .header p {
    font-size: 0.75rem;
  }

  .header img {
    height: 100px;
    width: 100px;
  }

  div.article-content {
    padding: 0 0.7rem;
  }

  div.who img {
    height: 150px;
    width: 150px;
    border-width: 3px;
  }

  menu {
    font-size: 1rem;
  }

  div.url-link {
    font-size: 0.8rem;
  }

  [data-icon="fontisto:safari"],
  [data-icon="simple-icons:mastodon"] {
    margin: 0;
  }
}

@media only screen and (max-width: 430px) {
  menu {
    font-size: 0.8rem;
  }

  menu li {
    margin: 0.5rem 0.2rem;
  }

  div.who img {
    height: 100px;
    width: 100px;
    border-width: 2px;
  }
}
/* ---- flattened scoped styles from the old .astro pages ---- */

/* follow.astro */
.follow-page [data-icon="simple-icons:mastodon"] {
  color: var(--color-five);
  font-size: 2.2rem;
}

/* us.astro */
.us-page [data-icon] {
  font-size: 2.5rem;
}
.us-page [data-icon="simple-icons:mastodon"] {
  color: var(--color-five);
}
.us-page [data-icon="fontisto:safari"] {
  color: var(--color-six);
}
@media only screen and (max-width: 500px) {
  .us-page [data-icon] {
    font-size: 1.5rem;
  }
}

/* 404.astro */
.notfound-page p.fourohfour {
  font-size: 1.5rem;
  font-style: italic;
  margin: 1em auto 2.5em;
  width: fit-content;
}
.notfound-page span.fourohfour {
  color: var(--color-four);
  font-size: 2.5rem;
  font-style: normal;
  margin: 1rem;
}
.notfound-page div.fourohfour {
  max-width: 700px;
  margin: 0 auto;
}
.notfound-page .fourohfour-text {
  opacity: 0.8;
}
.notfound-page a {
  display: inline-block;
  margin: 2rem 0 0;
}

/* search.astro (was is:global). Scoped to .search-page rather than :root:
   /pagefind/pagefind-ui.css loads AFTER this file (search.html head_extra)
   and sets these vars on :root — the old Astro build's overrides happened
   to load after pagefind's CSS instead. Vars on a closer ancestor win by
   inheritance, so this restores the old cascade order's effect. */
.search-page {
  --pagefind-ui-scale: 0.8;
  --pagefind-ui-primary: var(--search-primary);
  --pagefind-ui-text: var(--search-primary-text);
  --pagefind-ui-result-title-text: var(--search-results-link);
  --pagefind-ui-result-text: var(--search-results-text);
  --pagefind-ui-background: var(--search-bg);
  --pagefind-input-background: var(--search-bg);
  --pagefind-ui-border: var(--search-border);
  --pagefind-ui-tag: var(--search-tag);
  --pagefind-ui-border-width: 2px;
  --pagefind-ui-border-radius: 8px;
  --pagefind-ui-image-border-radius: 8px;
  --pagefind-ui-image-box-ratio: 3 / 2;
  --pagefind-ui-font: system, -apple-system, ".SFNSText-Regular",
    "San Francisco", "Roboto", "Segoe UI", "Helvetica Neue", "Lucida Grande",
    sans-serif;
}

#search .pagefind-ui__search-input,
#search .pagefind-ui__search-clear {
  background-color: var(--pagefind-input-background);
}
#search .pagefind-ui__result-title,
#search .pagefind-ui__result-link {
  display: inline-block;
  font-weight: 700;
  font-size: calc(40px * var(--pagefind-ui-scale));
  color: var(--pagefind-ui-result-title-text);
}
#search .pagefind-ui__result-excerpt {
  color: var(--pagefind-ui-result-text);
  font-weight: 400;
  font-size: calc(1.5rem * var(--pagefind-ui-scale));
}
#search .pagefind-ui__message {
  color: var(--pagefind-ui-message-text);
  margin: calc(0.5rem * var(--pagefind-ui-scale)) 0
    calc(1.5rem * var(--pagefind-ui-scale))
    calc(0.5rem * var(--pagefind-ui-scale));
}
#search .pagefind-ui__result-thumb {
  display: none;
}
