 /* a quick way to edit layout */
    
:root{
  
  /* base font */
  --base-font: Georgia, "Times New Roman", serif;
  --base-font-size: 0.75rem;
  --base-line-height: 1.4;
  --base-letter-spacing: 1px;

  /* text colors */
  --text: #4f5f48;
  --muted: #66755f;
  --link: #587a50;
  --link-hover: #48653f;
  --accent-strong: #48653f;
  --button-bg: #eef7ea;
  --button-border: #c0d5b8;

  /* backgrounds */
  
  --body-bg: #f6fbf4 url(https://itinerae.neocities.org/bgs/lightgrid.gif) fixed;
  --paper: #fbfdf8;
  --panel: #fefff9;
  --panel-soft: #eef7ea;
  --panel-tint: #f4faf0;
  --panel-white: #fefff9;
  --panel-header: #eaf3e5;
  --label-bg: #dfeeda;

  /* borders */
  --border: #cbdcc4;
  --border-soft: #dbe9d5;

  /* layout sizes */
  --page-max-width: 1200px;
  --sidebar-width: 220px;
  --hero-min-height: 200px;
  --gap: 8px;
  --radius: 6px;
  --page-radius: 10px;
  --box-radius: 5px;

  /* effects */
  --shadow: 0 3px 10px rgba(78,104,70,.045);
  --pixel-screen:
    linear-gradient(45deg, rgba(255,255,255,.14) 25%, transparent 25% 75%, rgba(255,255,255,.14) 75%),
    linear-gradient(45deg, rgba(72,101,63,.08) 25%, transparent 25% 75%, rgba(72,101,63,.08) 75%),
    repeating-linear-gradient(to bottom, rgba(0,0,0,.025), rgba(0,0,0,.04) 1px, transparent 1px, transparent 2px);
  --pixel-screen-size: 2px 2px, 2px 2px, 100% 2px;
  --image-filter: saturate(.86) contrast(1.16) brightness(.98);
  --image-filter-hover: saturate(1.05) contrast(1.18) brightness(1.02);

  /* cursors */
  --cursor-normal: url("../../Images/Bulbasaur Cursor by JDZombi [v1.2]/[1] - Normal Select - Bulbasaur - by jdzombi.ani"), auto;
  --cursor-link: url("../../Images/Bulbasaur Cursor by JDZombi [v1.2]/[15] - Link Select - Bulbasaur - by jdzombi.ani"), pointer;
  --cursor-text: url("../../Images/Bulbasaur Cursor by JDZombi [v1.2]/[6] - Text Select - Shiny Bulbasaur - by jdzombi.ani"), text;
  --cursor-unavailable: url("../../Images/Bulbasaur Cursor by JDZombi [v1.2]/[8] - Unavailable - Bulbasaur - by jdzombi.ani"), not-allowed;
}

:root[data-theme="dark"]{
  color-scheme: dark;
  --text: #6e8f68;
  --muted: #888888;
  --link: #b8b8b8;
  --link-hover: #dddddd;
  --accent-strong: #8aa383;

  --body-bg: #111111;
  --paper: #111111;
  --panel: #171717;
  --panel-soft: #151515;
  --panel-tint: #111111;
  --panel-white: #181818;
  --panel-header: #171717;
  --label-bg: #202020;
  --button-bg: #111111;
  --button-border: #333333;

  --border: #252525;
  --border-soft: #222222;
  --shadow: none;
  --pixel-screen:
    linear-gradient(45deg, rgba(255,255,255,.055) 25%, transparent 25% 75%, rgba(255,255,255,.055) 75%),
    linear-gradient(45deg, rgba(0,0,0,.28) 25%, transparent 25% 75%, rgba(0,0,0,.28) 75%),
    repeating-linear-gradient(to bottom, rgba(255,255,255,.025), rgba(255,255,255,.04) 1px, transparent 1px, transparent 2px);
  --image-filter: grayscale(1) contrast(1.08) brightness(.78);
  --image-filter-hover: saturate(.62) contrast(1.12) brightness(.86);
}


/* basics */
    
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;}

html,
body{
  height: 100%;}

body{
  font-family: var(--base-font);
  font-size: var(--base-font-size);
  line-height: var(--base-line-height);
  letter-spacing: var(--base-letter-spacing);
  color: var(--text);
  background: var(--body-bg);
  cursor: var(--cursor-normal);
  padding: 10px;
  overflow-x: hidden;}

body.home-page{
  background: #9ad993 url("https://64.media.tumblr.com/17af097f6691e4fbdad8c8f92ce2d648/acc447ad6305daf4-b3/s75x75_c1/3eb22f8ac13606127d5af9ed2ec552f8d1a475aa.webp") repeat fixed;
}

body.about-page{
  background: #fff url("https://64.media.tumblr.com/dd4fa62e5388ab96567993b890a0714c/0aa40e3a5b732ede-fa/s250x400/4f7f9a994a23ece9a1cf2b7a1cbebe945f705a40.gifv") repeat fixed;
}

body.thoughts-page{
  background: #fff url("https://64.media.tumblr.com/7b1e55a3a127bb8499926c0c91838602/addc04f6bc692b0b-d3/s1280x1920/62bc364146d09116282f01197fc1a1f961b74ff8.gifv") repeat fixed;
}

body.art-page{
  background: #fff url("https://itinerae.neocities.org/bgs/orangeflow.webp") repeat fixed;
}

body.library-page{
  background: #fff url("https://64.media.tumblr.com/bfa77670dac2ab204d254e7310b55cd4/cb1d13aa222d3437-06/s250x400/a7bdff1f710a8dc1d289cda18ddce5489bf74b64.pnj") repeat fixed;
}

body.photo-page{
  background: var(--body-bg);
}

:root[data-theme="dark"] body,
:root[data-theme="dark"] body.home-page,
:root[data-theme="dark"] body.about-page,
:root[data-theme="dark"] body.thoughts-page,
:root[data-theme="dark"] body.art-page,
:root[data-theme="dark"] body.library-page,
:root[data-theme="dark"] body.photo-page{
  background: #060706;
}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  background: var(--pixel-screen);
  background-position: 0 0, 1px 1px, 0 0;
  background-size: var(--pixel-screen-size);
  mix-blend-mode: multiply;
  opacity: .62;
  pointer-events: none;
  z-index: 1000;}
    
    
/* links */
a{
  color: var(--link);
  cursor: var(--cursor-link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
  transition: .15s ease;}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:not([tabindex="-1"]):focus-visible{
  outline: 2px solid var(--link-hover);
  outline-offset: 3px;
}

.skip-link{
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  transform: translateY(-140%);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--panel-white);
  color: var(--link-hover);
  padding: .5rem .75rem;
  box-shadow: var(--shadow);
}

.skip-link:focus{
  transform: translateY(0);
}

button,
input,
textarea{
  font: inherit;
  letter-spacing: inherit;
  color: inherit;}

button,
summary,
label,
select,
[role="button"],
[tabindex]:not([tabindex="-1"]){
  cursor: var(--cursor-link);
}

input,
textarea,
[contenteditable="true"]{
  cursor: var(--cursor-text);
}

button:disabled,
input:disabled,
textarea:disabled,
select:disabled,
[aria-disabled="true"]{
  cursor: var(--cursor-unavailable);
}

.button-like,
button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle):not(.library-tea-button):not(.collapsible-heading-toggle),
.calendarTop button,
.art-filter,
.library-nav a,
.library-filter,
.garden-nav a,
.social-button,
.feature-link,
.post-nav a,
.post-nav button,
.source-link-button{
  position: relative;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(254,255,249,.98), rgba(239,247,235,.94));
  box-shadow:
    0 1px 0 rgba(255,255,255,.75) inset,
    0 0 0 1px rgba(225,238,219,.65),
    0 2px 5px rgba(78,104,70,.07);
  color: #526a4a;
  cursor: var(--cursor-link);
  font-style: italic;
  line-height: 1.25;
  min-height: 28px;
  padding: 7px 12px 5px;
}

.banner-navi a,
.nav-dropdown-menu a,
.button-like,
.library-nav a,
.garden-nav a,
.socials a,
.social-button,
.feature-link,
.post-nav a,
.source-link-button,
.gallery a,
.book-card,
.game-card,
.person-card,
.entry-card,
.art-card,
.polaroid-card a,
.button-wall a{
  text-decoration: none;
}

.button-like:hover,
button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle):not(.library-tea-button):not(.collapsible-heading-toggle):hover,
.calendarTop button:hover,
.art-filter:hover,
.library-nav a:hover,
.library-filter:hover,
.garden-nav a:hover,
.social-button:hover,
.feature-link:hover,
.post-nav a:hover,
.post-nav button:hover,
.source-link-button:hover{
  transform: translateY(-1px);
  border-color: rgba(184,207,176,.98);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,249,238,.96));
  box-shadow:
    0 1px 0 rgba(255,255,255,.85) inset,
    0 0 0 1px rgba(225,238,219,.72),
    0 3px 8px rgba(88,125,78,.12);
  color: #48653f;
}

.button-like:active,
button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle):not(.library-tea-button):not(.collapsible-heading-toggle):active,
.calendarTop button:active,
.art-filter:active,
.library-nav a:active,
.library-filter:active,
.social-button:active,
.feature-link:active,
.post-nav a:active,
.post-nav button:active,
.source-link-button:active{
  transform: translateY(0);
  box-shadow:
    0 1px 2px rgba(78,104,70,.10) inset,
    0 0 0 1px rgba(225,238,219,.55);
}

img{
  max-width: 100%;
  filter: var(--image-filter);
  image-rendering: pixelated;
  transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}

a:hover img,
button:hover img,
img:hover,
.art-card:hover img,
.library-card:hover img,
.entry-card:hover img,
.button-wall:hover img,
.blinkies-grid img:hover,
.stamps-grid img:hover{
  filter: var(--image-filter-hover);
}

.retro-screen{
  overflow: hidden;
  border-radius: 0;
  background: var(--panel-white);
  box-shadow:
    0 0 0 1px #ffffff inset,
    0 1px 0 rgba(255,255,255,.8);
}

.retro-screen img{
  filter: var(--image-filter);
  opacity: 1;
}

.page,
.layout,
.column,
.box,
.box-body,
.box-head{
  min-width: 0;}
  
  
    
/* scrollbar */
::-webkit-scrollbar{
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track{
  background: #eaf3e5;
  border-left: 1px solid #d8e8d0;
}

::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, #cfe1c8, #acc8a4);
  border: 1px solid #9ab591;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, #c0d7b8, #9fbd96);
}

::-webkit-scrollbar-corner{
  background: #eaf3e5;
}


/* layout */
.page{
  position: relative;
  max-width: var(--page-max-width);
  margin: 0 auto;
  overflow: visible;
  border: 1px solid var(--border);
  border-radius: var(--page-radius);
  box-shadow: var(--shadow);
  background:
    linear-gradient(rgba(255,255,255,.34), rgba(255,255,255,.34)),
    var(--paper);
}

.page::after{
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(92,124,82,.08);
  border-radius: 5px;
  pointer-events: none;
}

.layout{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr) var(--sidebar-width);
  gap: var(--gap);
  padding: var(--gap);
}

.home-page .main-content{
  display: flex;
  flex-direction: column;
}

.home-page #guestbook{
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 360px;
}

.home-page #guestbook .cbox-wrap{
  display: flex;
  flex: 1 1 auto;
}

.home-page #guestbook .cbox-wrap iframe{
  flex: 1 1 auto;
  height: auto;
  min-height: 320px;
}

.under-construction-layout{
  grid-template-columns: minmax(0, 1fr);
}

.special-interest-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.special-interest-grid a{
  display: block;
  text-align: center;
}

.tumblr-feed-layout{
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr) var(--sidebar-width);
}

.tumblr-feed{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  grid-auto-rows: 4px;
  gap: var(--gap);
  align-items: start;
  max-height: min(76vh, 820px);
  padding: 8px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: rgba(255,255,255,.18);
}

.tumblr-feed-intro p{
  margin: 0;
}

.tumblr-feed-intro p + p{
  margin-top: 6px;
}

.tumblr-feed-updated{
  color: var(--muted);
  font-size: .85rem;
}

.tumblr-feed-links{
  display: grid;
  gap: 8px;
}

.tumblr-post-title{
  min-width: 0;
  font-size: .8rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.tumblr-post-title a{
  color: inherit;
  text-decoration: none;
}

.tumblr-post-body{
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 9px;
  font-size: .82rem;
  line-height: 1.45;
}

.tumblr-post{
  display: block;
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  margin: 0;
  overflow: hidden;
  vertical-align: top;
  cursor: var(--cursor-link);
}

.tumblr-post:focus-visible{
  outline: 2px solid #86a87c;
  outline-offset: 2px;
}

.tumblr-post .box-head{
  min-height: 0;
  padding: 6px 8px;
}

.tumblr-post-body > :first-child{
  margin-top: 0;
}

.tumblr-post-body > :last-child{
  margin-bottom: 0;
}

.tumblr-post-body p{
  margin: 7px 0;
}

.tumblr-post-body img{
  display: block;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 6px auto;
}

.tumblr-post-body figure{
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin: 6px 0;
}

.tumblr-post-body .npf_row{
  display: flex;
  min-width: 0;
  max-width: 100%;
  gap: 4px;
  align-items: flex-start;
}

.tumblr-post-body .npf_row figure{
  flex: 1 1 0;
  min-width: 0;
}

.tumblr-post-body blockquote{
  margin: 7px 0;
  padding-left: 8px;
  border-left: 2px solid var(--border);
}

.tumblr-post-body video,
.tumblr-post-body audio{
  width: 100%;
  max-width: 100%;
}

.tumblr-post-body pre,
.tumblr-post-body code{
  max-width: 100%;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.tumblr-post-footer{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px 8px;
  margin-top: 9px;
  padding-top: 7px;
  border-top: 1px dashed var(--border);
  font-size: .72rem;
}

.tumblr-post-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.tumblr-viewer[hidden]{
  display: none;
}

.tumblr-viewer{
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.tumblr-viewer-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(31,43,29,.72);
  backdrop-filter: blur(3px);
}

.tumblr-viewer-dialog{
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(88vh, 900px);
  box-shadow: 0 18px 60px rgba(25,39,22,.35);
}

.tumblr-viewer-dialog > .box-head{
  position: sticky;
  z-index: 2;
  top: 0;
}

.tumblr-viewer-close{
  min-width: 28px;
  min-height: 28px;
  padding: 1px 8px;
  font-size: 1.1rem;
  line-height: 1;
}

.tumblr-viewer-content{
  max-height: calc(min(88vh, 900px) - 44px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 16px;
  font-size: .95rem;
  line-height: 1.55;
}

.tumblr-viewer-post img{
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 10px auto;
}

.tumblr-viewer-post .npf_row{
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.tumblr-viewer-post .npf_row figure{
  flex: 1 1 0;
  min-width: 0;
}

.tumblr-viewer-post figure{
  margin: 10px 0;
}

.tumblr-viewer-post blockquote{
  margin: 12px 0;
  padding-left: 14px;
  border-left: 3px solid var(--border);
}

.tumblr-viewer-source{
  display: block;
  width: fit-content;
  margin: 16px auto 0;
}

body.tumblr-viewer-open{
  overflow: hidden;
}

.pixel-collection{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  max-height: 260px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-gutter: stable;
}

.pixel-collection img{
  display: block;
  flex: 0 0 auto;
  max-width: 100%;
  image-rendering: pixelated;
}

.tag-collection{
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: flex-start;
  justify-content: flex-start;
}

.tag-collection img{
  display: block;
  flex: 0 0 auto;
  max-width: 100%;
  height: auto;
}

.sticker-collection{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  justify-content: center;
  max-height: 360px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-gutter: stable;
}

.sticker-collection img{
  display: block;
  flex: 0 0 auto;
  max-width: min(100%, 180px);
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.garden-hub-layout{
  grid-template-columns: 220px minmax(0, 1fr) var(--sidebar-width);
}

.column{
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
    
    
    

/* banner + site name + subtitle + navi + rightside icons */
.banner{
  position: relative;
  z-index: 30;
  overflow: visible;
  min-height: var(--hero-min-height);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(135deg, #cbdcc4 0%, #e2efdc 30%, #f2f8ee 64%, #fbfdf8 100%);
}

.banner::before{
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(251,253,248,.36);
  border-radius: 7px;
  pointer-events: none;
}

.banner::after{
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background: url("../../Images/Site Graphics/ghibli_lake.jpg") center no-repeat;
  background-size: cover;
}

.banner-inner{
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: var(--hero-min-height);
  padding: 18px 14px 14px;
  text-align: center;
}

.site-title{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  border-radius: 999px;
  font-family: 'Beth Ellen', georgia, cursive, times;
  font-size: 2rem;
  font-style: italic;
  letter-spacing: 1px;
  color: #fefff9;
  text-shadow:
    0 1px 0 rgba(72,101,63,.22),
    0 2px 5px rgba(66,89,59,.30);
}

.site-title-fern{
  display: block;
  flex: 0 0 auto;
  image-rendering: pixelated;
}

.site-title-image{
  display: none;
  width: min(170px, 70vw);
  height: auto;
  margin: -2px auto 0;
}

:root[data-theme="dark"] .site-title-image{
  display: block;
}

.site-subtitle{
  display: inline-block;
  width: fit-content;
  padding: 5px 12px 4px;
  border: 1px dashed rgba(251,253,248,.95);
  border-radius: 999px;
  background: rgba(232,243,225,.76);
  box-shadow: 0 0 0 1px rgba(203,220,196,.45) inset;
  color: #526a4a;
  font-size: 0.625rem;
  font-style: italic;
  letter-spacing: 1.4px;
  text-transform: lowercase;
}

.banner-navi{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  padding: 6px 8px;
  border: 1px solid rgba(251,253,248,.42);
  border-radius: 999px;
  background: rgba(245,251,241,.30);
  box-shadow: 0 0 0 1px rgba(211,229,205,.24) inset;
}

.nav-soot-divider{
  display: block;
  width: auto;
  height: auto;
  margin: 3px auto 0;
  filter: none;
  image-rendering: pixelated;
}

:root[data-theme="dark"] .nav-soot-divider{
  display: none;
}

.mobile-menu-toggle{
  display: none;
}

.banner-navi a,
.nav-dropdown-toggle,
.mobile-menu-toggle{
  position: relative;
  padding: 7px 14px 5px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(254,255,249,.98), rgba(239,247,235,.94));
  box-shadow:
    0 1px 0 rgba(255,255,255,.75) inset,
    0 0 0 1px rgba(225,238,219,.65);
  font-style: italic;
  color: #526a4a;
  letter-spacing: 1.2px;
  transition: color .15s ease, transform .15s ease;
}

.banner-navi > a::before{
  content: "\1F337  ";
}

:root[data-theme="dark"] .banner-navi > a::before{
  content: "";
}

.nav-dropdown-toggle,
.mobile-menu-toggle{
  font-family: inherit;
  font-size: inherit;
  cursor: var(--cursor-link);
}

.banner-navi a:hover,
.nav-dropdown-toggle:hover,
.mobile-menu-toggle:hover,
.nav-dropdown:focus-within .nav-dropdown-toggle{
  transform: translateY(-1px);
  color: #48653f;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,249,238,.96));
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 2px 8px rgba(88,125,78,.10);
}

.nav-dropdown{
  position: relative;
  z-index: 40;
}

.nav-dropdown-menu{
  position: absolute;
  z-index: 50;
  top: 100%;
  left: 50%;
  display: none;
  min-width: 150px;
  padding: 8px 6px 6px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 8px;
  background: rgba(254,255,249,.98);
  box-shadow: 0 6px 14px rgba(72,101,63,.16);
  max-height: min(70vh, 470px);
  overflow-y: auto;
  transform: translateX(-50%);
}

.nav-dropdown-wide .nav-dropdown-menu{
  min-width: 190px;
}

.nav-dropdown:last-child .nav-dropdown-menu{
  right: 0;
  left: auto;
  transform: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-dropdown-menu a,
.nav-dropdown-label{
  display: block;
  text-align: center;
}

.nav-dropdown-label{
  margin: 3px 4px 0;
  padding-top: 6px;
  border-top: 1px dashed rgba(192,213,184,.95);
  color: var(--muted);
  font-size: 0.625rem;
  font-style: italic;
  letter-spacing: 1.4px;
  text-transform: lowercase;
}

.nav-dropdown-label:first-child{
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.site-search{
  position: relative;
  width: min(320px, 100%);
}

.site-search-panel{
  width: 100%;
}

.site-search input{
  width: 100%;
  padding: 5px 9px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: rgba(254,255,249,.96);
  color: var(--text);
  font-size: 0.625rem;
  font-style: italic;
}

.site-search-results{
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-search-panel .site-search-results{
  position: static;
  margin-top: 6px;
}

.library-tea-note{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 2px 4px 0;
}

.library-tea-button{
  appearance: none;
  display: block;
  flex: 0 0 auto;
  width: min(105px, 46%);
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: 0;
}

.library-tea-button:hover,
.library-tea-button:focus-visible,
.library-tea-button:active{
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.library-search-teapot{
  display: block;
  width: 100%;
  height: auto;
  transform-origin: 50% 82%;
}

.library-tea-button:hover .library-search-teapot,
.library-tea-button:focus-visible .library-search-teapot{
  animation: teapot-jiggle .44s ease-in-out infinite;
}

.library-tea-button.is-pouring .library-search-teapot{
  animation: teapot-click-jiggle .34s ease-in-out;
}

@keyframes teapot-jiggle{
  0%, 100%{
    transform: rotate(0deg) translateY(0);
  }

  25%{
    transform: rotate(-5deg) translateY(-1px);
  }

  50%{
    transform: rotate(4deg) translateY(0);
  }

  75%{
    transform: rotate(-3deg) translateY(-1px);
  }
}

@keyframes teapot-click-jiggle{
  0%, 100%{
    transform: rotate(0deg) scale(1);
  }

  35%{
    transform: rotate(-8deg) scale(1.04);
  }

  70%{
    transform: rotate(6deg) scale(1.02);
  }
}

.library-tea-bubble{
  position: relative;
  max-width: 128px;
  padding: 7px 9px;
  border: 1px solid var(--border-soft);
  border-radius: 12px 12px 12px 4px;
  background: var(--panel-white);
  box-shadow: 0 2px 5px rgba(78,104,70,.08);
  color: var(--muted);
  font-size: 0.625rem;
  font-style: italic;
  line-height: 1.35;
}

.library-tea-bubble::before{
  content: "";
  position: absolute;
  left: -6px;
  bottom: 10px;
  width: 10px;
  height: 10px;
  border-left: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--panel-white);
  transform: rotate(45deg);
}

.site-search-result,
.site-search-empty{
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
  box-shadow: 0 2px 8px rgba(78,104,70,.10);
  text-align: left;
}

.site-search-result{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-search-result span,
.site-search-result small,
.site-search-empty{
  color: var(--muted);
  font-size: 0.625rem;
  font-style: italic;
  line-height: 1.3;
}

.theme-toggle{
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  min-width: 72px;
  height: 24px;
  padding: 2px 4px 2px 8px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: rgba(254,255,249,.96);
  color: #526a4a;
  cursor: var(--cursor-link);
  font-size: 0.625rem;
  font-style: italic;
  line-height: 1;
}

.theme-toggle:hover{
  transform: translateY(-1px);
  background: rgba(239,247,235,.96);
  color: #48653f;
}

.theme-toggle-icon{
  min-width: 22px;
  text-align: center;
}

.theme-toggle-track{
  position: relative;
  width: 28px;
  height: 14px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: #eef7ea;
}

.theme-toggle-thumb{
  position: absolute;
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6f9468;
  transition: transform .18s ease;
}

:root[data-theme="dark"] .theme-toggle-thumb{
  transform: translateX(14px);
}
    
    
    

/* re-usable boxes and titles */
.box{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--box-radius);
  background: var(--panel);
}

.box::after{
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px dotted rgba(92,124,82,.08);
  border-radius: 2px;
  pointer-events: none;
}

.box-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 9px;
  border-bottom: 1px solid var(--border-soft);
  background: var(--panel-header);
}

.box-body{
  padding: 9px;
}

.box-title{
  margin: 0;
  font-size: 0.75rem;
  font-style: italic;
  font-weight: normal;
  color: #526a4a;
  text-transform: lowercase;
}

.head-dots{
  display: flex;
  align-items: center;
  gap: 4px;
}

.head-dots span{
  width: 8px;
  height: 8px;
  border: 1px solid rgba(92,124,82,.12);
  border-radius: 999px;
  background: #fefff9;
}

.box-soft .box-body{
  background: var(--panel-soft);
  color: #72846a;
  font-style: italic;
}

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

.quote{
  padding: 9px;
  border: 1px dashed #cbdcc4;
  border-radius: 4px;
  background: var(--panel-tint);
  color: #62775a;
  font-style: italic;
}

.update-log{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.update-log-scroll{
  max-height: 190px;
  overflow-y: auto;
  padding-right: 10px;
}

.note{
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  color: var(--muted);
  font-style: italic;
}

.mini-box{
  padding: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.mini-title{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 6px;
  padding: 4px 10px 1px;
  border-radius: 999px;
  background: var(--label-bg);
  color: #62775a;
  font-size: 0.625rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mini-title img{
  width: 12px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}
    
    
/* site info */

.site-info{
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: rgba(245,251,241,.55);
}

.site-info-row{
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 7px 8px;
  border-bottom: 1px dashed #cbdcc4;
}

.site-info-row:last-child{
  border-bottom: none;
}

.site-info-label{
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
  color: #5e7356;
  font-style: italic;
}

.site-info-label img{
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  object-fit: contain;
  opacity: .75;
}

.site-info-label b{
  font-size: 0.625rem;
  letter-spacing: 1px;
  color: #526a4a;
}

.site-info-value{
  padding-left: 16px;
  line-height: 1.3;
  color: var(--muted);
  font-style: italic;
}

.site-info-value a{
  color: inherit;
  border-bottom: 1px dotted #b8cdae;
}

.site-info-value a:hover{
  color: #48653f;
}

    
    
    
/* LEFT SIDEBAR things */
    
.profile-photo{
  width: 100%;
  margin-bottom: 8px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
}

.profile-photo img{
  display: block;
  width: 100%;
  height: auto;
}
    
/* social media links */

.socials{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.socials a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 28px;
  padding: 7px 12px 5px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(254,255,249,.98), rgba(239,247,235,.94));
  box-shadow:
    0 1px 0 rgba(255,255,255,.75) inset,
    0 0 0 1px rgba(225,238,219,.65),
    0 2px 5px rgba(78,104,70,.07);
  color: #526a4a;
  font-style: italic;
  line-height: 1.25;
}

.socials a:hover{
  transform: translateY(-1px);
  border-color: rgba(184,207,176,.98);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,249,238,.96));
  box-shadow:
    0 1px 0 rgba(255,255,255,.85) inset,
    0 0 0 1px rgba(225,238,219,.72),
    0 3px 8px rgba(88,125,78,.12);
  color: #48653f;
}

.social-name{
  color: inherit;
}

.social-user{
  color: var(--link);
}
    
/* calendar, the script is bottom of the html page */    

.calendar{
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  padding: 6px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.calendarTop{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 8px;
}

.calendarTop button{
  min-width: 28px;
  min-height: 26px;
  color: var(--muted);
  line-height: 1;
}

#calMonth{
  min-width: 0;
  text-align: center;
  font-style: italic;
  color: #526a4a;
}

.calendarWeekdays,
.calendarDays{
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}

.calendarWeekdays{
  margin-bottom: 4px;
}

.calendarWeekdays span{
  min-width: 0;
  text-align: center;
  font-size: 0.625rem;
  color: var(--muted);
  text-transform: lowercase;
}

.calendarDays span{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
  box-shadow: none;
  font-size: 0.625rem;
  color: var(--text);
  line-height: 1;
}

.calendar-day-number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  line-height: 1;
}

.calendarDays .empty{
  border: none;
  background: transparent;
}

.calendarDays .has-posts{
  border-color: #8fb9c6;
  background: #e6f4f8;
  color: #355f6b;
  cursor: var(--cursor-link);
  font-weight: 700;
}

.calendarDays .has-posts:hover,
.calendarDays .has-posts:focus{
  border-color: #6f9ead;
  background: #d6eef5;
  color: #244f5a;
  transform: none;
}

.calendarDays .today{
  border: 1px solid #d8aeb8;
  background: #f3dce2;
  color: #7a4f5a;
  font-weight: 700;
}

.calendarDays .selected{
  outline: 2px solid rgba(122,79,90,.35);
  outline-offset: 1px;
}
    
    
/* Main section (center) stylings */
    
    
.icon-float-left{
  float: left;
  margin-right: 5px;
  opacity: .6;
}    
    
    
.feature{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 8px;
  align-items: stretch;
}

.feature-image{
  min-height: 150px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
}

.feature-image img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.feature-text{
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  padding: 9px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: #fbfdf8;
}

.feature-text b{
  font-style: italic;
}

.feature-link{
  align-self: flex-start;
  padding: 5px 10px 4px;
  font-size: 0.625rem;
  line-height: 1;
  text-transform: lowercase;
}

.feature-link:hover{
  border-color: #e5c4d4;
  color: #7a4f5a;
}
    
/* lists */

.three-lists{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 7px;
}

.mini-box ul{
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.mini-box li{
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
  color: var(--muted);
  font-style: italic;
  line-height: 1.35;
}





.related-pages{
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.related-pages h3{
  margin: 0 0 6px;
}

.related-pages ul{
  margin: 0;
  padding-left: 18px;
}


    
    
    
/* thoughts entries */
   
.entries{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.latest-posts{
  padding-right: 4px;
  max-height: none;
  overflow: visible;
}

.entry{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  align-items: start;
  padding: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.entry.has-entry-cover{
  grid-template-columns: 88px 54px 1fr;
}

.latest-posts .entry,
.thoughts-list .entry{
  overflow: visible;
  align-items: stretch;
  box-sizing: border-box;
}

.latest-posts .entry{
  height: 120px;
}

.thoughts-list .entry{
  height: 120px;
}

.entry-pen{
  display: block;
  width: 16px;
  height: 16px;
  margin: 0 auto 3px;
  object-fit: contain;
  opacity: .7;
}   

.entry-cover{
  display: block;
  width: 54px;
  height: 88px;
  align-self: center;
  justify-self: center;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  background: var(--panel-white);
  box-shadow: 0 1px 0 rgba(80, 56, 42, .12);
}

.entry-cover img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
    
.entry-date{
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  padding: 7px;
  align-self: center;
  border: 1px dashed #cbdcc4;
  border-radius: 4px;
  background: var(--panel-white);
  justify-self: center;
  text-align: center;
  color: var(--muted);
  font-size: 0.7rem;
  font-style: italic;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.entry-date b{
  display: block;
  margin-bottom: 2px;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 700;
}

.entry-text{
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.latest-posts .entry-text,
.thoughts-list .entry-text{
  min-height: 0;
  height: 100%;
  overflow: visible;
}

.entry-text b{
  line-height: 1.35;
  font-style: italic;
  font-weight: 700;
}

.latest-posts .entry-text > b,
.thoughts-list .entry-text > b{
  display: block;
  flex: 0 0 auto;
  overflow: visible;
}

.entry-subtitle{
  color: var(--muted);
  font-style: italic;
  line-height: 1.35;
}

.latest-posts .entry-subtitle,
.thoughts-list .entry-subtitle{
  flex: 0 0 auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.entry-summary{
  line-height: 1.45;
}

.latest-posts .entry-summary,
.thoughts-list .entry-summary{
  display: block;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
}

.thoughts-layout{
  grid-template-columns: 220px minmax(0, 1fr) var(--sidebar-width);
}

.thoughts-list .entry{
  grid-template-columns: 88px 1fr;
}

.thoughts-list .entry.has-entry-cover{
  grid-template-columns: 88px 54px 1fr;
}

[data-journal-list]{
  scrollbar-gutter: stable;
}

[data-journal-list].is-scrollable{
  padding-right: 6px;
  overflow-x: hidden;
  overflow-y: auto;
}

.topics-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 760px;
  overflow-y: auto;
  padding-right: 4px;
}

.sitemap-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sitemap-group{
  padding: 10px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.sitemap-group h3{
  margin: 0 0 8px;
  color: #7a4f5a;
  font-size: 0.75rem;
  font-style: italic;
  text-transform: lowercase;
}

.sitemap-group ul{
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-group a{
  display: block;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--panel-white);
  color: #526a4a;
  font-style: italic;
}

.sitemap-group a:hover{
  background: #fff0f6;
  color: #7a4f5a;
}

.topic-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.journal-tools{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-bottom: 10px;
}

.rss-feed-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.journal-back-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.journal-back-button[hidden]{
  display: none;
}

.journal-type-filter.active{
  border-color: var(--accent-strong);
  background: var(--label-bg);
  color: var(--accent-strong);
}

.topic-button{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px 4px;
}

.journal-topic-button{
  justify-content: space-between;
  width: 100%;
  min-height: 32px;
  padding: 7px 10px 6px;
  border-radius: 6px;
  text-align: left;
}

.topic-button span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  min-height: 18px;
  padding: 1px 6px;
  border: 1px solid rgba(229,196,212,.75);
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: #7a4f5a;
  font-size: 0.625rem;
  line-height: 1;
}

.topic-button.active{
  border-color: #e5c4d4;
  background: linear-gradient(180deg, #fff9fb, #fff0f6);
  color: #7a4f5a;
}

.topic-results{
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}

.topic-results-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 8px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  color: #7a4f5a;
  font-style: italic;
}

.topic-results-head span{
  color: var(--muted);
  font-size: 0.625rem;
}

.topic-result{
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 7px 8px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(254,255,249,.98), rgba(239,247,235,.94));
  box-shadow:
    0 1px 0 rgba(255,255,255,.75) inset,
    0 0 0 1px rgba(225,238,219,.65);
  font-style: italic;
}

.topic-result small{
  color: var(--muted);
  font-size: 0.625rem;
}

.quote-entry .entry-text > b{
  font-size: 0.875rem;
  line-height: 1.45;
}

.source-image{
  display: block;
  padding: 6px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.source-image img{
  display: block;
  width: 100%;
  border-radius: 3px;
}

.source-link-row{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.source-link-button{
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 7px 12px 5px;
  overflow-wrap: anywhere;
}

.post{
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text);
  line-height: 1.55;
}

.post [hidden]{
  display: none !important;
}

.post h3,
.post h4,
.post h5,
.post h6{
  align-self: flex-start;
  margin: 10px 0 0;
  padding: 3px 0 3px 10px;
  border: 0;
  border-left: 4px solid var(--accent-strong);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--accent-strong);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.post h4{
  margin-left: 10px;
  border-left-color: var(--link);
  color: var(--link-hover);
  font-size: 0.875rem;
}

.post h5{
  margin-left: 20px;
  border-left-color: var(--border);
  color: var(--link);
  font-size: 0.75rem;
}

.post h6{
  margin-left: 30px;
  border-left-color: var(--border-soft);
  color: var(--muted);
  font-size: 0.6875rem;
}

.post .collapsible-heading{
  padding: 0;
}

.post .collapsible-heading-toggle{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  min-height: 0;
  padding: 3px 0 3px 10px;
  border: 0;
  border-left: 4px solid currentColor;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  cursor: var(--cursor-link);
  font: inherit;
  font-style: inherit;
  line-height: inherit;
  text-align: left;
  text-transform: inherit;
}

.post .collapsible-heading-toggle::before{
  content: "▾";
  flex: 0 0 auto;
  color: var(--accent-strong);
  font-size: 0.6875rem;
  line-height: 1;
  transform-origin: 50% 50%;
  transition: transform .16s ease;
}

.post .collapsible-heading.is-collapsed .collapsible-heading-toggle::before{
  transform: rotate(-90deg);
}

.post .collapsible-heading-toggle:hover,
.post .collapsible-heading-toggle:focus-visible,
.post .collapsible-heading-toggle:active{
  border-color: currentColor;
  background: transparent;
  box-shadow: none;
  color: inherit;
  transform: none;
}

.post .collapsible-heading-label{
  min-width: 0;
}

.post p{
  align-self: stretch;
  max-width: none;
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--text);
  font-size: 0.7188rem;
}

.post p::after{
  content: none;
}

.post p:nth-of-type(even){
  align-self: stretch;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.post p:nth-of-type(even)::after{
  content: none;
}

.post ul,
.post ol{
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
  padding: 0 0 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 0.7188rem;
}

.post blockquote,
.post .obsidian-callout{
  align-self: stretch;
  margin: 2px 0 8px;
  padding: 9px 12px;
  border: 1px solid var(--border-soft);
  border-left: 7px solid var(--accent-strong);
  border-radius: 7px;
  background: var(--panel-soft);
  color: var(--text);
  font-size: 0.7188rem;
  line-height: 1.55;
}

.post blockquote{
  background: var(--panel-soft);
}

.post .obsidian-callout{
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}

.post .obsidian-callout-title{
  margin: 0 0 6px;
  color: var(--accent-strong);
  font-weight: 700;
}

.post .obsidian-callout-content{
  display: block;
}

.post .obsidian-callout-bible,
.post .obsidian-callout-bible-verse{
  border-color: var(--border);
  border-left-color: var(--link);
  background: var(--panel-tint);
}

.post .obsidian-callout-bible .obsidian-callout-title,
.post .obsidian-callout-bible-verse .obsidian-callout-title{
  color: var(--link-hover);
}

body.journal-entry-page .post p{
  position: relative;
  max-width: 92%;
  margin: 0;
  padding: 9px 11px;
  border: 1px solid var(--border-soft);
  border-radius: 14px 14px 14px 5px;
  background: var(--panel-tint);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset;
}

body.journal-entry-page .post p::after{
  content: "";
  position: absolute;
  bottom: 5px;
  left: -5px;
  width: 8px;
  height: 8px;
  border-left: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--panel-tint);
  transform: rotate(45deg);
}

body.journal-entry-page .post p:nth-of-type(even){
  align-self: flex-end;
  border-color: #e5c4d4;
  border-radius: 14px 14px 5px 14px;
  background: #fff4f8;
}

body.journal-entry-page .post p:nth-of-type(even)::after{
  content: "";
  right: -5px;
  left: auto;
  border-color: #e5c4d4;
  background: #fff4f8;
}

body.journal-entry-page .post ul,
body.journal-entry-page .post ol{
  padding: 8px 10px 8px 24px;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  background: rgba(254,255,249,.74);
}

.post li::marker{
  color: var(--accent-strong);
}

.post strong{
  color: var(--accent-strong);
}

.post em{
  color: var(--link-hover);
}

.post a.wikilink{
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 2px 7px 1px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--panel-tint);
  color: var(--link-hover);
  font-style: italic;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.post a.wikilink:hover{
  border-color: var(--accent-strong);
  background: var(--panel-soft);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.post > img{
  align-self: flex-start;
  max-height: 360px;
  padding: 6px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.post-meta{
  padding-bottom: 6px;
  border-bottom: 1px dashed #cbdcc4;
  color: var(--muted);
  font-style: italic;
}

.post-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.post-nav a,
.post-nav button{
  padding: 7px 12px 5px;
}

.single-page{
  max-width: 640px;
  margin: var(--gap) auto 0;
}

/* about page */

.about-layout{
  grid-template-columns: 220px minmax(0, 1fr) var(--sidebar-width);
}

.commonplace-layout{
  grid-template-columns: 220px minmax(0, 1fr) var(--sidebar-width);
}

.commonplace-intro{
  display: grid;
  gap: 8px;
}

.commonplace-wall{
  column-width: 170px;
  column-gap: 20px;
}

.commonplace-entry{
  display: inline-block;
  width: 100%;
  margin: 0 0 24px;
  break-inside: avoid;
  color: var(--text);
  font-style: italic;
  line-height: 1.55;
  vertical-align: top;
}

.commonplace-entry h3{
  margin: 0 0 7px;
  color: #526a4a;
  font-family: 'Beth Ellen', georgia, cursive, times;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.35;
}

.commonplace-entry p{
  margin: 0;
}

.commonplace-entry img{
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 7px;
}

.commonplace-entry figcaption,
.commonplace-source{
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.625rem;
  line-height: 1.35;
  text-align: right;
}

.commonplace-poem{
  white-space: pre-line;
}

.commonplace-note{
  padding-left: 10px;
  border-left: 1px dashed var(--border-soft);
}

.about-me-box{
  position: relative;
  overflow: visible;
}

.about-facts{
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.about-fact{
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 6px;
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.about-fact span{
  color: var(--muted);
  font-style: italic;
  text-transform: lowercase;
}

.about-fact b{
  min-width: 0;
  overflow-wrap: anywhere;
  color: #526a4a;
  font-style: italic;
  font-weight: 700;
}

.about-intro{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border: 0;
  border-radius: 12px;
  background:
    linear-gradient(rgba(255,255,255,.58), rgba(255,255,255,.58)),
    var(--panel-tint);
  box-shadow: 0 1px 0 rgba(255,255,255,.85) inset;
}

.about-chat-status{
  display: flex;
  align-items: center;
  gap: 6px;
  align-self: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--panel-white);
  color: var(--muted);
  font-size: 0.625rem;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.about-chat-status span{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8db484;
  box-shadow: 0 0 0 2px rgba(141,180,132,.18);
}

.profile-title{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.profile-title img{
  display: block;
  image-rendering: pixelated;
}

.my-sites-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
  justify-items: center;
}

.my-site-card{
  display: block;
}

.my-site-card:hover{
  transform: translateY(-1px);
}

.my-site-button{
  display: block;
  width: 88px;
  max-width: 88px;
  height: 31px;
  image-rendering: auto;
}

.about-intro p{
  position: relative;
  max-width: 82%;
  padding: 10px 12px;
  border: 1px solid var(--border-soft);
  border-radius: 16px 16px 16px 4px;
  background: var(--panel-white);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 2px 5px rgba(78,104,70,.06);
  color: #62775a;
  font-style: italic;
}

.about-intro p::after{
  content: "";
  position: absolute;
  bottom: 3px;
  left: -6px;
  width: 10px;
  height: 10px;
  border-left: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  background: var(--panel-tint);
  transform: rotate(45deg);
}

.about-intro p:nth-of-type(even){
  align-self: flex-end;
  border-color: #e5c4d4;
  border-radius: 16px 16px 4px 16px;
  background: #fff4f8;
}

.about-intro p:nth-of-type(even)::after{
  right: -6px;
  left: auto;
  border-color: #e5c4d4;
  background: #fff4f8;
}

.about-list-grid,
.favorites-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.about-scroll-panel,
.favorites-scroll{
  max-height: 170px;
  overflow-y: auto;
  padding-right: 4px;
}

.about-scroll-panel{
  padding: 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.about-scroll-panel .mini-title{
  margin-bottom: 7px;
}

.about-scroll-panel .sparkle-list li::before{
  content: "\2022 ";
  color: #7a4f5a;
}

.favorites-scroll{
  max-height: 240px;
}

.favorites-grid .mini-box{
  color: var(--muted);
  font-style: italic;
}

.favorites-grid .mini-title{
  display: flex;
  width: fit-content;
  border: 1px solid #e5c4d4;
  background: #fff4f8;
  color: #7a4f5a;
  box-shadow: 0 0 0 1px rgba(255,255,255,.65) inset;
}

.quiz-results-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.quiz-result{
  min-height: 80px;
  overflow: hidden;
}

.quiz-result-content{
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.quiz-result iframe,
.quiz-result embed,
.quiz-result object{
  display: block;
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
}

.quiz-result img{
  display: block;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
}

.frog-secret{
  position: relative;
  z-index: 40;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 10px 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: var(--cursor-link);
  text-decoration: none;
}

.frog-secret:hover,
.frog-secret:focus-visible{
  transform: translateY(-2px);
}

.frog-secret img{
  display: block;
  max-width: 64px;
  max-height: 64px;
  image-rendering: auto;
  filter: var(--image-filter);
}

.frog-secret-bubble{
  position: absolute;
  left: 50%;
  bottom: calc(100% - 4px);
  width: max-content;
  max-width: 130px;
  padding: 7px 9px 5px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--panel-white);
  color: var(--text);
  font-size: 0.6875rem;
  line-height: 1.2;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.7) inset,
    2px 2px 0 rgba(111,142,101,.22);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(4px);
  transition: opacity .16s ease, transform .16s ease;
}

.frog-secret-bubble::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--panel-white);
  transform: translateX(-50%) rotate(45deg);
}

.frog-secret:hover .frog-secret-bubble,
.frog-secret:focus-visible .frog-secret-bubble,
.frog-secret.is-speaking .frog-secret-bubble{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* hidden frog page */

body.frog-page{
  background:
    radial-gradient(circle at 18% 18%, rgba(223,238,218,.72) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 28%, rgba(234,243,229,.82) 0 12px, transparent 13px),
    var(--body-bg);
}

body.frog-page img,
body.frog-page img:hover{
  filter: none;
}

.frog-layout{
  grid-template-columns: 210px minmax(0, 1fr) 190px;
}

.frog-lede{
  margin: 0 0 7px;
  color: var(--accent-strong);
  font-family: "Beth Ellen", var(--base-font);
  font-size: 1.375rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.frog-welcome-image{
  display: block;
  max-width: 72px;
  max-height: 72px;
  margin: 0 auto 9px;
}

.frog-sidebar-note,
.frog-writing-space,
.frog-random-fact{
  padding: 10px 12px;
  border: 1px solid var(--border-soft);
  border-radius: var(--box-radius);
  background: var(--panel-tint);
  box-shadow: 0 1px 0 rgba(255,255,255,.72) inset;
}

.frog-sidebar-note,
.frog-random-fact p{
  margin: 0;
}

.frog-writing-space{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.frog-writing-space p{
  margin: 0;
}

.frog-section-intro{
  margin: 0 0 10px;
  color: var(--muted);
  font-style: italic;
}

.frog-media-shelf{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(96px, 1fr));
  gap: 8px;
  min-height: 180px;
}

.frog-media-placeholder{
  display: grid;
  min-height: 120px;
  place-items: center;
  padding: 12px;
  border: 1px dashed var(--border);
  border-radius: 4px;
  background: var(--panel-tint);
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

.frog-media-shelf img{
  display: block;
  max-width: 100%;
  height: auto;
  margin: auto;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
}

.favorite-frog-list{
  margin: 0;
}

.stamps-grid{
  overflow: visible;
  padding: 2px 0;
}

.blinkies-grid{
  overflow: hidden;
  padding: 2px 0;
}

.blinkies-track,
.stamps-track{
  display: flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}

.blinkies-track{
  animation: blinkies-scroll 18s linear infinite;
}

.stamps-track{
  animation: blinkies-scroll 32s linear infinite;
}

.stamps-grid .stamps-track{
  display: block;
  width: auto;
  animation: none;
  transform: none;
  will-change: auto;
}

.blinkies-grid:hover .blinkies-track,
.stamps-grid:hover .stamps-track{
  animation-play-state: paused;
}

.blinkies-sequence,
.stamps-sequence{
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
  padding-right: 6px;
}

.stamps-grid .stamps-sequence{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding-right: 0;
}

.stamps-grid .stamps-sequence[aria-hidden="true"]{
  display: none;
}

.blinkies-grid img,
.stamps-grid img{
  display: block;
  justify-self: center;
  width: 88px;
  max-width: 88px;
  height: auto;
  image-rendering: auto;
  opacity: 0.75;
}

.blinkies-grid img,
.stamps-grid img{
  flex: 0 0 auto;
}

@keyframes blinkies-scroll{
  from{
    transform: translate3d(0, 0, 0);
  }

  to{
    transform: translate3d(-50%, 0, 0);
  }
}

/* art page */

.art-layout{
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr) var(--sidebar-width);
}

.art-filter-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.art-filter-sidebar{
  flex-direction: column;
  margin-bottom: 0;
}

.art-filter{
  padding: 7px 12px 5px;
}

.art-filter-sidebar .art-filter{
  width: 100%;
  text-align: left;
}

.art-filter.active{
  border-color: #e5c4d4;
  background: linear-gradient(180deg, #fff9fb, #fff0f6);
  color: #7a4f5a;
}

.art-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-height: 680px;
  overflow-y: auto;
  padding-right: 4px;
}

.art-card{
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  padding: 7px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
}

.art-card[hidden]{
  display: none;
}

.art-thumb,
.featured-artwork{
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.art-thumb{
  aspect-ratio: 1 / 1;
}

.featured-artwork{
  min-height: 190px;
  margin-bottom: 8px;
}

.art-thumb img,
.featured-artwork img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-thumb a,
.featured-artwork a{
  display: block;
  width: 100%;
  height: 100%;
}

.art-placeholder{
  width: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    var(--panel-tint);
  background-size: 12px 12px;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

.art-info{
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--muted);
  font-size: 0.625rem;
  font-style: italic;
  line-height: 1.3;
}

.art-info b{
  color: var(--text);
  font-size: 0.6875rem;
}

.art-empty{
  margin-top: 8px;
  padding: 8px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  color: var(--muted);
  font-style: italic;
}

/* photo gallery */

.photo-layout{
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr) var(--sidebar-width);
}

.photo-diary-title{
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.photo-diary-title img{
  display: block;
}

.photo-polaroid-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  gap: 18px 14px;
  align-items: start;
  padding: 8px 4px 4px;
}

.polaroid-card{
  display: grid;
  gap: 8px;
  padding: 9px 9px 12px;
  border: 1px solid rgba(203,220,196,.9);
  border-radius: 3px;
  background: #fffdf8;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 4px 8px rgba(78,104,70,.12);
  transform: rotate(var(--tilt, -1.4deg));
  transition: transform .18s ease, box-shadow .18s ease;
}

.polaroid-card:nth-child(even){
  --tilt: 1.2deg;
}

.polaroid-card:nth-child(3n){
  --tilt: -.6deg;
}

.polaroid-card:hover{
  transform: rotate(0deg) translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 6px 12px rgba(78,104,70,.16);
}

.polaroid-card a{
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  background: var(--panel-tint);
}

body.article-page .post p,
body.person-page .post p,
body.sprout-page .post p,
body.project-page .post p,
body.lecture-page .post p,
body.video-page .post p{
  align-self: stretch;
  max-width: none;
  margin: 0 0 6px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #405239;
  font-size: 0.7188rem;
}

body.article-page .post p::after,
body.person-page .post p::after,
body.sprout-page .post p::after,
body.project-page .post p::after,
body.lecture-page .post p::after,
body.video-page .post p::after,
body.article-page .post p:nth-of-type(even)::after,
body.person-page .post p:nth-of-type(even)::after,
body.sprout-page .post p:nth-of-type(even)::after,
body.project-page .post p:nth-of-type(even)::after,
body.lecture-page .post p:nth-of-type(even)::after,
body.video-page .post p:nth-of-type(even)::after{
  content: none;
}

body.article-page .post p:nth-of-type(even),
body.person-page .post p:nth-of-type(even),
body.sprout-page .post p:nth-of-type(even),
body.project-page .post p:nth-of-type(even),
body.lecture-page .post p:nth-of-type(even),
body.video-page .post p:nth-of-type(even){
  align-self: stretch;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.article-page .post ul,
body.article-page .post ol,
body.person-page .post ul,
body.person-page .post ol,
body.sprout-page .post ul,
body.sprout-page .post ol,
body.project-page .post ul,
body.project-page .post ol,
body.lecture-page .post ul,
body.lecture-page .post ol,
body.video-page .post ul,
body.video-page .post ol{
  padding: 0 0 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.polaroid-card img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid-caption{
  display: grid;
  gap: 4px;
  min-height: 58px;
  color: #526a4a;
  font-size: 0.625rem;
  font-style: italic;
  line-height: 1.25;
}

.polaroid-caption time{
  color: #7a4f5a;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.polaroid-caption p{
  margin: 0;
}

.sparkle-list{
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.sparkle-list li{
  padding: 6px 8px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  font-style: italic;
}

.sparkle-list li::before{
  content: "✧ ";
  color: #7a4f5a;
}

.social-button-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.social-button{
  display: block;
  padding: 7px 12px 5px;
  text-align: center;
}

.social-button:hover{
  border-color: #e5c4d4;
  color: #7a4f5a;
}


/* garden hub and navigation */

.garden-intro{
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.garden-key{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.garden-key-item,
.garden-key-action{
  min-height: 100%;
  padding: 9px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.garden-key-item b,
.garden-key-action b{
  display: block;
  margin-bottom: 4px;
  color: #526a4a;
  font-style: italic;
  text-transform: lowercase;
}

.garden-key-item p{
  color: var(--muted);
}

.garden-key-action{
  display: grid;
  grid-column: 1 / -1;
  gap: 7px;
}

.garden-random-link{
  display: block;
  padding: 8px;
  text-align: center;
}

.garden-nav-list,
.garden-nav-list ul{
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.garden-nav-list{
  gap: 8px;
}

.garden-nav a{
  display: block;
  width: 100%;
  padding: 7px 12px 5px;
}

.garden-nav-group{
  display: grid;
  gap: 6px;
}

.garden-nav-group summary,
.side-dropdown summary{
  margin-bottom: 6px;
  padding: 7px 12px 5px;
  border: 1px solid rgba(192,213,184,.95);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(254,255,249,.98), rgba(239,247,235,.94));
  color: #526a4a;
  cursor: var(--cursor-link);
  font-style: italic;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.garden-nav-group summary:hover,
.side-dropdown summary:hover{
  transform: translateY(-1px);
  border-color: rgba(184,207,176,.98);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(242,249,238,.96));
  color: #48653f;
}

.garden-nav-group ul,
.side-dropdown ul,
.side-dropdown-menu{
  padding-left: 8px;
}

.side-dropdown{
  display: grid;
  gap: 6px;
}

.side-dropdown ul,
.side-dropdown-menu{
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.garden-nav-active{
  border-color: #e5c4d4 !important;
  background: linear-gradient(180deg, #fff9fb, #fff0f6) !important;
  color: #7a4f5a;
}


/* library page */

.library-layout{
  grid-template-columns: 220px minmax(0, 1fr) var(--sidebar-width);
}

.library-nav{
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
}

.library-nav a,
.library-filter{
  display: block;
  width: 100%;
  padding: 7px 12px 5px;
  text-align: left;
}

.library-filter.active{
  border-color: #e5c4d4;
  background: linear-gradient(180deg, #fff9fb, #fff0f6);
  color: #7a4f5a;
}

.arcade-tag-nav{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4px 5px;
  margin: 0;
  padding: 0;
}

.arcade-tag-nav li{
  display: flex;
  flex: 0 0 auto;
  max-width: 100%;
}

.arcade-tag-nav .library-filter{
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: auto;
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  padding: 3px 7px 2px;
  border-radius: 5px;
  font-size: .72rem;
  line-height: 1.15;
  white-space: nowrap;
}

.tag-label{
  min-width: 0;
  overflow: visible;
  white-space: nowrap;
}

.tag-count{
  display: inline;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  flex: 0 0 auto;
  font-size: .65rem;
  line-height: inherit;
}

.tag-count::before{
  content: "(";
}

.tag-count::after{
  content: ")";
}

.library-nav-active{
  border-color: #e5c4d4 !important;
  background: linear-gradient(180deg, #fff9fb, #fff0f6) !important;
  color: #7a4f5a;
}

.library-intro{
  margin-bottom: 8px;
  padding: 8px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  color: var(--muted);
  font-style: italic;
}

.book-grid,
.game-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-height: 920px;
  overflow-y: auto;
  padding-right: 4px;
}

.book-card,
.game-card{
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding: 7px 7px 9px;
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  background: var(--panel-white);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 2px 5px rgba(78,104,70,.055);
}

.book-card:hover,
.game-card:hover{
  border-color: #e5c4d4;
  background: #fff4f8;
}

.book-card[hidden],
.game-card[hidden]{
  display: none;
}

.book-cover,
.game-cover{
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 3 / 4;
  border: 1px dashed var(--border-soft);
  border-radius: 2px;
  background: var(--panel-tint);
  color: var(--muted);
  font-style: italic;
}

.game-cover{
  aspect-ratio: 4 / 5;
}

.book-cover img,
.game-cover img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.book-cover-full{
  aspect-ratio: auto;
  min-height: 0;
}

.book-cover-full img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
}

.person-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-height: 920px;
  overflow-y: auto;
  padding-right: 4px;
}

.person-card{
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
  padding: 7px 7px 10px;
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  background: var(--panel-white);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 2px 5px rgba(78,104,70,.055);
}

.person-card:hover{
  border-color: #e5c4d4;
  background: #fff4f8;
}

.person-photo{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px dashed var(--border-soft);
  border-radius: 2px;
  background: var(--panel-tint);
  color: #9d7582;
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 6vw, 2.7rem);
  font-weight: 700;
}

.person-photo img{
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  border-radius: 3px;
}

.person-info{
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  text-align: center;
}

.person-name{
  overflow-wrap: anywhere;
  line-height: 1.2;
}

.person-role{
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.2;
}

.book-info,
.game-info{
  display: flex;
  flex-direction: column;
  gap: 1px;
  color: var(--muted);
  font-size: 0.625rem;
  font-style: italic;
  line-height: 1.25;
  text-align: center;
}

.book-info b,
.game-info b{
  color: var(--text);
  font-size: 0.625rem;
  line-height: 1.2;
}

.book-stars,
.game-rating{
  display: block;
  min-height: 13px;
  color: #7a4f5a;
  font-size: 0.6875rem;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: 0;
}

.book-stars:empty,
.game-rating:empty{
  display: none;
  min-height: 0;
}

.book-status[aria-label$="out of 5"],
.game-status[aria-label$="out of 5"],
.game-rating[aria-label$="out of 5"]{
  color: #7a4f5a;
  font-size: 0.6875rem;
  font-style: normal;
  line-height: 1.1;
}

.book-details,
.game-details{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.book-details .row,
.game-details .row{
  grid-template-columns: minmax(72px, auto) minmax(0, 1fr);
  padding: 6px 7px;
}

.library-empty,
.arcade-empty{
  margin-top: 8px;
  padding: 8px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 760px){
  .book-grid,
  .game-grid,
  .person-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-height: 780px;
  }
}

@media (max-width: 520px){
  .book-grid,
  .game-grid,
  .person-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 680px;
  }
}

.cbox-wrap{
  min-height: 160px;
  border: 1px dashed var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.cbox-wrap iframe{
  display: block;
  width: 100%;
  min-height: 260px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-white);
}
    
    
/* photo gallery */

.full-gallery{
  margin: 0 var(--gap) var(--gap);
}

.gallery{
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  max-height: 190px;
  overflow-y: auto;
  padding-right: 3px;
  scroll-behavior: smooth;
}

.gallery a{
  display: block;
  padding: 3px;
  border: 1px dotted var(--border-soft);
  border-radius: 5px;
  background: var(--panel-white);
  box-shadow: 0 1px 2px rgba(78,104,70,.06);
}

.gallery img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  opacity: .72;
  transition: opacity .2s ease, transform .1s ease;
}

.gallery a:hover img{
  opacity: 1;
  transform: scale(1.02);
}
    
    
    
    

/* RIGHT SIDEBAR things */

.palette{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.colour{
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(92,124,82,.12);
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.55) inset,
    0 1px 2px rgba(78,104,70,.06);
}
    
    
/* stat rows */

.current{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.row{
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.row-left{
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  font-style: italic;
}

.row-left img{
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  object-fit: cover;
  border-radius: 3px;
}

.row-value{
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.2;
  font-style: italic;
  color: var(--muted);
  text-align: right;
}

.arcade-page .library-sidebar .current .row{
  grid-template-columns: 1fr;
  align-items: start;
  gap: 5px;
}

.arcade-page .library-sidebar .current .row-value{
  text-align: left;
}

.arcade-stat-list{
  margin: 0;
  padding-left: 17px;
}

.arcade-stat-list li + li{
  margin-top: 3px;
}

#statuscafe{
  display: grid;
  gap: 5px;
}

#statuscafe-username{
  color: var(--muted);
  font-size: .68rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

#statuscafe-username a{
  color: inherit;
  text-decoration: none;
}

#statuscafe-content{
  padding: 8px 9px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  color: var(--text);
  font-size: .82rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

#statuscafe-content p{
  margin: 0;
}

#statuscafe-content p + p,
#statuscafe-content small,
#statuscafe-content time{
  margin-top: 4px;
  color: var(--muted);
  font-size: .68rem;
  font-style: italic;
  line-height: 1.2;
}

#statuscafe-content a{
  color: var(--accent-strong);
}

.microblog{
  display: grid;
  gap: 6px;
  max-height: 260px;
  padding-right: 4px;
  overflow-y: auto;
  scrollbar-color: var(--accent-soft) var(--panel-tint);
  scrollbar-gutter: stable;
}

.microblog-entry{
  padding: 8px 9px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
  color: var(--text);
  font-size: .82rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.microblog-entry time{
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: .68rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  text-transform: lowercase;
}

.microblog-entry p{
  margin: 0;
}

.microblog-entry p + p{
  margin-top: 5px;
}

.tamanotchi-widget{
  display: flex;
  justify-content: center;
}

.tamanotchi-widget a,
.tamanotchi-widget img{
  display: block;
}

.fansites-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 6px;
  justify-items: center;
}

.fansites-grid a,
.fansites-grid img{
  display: block;
}

.fansites-grid img{
  max-width: 88px;
  height: auto;
}
    
    
    
/* button wall */

.button-wall-grid{
  overflow: hidden;
  padding: 2px 0;
}

.button-wall-track{
  display: flex;
  width: max-content;
  animation: blinkies-scroll 26s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.button-wall-grid:hover .button-wall-track{
  animation-play-state: paused;
}

.button-wall-sequence{
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
  padding-right: 6px;
}

.button-wall{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.button-wall img{
  display: block;
  width: 88px;
  max-width: 88px;
  height: 31px;
  image-rendering: auto;
  opacity: 0.75;
}


/* webrings */

.webrings{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.webring{
  padding: 7px 8px;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
  background: var(--panel-tint);
}

.webring-title{
  margin-bottom: 5px;
  color: #4f5f48;
  font-style: italic;
  line-height: 1.2;
  text-transform: lowercase;
}

.webring-links{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.webring-links a{
  display: block;
  padding: 3px 4px;
  border: 1px dashed var(--border-soft);
  border-radius: 999px;
  background: var(--panel-white);
  color: var(--muted);
  font-size: 0.625rem;
  font-style: italic;
  text-align: center;
}

.webring-links a:hover{
  background: var(--label-bg);
  color: var(--link-hover);
}
    
    
/* update log */

.updatez{
  display: block;
  margin-top: 4px;
  padding-top: 4px;
  border-bottom: 1px dashed #cbdcc4;
  color: #72846a;
  font-size: 0.625rem;
  letter-spacing: 1px;
}

.note .updatez:last-child{
  border-bottom: none;
}
    
    
/* link me */

.link-me{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.link-button img{
  display: block;
  width: 88px;
  max-width: 88px;
  height: 31px;
  image-rendering: auto;
  opacity: 0.75;
}


.link-me textarea{
  width: 100%;
  height: 70px;
  resize: none;
  padding: 7px;
  border: 1px dashed #cbdcc4;
  border-radius: 4px;
  background: var(--panel-white);
  font-family: monospace;
  font-size: 0.625rem;
  line-height: 1.5;
  color: #526a4a;
}
    
    
    

/* Footer + Credits */
.footer{
  position: relative;
  z-index: 1;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border);
  background: rgba(234,243,229,.75);
  text-align: center;
}

.footer-inner{
  padding: 8px 10px;
  border: 1px dashed #cbdcc4;
  border-radius: 4px;
  background: rgba(251,253,248,.80);
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  body,
  body.home-page,
  body.about-page,
  body.thoughts-page,
  body.art-page,
  body.library-page,
  body.photo-page,
  body.frog-page{
    background-image: none !important;
    background-attachment: scroll !important;
  }

  .blinkies-track,
  .stamps-track{
    animation: none !important;
    transform: none !important;
    will-change: auto;
  }

  body::before{
    opacity: .22;
  }
}
    
    
    

/* RESPONSIVENESS */
    
    
@media (max-width:980px){
  body.home-page,
  body.about-page,
  body.thoughts-page,
  body.art-page,
  body.library-page,
  body.photo-page,
  body.frog-page{
    background-attachment: scroll;
  }

  body::before{
    opacity: .42;
  }

  .layout{
    grid-template-columns: 1fr;
  }

  .tumblr-feed{
    max-height: none;
    padding: 0;
    overflow-y: visible;
    scrollbar-gutter: auto;
    border: 0;
    background: none;
  }

  .frog-media-shelf{
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  }
  
  
  
  
  /* 
   Change order numbers to rearrange layout on mobile.
   Smaller number = appears higher on the page.
   
   To hide a section on mobile, use:
   
   display:none;

   example:
   .sidebar-right{ display:none; }
*/




  .main-content{
    order: 1;
  }

  .sidebar-left{
    order: 2;
  }

  .sidebar-right{
    order: 3;
  }

  .gallery{
    grid-template-columns: repeat(3, 1fr);
  }

  .sitemap-grid{
    grid-template-columns: 1fr;
  }

  .site-title{
    padding: 8px 16px 10px;
    font-size: 1.875rem;
  }

  .banner,
  .banner-inner{
    min-height: 260px;
  }

  .theme-toggle{
    top: 10px;
    left: 10px;
  }

  .feature,
  .garden-key,
  .photo-layout,
  .three-lists,
  .about-list-grid,
  .favorites-grid,
  .quiz-results-grid,
  .entry{
    grid-template-columns: 1fr;
  }

  .latest-posts .entry,
  .thoughts-list .entry{
    height: 202px;
  }

  .latest-posts .entry{
    height: 202px;
  }

  [data-journal-list].is-scrollable{
    padding-right: 0;
    overflow-y: visible;
  }

  .latest-posts .entry-date,
  .thoughts-list .entry-date{
    width: 88px;
    height: 88px;
    gap: 2px;
    min-height: 0;
    padding: 7px;
  }

  .latest-posts .entry-date b,
  .thoughts-list .entry-date b{
    display: block;
    margin-bottom: 2px;
  }

  .latest-posts .entry.has-entry-cover,
  .thoughts-list .entry.has-entry-cover{
    grid-template-columns: 88px 54px;
    align-content: start;
  }

  .latest-posts .entry.has-entry-cover .entry-text,
  .thoughts-list .entry.has-entry-cover .entry-text{
    grid-column: 1 / -1;
  }

  .banner-navi{
    display: none;
    width: min(320px, 100%);
    padding: 7px;
    border-radius: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .banner-navi.is-open{
    display: flex;
  }

  .mobile-menu-toggle{
    z-index: 45;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(220px, 100%);
    margin-top: 2px;
  }

  .nav-dropdown{
    width: 100%;
    text-align: center;
  }

  .nav-dropdown-toggle{
    width: 100%;
  }

  .nav-dropdown-menu{
    position: static;
    display: none;
    width: 100%;
    margin-top: 6px;
    left: 0;
    right: 0;
    min-width: 0;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu{
    display: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu{
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .banner-navi > a{
    width: 100%;
    text-align: center;
  }

  .nav-dropdown-menu a{
    width: 100%;
  }
}

@media (max-width:620px){
  .feature{
    grid-template-columns: 1fr;
  }

  .feature-image{
    order: -1;
    min-height: 0;
    aspect-ratio: 1;
  }

  .feature-text{
    min-height: 0;
  }

  .special-interest-grid{
    grid-template-columns: 1fr;
  }

  .tumblr-feed{
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .tumblr-post{
    max-width: none;
    width: 100%;
    grid-row-end: auto !important;
  }

  .tumblr-post-body .npf_row{
    flex-wrap: wrap;
  }

  .tumblr-viewer{
    padding: 10px;
  }

  .tumblr-viewer-post .npf_row{
    flex-wrap: wrap;
  }

  .frog-media-shelf{
    grid-template-columns: 1fr;
  }
}

/* dark mode final overrides */

:root[data-theme="dark"] body::before{
  mix-blend-mode: screen;
  opacity: .42;
}

:root[data-theme="dark"] body.frog-page{
  background:
    radial-gradient(circle at 18% 18%, rgba(110,143,104,.10) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 28%, rgba(110,143,104,.07) 0 12px, transparent 13px),
    #060706;
}

:root[data-theme="dark"] .frog-sidebar-note,
:root[data-theme="dark"] .frog-writing-space,
:root[data-theme="dark"] .frog-random-fact,
:root[data-theme="dark"] .frog-media-placeholder{
  border-color: var(--border);
  background: var(--panel);
  box-shadow: none;
}

:root[data-theme="dark"] .page,
:root[data-theme="dark"] .box,
:root[data-theme="dark"] .post,
:root[data-theme="dark"] .entry-card,
:root[data-theme="dark"] .library-card,
:root[data-theme="dark"] .art-card,
:root[data-theme="dark"] .site-search-result,
:root[data-theme="dark"] .site-search-empty{
  background: var(--panel);
  border-color: var(--border);
  box-shadow: var(--shadow);
}

:root[data-theme="dark"] .box-soft,
:root[data-theme="dark"] .box-soft .box-body{
  background: var(--panel-soft);
}

:root[data-theme="dark"] .box-head,
:root[data-theme="dark"] .mini-title,
:root[data-theme="dark"] .post h3,
:root[data-theme="dark"] .post h4,
:root[data-theme="dark"] .post h5,
:root[data-theme="dark"] .post h6{
  background: var(--panel-header);
  border-color: var(--border-soft);
  color: var(--text);
}

:root[data-theme="dark"] .banner{
  background:
    linear-gradient(rgba(0,0,0,.24), rgba(0,0,0,.36)),
    var(--panel);
  border-color: var(--border);
}

:root[data-theme="dark"] .site-title{
  color: #f4f4ef;
  text-shadow:
    0 1px 0 rgba(0,0,0,.45),
    0 2px 8px rgba(0,0,0,.6);
}

:root[data-theme="dark"] .site-subtitle,
:root[data-theme="dark"] .banner-navi{
  background: rgba(15,18,15,.86);
  border-color: var(--border);
  color: var(--text);
}

:root[data-theme="dark"] .banner-navi a,
:root[data-theme="dark"] .nav-dropdown-toggle,
:root[data-theme="dark"] .mobile-menu-toggle,
:root[data-theme="dark"] .theme-toggle,
:root[data-theme="dark"] .button-like,
:root[data-theme="dark"] button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle):not(.theme-toggle):not(.library-tea-button):not(.collapsible-heading-toggle),
:root[data-theme="dark"] .calendarTop button,
:root[data-theme="dark"] .art-filter,
:root[data-theme="dark"] .library-nav a,
:root[data-theme="dark"] .library-filter,
:root[data-theme="dark"] .garden-nav a,
:root[data-theme="dark"] .social-button,
:root[data-theme="dark"] .feature-link,
:root[data-theme="dark"] .post-nav a,
:root[data-theme="dark"] .post-nav button,
:root[data-theme="dark"] .source-link-button{
  border-color: var(--button-border);
  background: linear-gradient(180deg, #20251f, #111611);
  box-shadow:
    0 1px 0 rgba(255,255,255,.08) inset,
    0 0 0 1px rgba(255,255,255,.03);
  color: var(--text);
}

:root[data-theme="dark"] .banner-navi a:hover,
:root[data-theme="dark"] .nav-dropdown-toggle:hover,
:root[data-theme="dark"] .mobile-menu-toggle:hover,
:root[data-theme="dark"] .theme-toggle:hover,
:root[data-theme="dark"] .button-like:hover,
:root[data-theme="dark"] button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle):not(.theme-toggle):not(.library-tea-button):not(.collapsible-heading-toggle):hover,
:root[data-theme="dark"] .calendarTop button:hover,
:root[data-theme="dark"] .art-filter:hover,
:root[data-theme="dark"] .library-nav a:hover,
:root[data-theme="dark"] .library-filter:hover,
:root[data-theme="dark"] .garden-nav a:hover,
:root[data-theme="dark"] .social-button:hover,
:root[data-theme="dark"] .feature-link:hover,
:root[data-theme="dark"] .post-nav a:hover,
:root[data-theme="dark"] .post-nav button:hover,
:root[data-theme="dark"] .source-link-button:hover{
  border-color: #768c70;
  background: linear-gradient(180deg, #283227, #182018);
  color: #d8ead0;
}

:root[data-theme="dark"] .nav-dropdown-menu{
  background: #111511;
  border-color: var(--border);
}

:root[data-theme="dark"] input,
:root[data-theme="dark"] textarea,
:root[data-theme="dark"] select,
:root[data-theme="dark"] .site-search-input{
  background: #0e110e;
  border-color: var(--border);
  color: var(--text);
}

:root[data-theme="dark"] .row,
:root[data-theme="dark"] #statuscafe-content,
:root[data-theme="dark"] .about-fact,
:root[data-theme="dark"] .site-info-row{
  background: var(--panel-tint);
  border-color: var(--border-soft);
}

:root[data-theme="dark"] img{
  filter: var(--image-filter);
}

:root[data-theme="dark"] img.is-dither-ready{
  filter: none;
}

:root[data-theme="dark"] a:hover img,
:root[data-theme="dark"] button:hover img,
:root[data-theme="dark"] img:hover,
:root[data-theme="dark"] .art-card:hover img,
:root[data-theme="dark"] .library-card:hover img,
:root[data-theme="dark"] .entry-card:hover img,
:root[data-theme="dark"] .button-wall:hover img,
:root[data-theme="dark"] .blinkies-grid img:hover,
:root[data-theme="dark"] .stamps-grid img:hover{
  filter: var(--image-filter-hover);
}

:root[data-theme="dark"] a:hover img.is-dither-ready,
:root[data-theme="dark"] button:hover img.is-dither-ready,
:root[data-theme="dark"] img.is-dither-ready:hover,
:root[data-theme="dark"] .art-card:hover img.is-dither-ready,
:root[data-theme="dark"] .library-card:hover img.is-dither-ready,
:root[data-theme="dark"] .entry-card:hover img.is-dither-ready,
:root[data-theme="dark"] .button-wall:hover img.is-dither-ready,
:root[data-theme="dark"] .blinkies-grid img.is-dither-ready:hover,
:root[data-theme="dark"] .stamps-grid img.is-dither-ready:hover{
  filter: none;
}







/* darkmatter-inspired simplification */

:root[data-theme="dark"] body,
:root[data-theme="dark"] body.home-page,
:root[data-theme="dark"] body.about-page,
:root[data-theme="dark"] body.thoughts-page,
:root[data-theme="dark"] body.art-page,
:root[data-theme="dark"] body.library-page,
:root[data-theme="dark"] body.photo-page{
  background: #111111 url("https://shye.nekoweb.org/graphics_bg/star3.gif") repeat fixed;
}

:root[data-theme="dark"] body::before{
  mix-blend-mode: screen;
  opacity: .24;
}

:root[data-theme="dark"] .page{
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

:root[data-theme="dark"] .banner{
  background: #111111;
  border-color: #222222;
  box-shadow: none;
}

:root[data-theme="dark"] .site-title{
  padding: 4px 18px;
  border-radius: 999px;
  background: #101010;
  color: #aaaaaa;
  font-family: "Courier New", monospace;
  font-size: 1.25rem;
  font-style: normal;
  letter-spacing: 5px;
  text-shadow: none;
  text-transform: uppercase;
}

:root[data-theme="dark"] .site-subtitle{
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: #666666;
}

:root[data-theme="dark"] .banner-navi{
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

:root[data-theme="dark"] .banner-navi a,
:root[data-theme="dark"] .nav-dropdown-toggle,
:root[data-theme="dark"] .mobile-menu-toggle,
:root[data-theme="dark"] .theme-toggle{
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: #666666;
  font-family: "Courier New", monospace;
  font-style: normal;
  font-weight: 700;
  text-transform: lowercase;
}

:root[data-theme="dark"] .banner-navi a:hover,
:root[data-theme="dark"] .nav-dropdown-toggle:hover,
:root[data-theme="dark"] .mobile-menu-toggle:hover,
:root[data-theme="dark"] .theme-toggle:hover,
:root[data-theme="dark"] .nav-dropdown:focus-within .nav-dropdown-toggle{
  background: transparent;
  box-shadow: none;
  color: #cccccc;
  transform: none;
}

:root[data-theme="dark"] .nav-dropdown-menu{
  border: 1px solid #252525;
  border-radius: 0;
  background: #111111;
  box-shadow: none;
}

:root[data-theme="dark"] .box,
:root[data-theme="dark"] .box-soft,
:root[data-theme="dark"] .post,
:root[data-theme="dark"] .entry-card,
:root[data-theme="dark"] .library-card,
:root[data-theme="dark"] .art-card,
:root[data-theme="dark"] .polaroid-card{
  background: #171717;
  border-color: #252525;
  border-radius: 0;
  box-shadow: none;
}

:root[data-theme="dark"] .main-content .box,
:root[data-theme="dark"] .main-content .post{
  background: #202020;
}

:root[data-theme="dark"] .box::after{
  opacity: 0;
}

:root[data-theme="dark"] .box-head{
  background: transparent;
  border-bottom: 1px dashed #252525;
}

:root[data-theme="dark"] .box-title,
:root[data-theme="dark"] .mini-title,
:root[data-theme="dark"] .post h3,
:root[data-theme="dark"] .post h4,
:root[data-theme="dark"] .post h5,
:root[data-theme="dark"] .post h6{
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #999999;
  font-family: Verdana, Arial, sans-serif;
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: none;
}

:root[data-theme="dark"] .head-dots{
  opacity: .22;
}

:root[data-theme="dark"] .box-body,
:root[data-theme="dark"] .box-soft .box-body{
  background: transparent;
  color: #6e8f68;
}

:root[data-theme="dark"] .row,
:root[data-theme="dark"] .site-info-row,
:root[data-theme="dark"] .about-fact,
:root[data-theme="dark"] #statuscafe-content,
:root[data-theme="dark"] .site-search-result,
:root[data-theme="dark"] .site-search-empty{
  background: #111111;
  border-color: #252525;
  border-radius: 0;
  box-shadow: none;
}

:root[data-theme="dark"] .button-like,
:root[data-theme="dark"] button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle):not(.theme-toggle):not(.library-tea-button):not(.collapsible-heading-toggle),
:root[data-theme="dark"] .calendarTop button,
:root[data-theme="dark"] .art-filter,
:root[data-theme="dark"] .library-nav a,
:root[data-theme="dark"] .library-filter,
:root[data-theme="dark"] .garden-nav a,
:root[data-theme="dark"] .social-button,
:root[data-theme="dark"] .feature-link,
:root[data-theme="dark"] .post-nav a,
:root[data-theme="dark"] .post-nav button,
:root[data-theme="dark"] .source-link-button{
  border-color: #333333;
  border-radius: 0;
  background: #111111;
  box-shadow: none;
  color: #bbbbbb;
  font-style: normal;
}

:root[data-theme="dark"] .button-like:hover,
:root[data-theme="dark"] button:not(.nav-dropdown-toggle):not(.mobile-menu-toggle):not(.theme-toggle):not(.library-tea-button):not(.collapsible-heading-toggle):hover,
:root[data-theme="dark"] .calendarTop button:hover,
:root[data-theme="dark"] .art-filter:hover,
:root[data-theme="dark"] .library-nav a:hover,
:root[data-theme="dark"] .library-filter:hover,
:root[data-theme="dark"] .garden-nav a:hover,
:root[data-theme="dark"] .social-button:hover,
:root[data-theme="dark"] .feature-link:hover,
:root[data-theme="dark"] .post-nav a:hover,
:root[data-theme="dark"] .post-nav button:hover,
:root[data-theme="dark"] .source-link-button:hover{
  border-color: #555555;
  background: #171717;
  color: #dddddd;
  transform: none;
}

:root[data-theme="dark"] input,
:root[data-theme="dark"] textarea,
:root[data-theme="dark"] select,
:root[data-theme="dark"] .site-search-input{
  border-color: #333333;
  border-radius: 0;
  background: #111111;
  color: #888888;
}

:root[data-theme="dark"] b,
:root[data-theme="dark"] strong{
  color: #888888;
}

:root[data-theme="dark"] em,
:root[data-theme="dark"] i{
  color: #aaaaaa;
}






/* plain monochrome pass */

:root[data-theme="dark"]{
  --base-font: "Courier New", Consolas, "Lucida Console", monospace;
  --text: #d1d1d1;
  --muted: #a6a6a6;
  --link: #dddddd;
  --link-hover: #ffffff;
  --accent-strong: #9fbe96;
  --border: #242424;
  --border-soft: #202020;
  --panel: #171717;
  --panel-soft: #151515;
  --panel-tint: #111111;
  --panel-white: #171717;
  --panel-header: #171717;
}

:root[data-theme="dark"] .banner{
  min-height: 0;
  border: 0;
  background: transparent;
}

:root[data-theme="dark"] .banner::before,
:root[data-theme="dark"] .banner::after{
  display: none;
}

:root[data-theme="dark"] .banner-inner{
  min-height: 0;
  padding: 12px 14px 10px;
  gap: 7px;
}

:root[data-theme="dark"] .site-title{
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: #dddddd;
  font-size: 1.125rem;
  letter-spacing: 4px;
}

:root[data-theme="dark"] .site-subtitle{
  display: none;
}

:root[data-theme="dark"] .theme-toggle{
  top: 11px;
  left: 14px;
  min-width: 84px;
  width: auto;
  height: 20px;
  padding: 2px 4px 2px 8px;
  border: 1px solid #333333;
  border-radius: 999px;
  background: #111111;
  color: #bbbbbb;
  font-family: "Courier New", Consolas, "Lucida Console", monospace;
  font-size: 0.625rem;
  letter-spacing: 1px;
  line-height: 1;
}

:root[data-theme="dark"] .theme-toggle:hover{
  border-color: #4d6548;
  color: #8aa383;
}

:root[data-theme="dark"] .theme-toggle-track{
  border-color: #333333;
  background: #050505;
}

:root[data-theme="dark"] .theme-toggle-thumb{
  background: #6e8f68;
}

:root[data-theme="dark"] .banner-navi a,
:root[data-theme="dark"] .nav-dropdown-toggle,
:root[data-theme="dark"] .mobile-menu-toggle{
  padding: 7px 14px 5px;
  color: #b8b8b8;
  letter-spacing: 1px;
}

:root[data-theme="dark"] .banner-navi a:hover,
:root[data-theme="dark"] .nav-dropdown-toggle:hover,
:root[data-theme="dark"] .mobile-menu-toggle:hover,
:root[data-theme="dark"] .nav-dropdown:focus-within .nav-dropdown-toggle{
  color: #8aa383;
}

:root[data-theme="dark"] .feature-text,
:root[data-theme="dark"] .feature-image,
:root[data-theme="dark"] .polaroid-card a,
:root[data-theme="dark"] .quote,
:root[data-theme="dark"] .soft,
:root[data-theme="dark"] .note,
:root[data-theme="dark"] .updatez,
:root[data-theme="dark"] .calendarDays span,
:root[data-theme="dark"] .book-card,
:root[data-theme="dark"] .person-card,
:root[data-theme="dark"] .mini-box{
  background: #111111;
  border-color: #242424;
  border-radius: 0;
  box-shadow: none;
  color: #d1d1d1;
}

:root[data-theme="dark"] .polaroid-caption,
:root[data-theme="dark"] .polaroid-caption time{
  color: #d1d1d1;
}

:root[data-theme="dark"] .feature-text b,
:root[data-theme="dark"] .row-value,
:root[data-theme="dark"] .site-info-value,
:root[data-theme="dark"] .social-user{
  color: #d1d1d1;
}

:root[data-theme="dark"] .social-name,
:root[data-theme="dark"] #statuscafe-username,
:root[data-theme="dark"] #statuscafe-username a{
  color: #9fbe96;
}

:root[data-theme="dark"] .feature-link:hover{
  border-color: #4d6548;
  color: #8aa383;
}

:root[data-theme="dark"] .calendarDays .today,

:root[data-theme="dark"] .calendarDays .has-posts{
  background: #14242a;
  border-color: #365d68;
  border-radius: 4px;
  color: #a6d2de;
}

:root[data-theme="dark"] .calendarDays .has-posts:hover,
:root[data-theme="dark"] .calendarDays .has-posts:focus{
  background: #19303a;
  border-color: #4c7783;
  color: #c3e9f2;
}








:root[data-theme="dark"] .post a.wikilink,
:root[data-theme="dark"] .tag,
:root[data-theme="dark"] .topic-button,
:root[data-theme="dark"] .favorite-topic,
:root[data-theme="dark"] .source-link-button{
  background: #111111;
  border-color: #333333;
  color: #bbbbbb;
}

:root[data-theme="dark"] .post a.wikilink:hover,
:root[data-theme="dark"] .tag:hover,
:root[data-theme="dark"] .topic-button:hover,
:root[data-theme="dark"] .favorite-topic:hover,
:root[data-theme="dark"] .source-link-button:hover{
  border-color: #4d6548;
  color: #8aa383;
}

:root[data-theme="dark"] .cbox-wrap{
  border-color: #242424;
  border-radius: 0;
  background: #111111;
}

:root[data-theme="dark"] .cbox-wrap iframe{
  border-color: #242424;
  border-radius: 0;
  background: #111111;
  filter: grayscale(1) invert(1) brightness(.72) contrast(1.2);
}

:root[data-theme="dark"] .colour[title*="pink"]{
  background: #2f2f2f !important;
}

:root[data-theme="dark"] .colour[title="soft green"]{
  background: #050505 !important;
}

:root[data-theme="dark"] .colour[title="leaf green"]{
  background: #1a1a1a !important;
}

:root[data-theme="dark"] .colour[title="moss green"]{
  background: #3f5b38 !important;
}

:root[data-theme="dark"] .colour[title="lake blue"]{
  background: #777777 !important;
}

:root[data-theme="dark"] .footer{
  border-top-color: #242424;
  background: #111111;
}

:root[data-theme="dark"] .footer-inner{
  border-color: #242424;
  border-radius: 0;
  background: #171717;
  color: #a6a6a6;
}

/* dark mode contrast cleanup */

:root[data-theme="dark"] .cbox-wrap iframe{
  filter: grayscale(1) invert(1) brightness(1.15) contrast(1.3);
}

:root[data-theme="dark"] .sparkle-list li::before,
:root[data-theme="dark"] .about-scroll-panel .sparkle-list li::before,
:root[data-theme="dark"] .post li::marker{
  color: #6e8f68;
}

:root[data-theme="dark"] .post strong,
:root[data-theme="dark"] .post a.wikilink,
:root[data-theme="dark"] .social-button:hover,
:root[data-theme="dark"] .library-filter.active,
:root[data-theme="dark"] .library-nav-active,
:root[data-theme="dark"] .garden-nav-active{
  color: #6e8f68;
}

:root[data-theme="dark"] .post p:nth-of-type(even),
:root[data-theme="dark"] .post p:nth-of-type(even)::after{
  border-color: #242424;
  background: #111111;
}

:root[data-theme="dark"] .post a.wikilink,
:root[data-theme="dark"] .post a.wikilink:hover{
  border-color: #333333;
  background: #111111;
}

:root[data-theme="dark"] .library-nav a,
:root[data-theme="dark"] .library-filter,
:root[data-theme="dark"] .garden-nav a{
  background: #151515;
  border-color: #2a2a2a;
  color: #a8a8a8;
}

:root[data-theme="dark"] .garden-nav-group summary,
:root[data-theme="dark"] .side-dropdown summary{
  background: #151515;
  border-color: #2a2a2a;
  color: #a8a8a8;
}

:root[data-theme="dark"] .library-filter.active,
:root[data-theme="dark"] .library-nav-active,
:root[data-theme="dark"] .garden-nav-active{
  background: #8a8a8a !important;
  border-color: #6a6a6a !important;
  color: #050505 !important;
}

:root[data-theme="dark"] .library-nav a:hover,
:root[data-theme="dark"] .library-filter:hover,
:root[data-theme="dark"] .garden-nav a:hover{
  background: #202020;
  border-color: #4d6548;
  color: #8aa383;
}

:root[data-theme="dark"] .garden-nav-group summary:hover,
:root[data-theme="dark"] .side-dropdown summary:hover{
  background: #202020;
  border-color: #4d6548;
  color: #8aa383;
}

/* dark mode readability boost */

:root[data-theme="dark"] body,
:root[data-theme="dark"] .box-body,
:root[data-theme="dark"] .post,
:root[data-theme="dark"] .about-intro p,
:root[data-theme="dark"] .quote,
:root[data-theme="dark"] .soft,
:root[data-theme="dark"] .art-info,
:root[data-theme="dark"] .library-intro,
:root[data-theme="dark"] .entry-card,
:root[data-theme="dark"] .book-card,
:root[data-theme="dark"] .site-info-row,
:root[data-theme="dark"] .about-fact,
:root[data-theme="dark"] .row,
:root[data-theme="dark"] .updatez,
:root[data-theme="dark"] #statuscafe-content{
  color: #d1d1d1;
}

:root[data-theme="dark"] .row-left,
:root[data-theme="dark"] .row-value,
:root[data-theme="dark"] .post-meta,
:root[data-theme="dark"] .site-search-result span,
:root[data-theme="dark"] .site-search-result small,
:root[data-theme="dark"] .site-search-empty,
:root[data-theme="dark"] #statuscafe-content small,
:root[data-theme="dark"] #statuscafe-content time,
:root[data-theme="dark"] #statuscafe-content p + p{
  color: #a6a6a6;
}

:root[data-theme="dark"] a,
:root[data-theme="dark"] .post a{
  color: #dddddd;
}

:root[data-theme="dark"] a:hover,
:root[data-theme="dark"] .post a:hover{
  color: #9fbe96;
}

:root[data-theme="dark"] .about-page .about-intro p,
:root[data-theme="dark"] .about-page .about-intro p:nth-of-type(even){
  border-color: #303030;
  background: #171717;
  color: #d1d1d1;
}

:root[data-theme="dark"] .about-page .about-intro p::after,
:root[data-theme="dark"] .about-page .about-intro p:nth-of-type(even)::after{
  border-color: #303030;
  background: #171717;
}

:root[data-theme="dark"] .about-page .about-intro{
  background: #101010;
  box-shadow: none;
}

:root[data-theme="dark"] .about-chat-status{
  background: #171717;
  color: #a6a6a6;
}

:root[data-theme="dark"] .about-page .about-intro p{
  box-shadow: none;
}

:root[data-theme="dark"] .about-page .about-intro p:nth-of-type(even){
  border-color: #3a3035;
  background: #1d171a;
}

:root[data-theme="dark"] .about-page .about-intro p:nth-of-type(even)::after{
  border-color: #3a3035;
  background: #1d171a;
}

:root[data-theme="dark"] .sticker-collection img[data-no-dither="true"]{
  filter: none;
  opacity: 1;
}

:root[data-theme="dark"] .feature-image img[data-no-dither="true"]{
  filter: none;
  opacity: 1;
}

:root[data-theme="dark"] .commonplace-entry h3{
  color: var(--accent-strong);
}

:root[data-theme="dark"] .post h3,
:root[data-theme="dark"] .post h4,
:root[data-theme="dark"] .post h5,
:root[data-theme="dark"] .post h6{
  padding: 3px 0 3px 10px;
  border-left: 4px solid var(--accent-strong);
  background: transparent;
  color: var(--accent-strong);
  font-size: 1rem;
  letter-spacing: 0;
}

:root[data-theme="dark"] .post h4{
  margin-left: 10px;
  border-left-color: var(--link);
  color: var(--link-hover);
  font-size: 0.875rem;
}

:root[data-theme="dark"] .post h5{
  margin-left: 20px;
  border-left-color: var(--border);
  color: var(--link);
  font-size: 0.75rem;
}

:root[data-theme="dark"] .post h6{
  margin-left: 30px;
  border-left-color: var(--border-soft);
  color: var(--muted);
  font-size: 0.6875rem;
}

:root[data-theme="dark"] body.article-page .post p,
:root[data-theme="dark"] body.person-page .post p,
:root[data-theme="dark"] body.sprout-page .post p,
:root[data-theme="dark"] body.project-page .post p,
:root[data-theme="dark"] body.lecture-page .post p,
:root[data-theme="dark"] body.video-page .post p,
:root[data-theme="dark"] body.article-page .post p:nth-of-type(even),
:root[data-theme="dark"] body.person-page .post p:nth-of-type(even),
:root[data-theme="dark"] body.sprout-page .post p:nth-of-type(even),
:root[data-theme="dark"] body.project-page .post p:nth-of-type(even),
:root[data-theme="dark"] body.lecture-page .post p:nth-of-type(even),
:root[data-theme="dark"] body.video-page .post p:nth-of-type(even){
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--text);
}

:root[data-theme="dark"] body.article-page .post p::after,
:root[data-theme="dark"] body.person-page .post p::after,
:root[data-theme="dark"] body.sprout-page .post p::after,
:root[data-theme="dark"] body.project-page .post p::after,
:root[data-theme="dark"] body.lecture-page .post p::after,
:root[data-theme="dark"] body.video-page .post p::after,
:root[data-theme="dark"] body.article-page .post p:nth-of-type(even)::after,
:root[data-theme="dark"] body.person-page .post p:nth-of-type(even)::after,
:root[data-theme="dark"] body.sprout-page .post p:nth-of-type(even)::after,
:root[data-theme="dark"] body.project-page .post p:nth-of-type(even)::after,
:root[data-theme="dark"] body.lecture-page .post p:nth-of-type(even)::after,
:root[data-theme="dark"] body.video-page .post p:nth-of-type(even)::after{
  content: none;
}

:root[data-theme="dark"] body.article-page .post ul,
:root[data-theme="dark"] body.article-page .post ol,
:root[data-theme="dark"] body.person-page .post ul,
:root[data-theme="dark"] body.person-page .post ol,
:root[data-theme="dark"] body.sprout-page .post ul,
:root[data-theme="dark"] body.sprout-page .post ol,
:root[data-theme="dark"] body.project-page .post ul,
:root[data-theme="dark"] body.project-page .post ol,
:root[data-theme="dark"] body.lecture-page .post ul,
:root[data-theme="dark"] body.lecture-page .post ol,
:root[data-theme="dark"] body.video-page .post ul,
:root[data-theme="dark"] body.video-page .post ol{
  border: 0;
  background: transparent;
}

:root[data-theme="dark"] .post blockquote,
:root[data-theme="dark"] .post .obsidian-callout{
  border-color: var(--border-soft);
  border-left-color: var(--accent-strong);
  background: var(--panel-soft);
  box-shadow: none;
  color: var(--text);
}

:root[data-theme="dark"] .post .obsidian-callout-title{
  color: var(--accent-strong);
}

:root[data-theme="dark"] .post .obsidian-callout-bible,
:root[data-theme="dark"] .post .obsidian-callout-bible-verse{
  border-color: var(--border);
  border-left-color: var(--link);
  background: var(--panel-tint);
}

:root[data-theme="dark"] .post .obsidian-callout-bible .obsidian-callout-title,
:root[data-theme="dark"] .post .obsidian-callout-bible-verse .obsidian-callout-title{
  color: var(--link-hover);
}

/* Body buttons should sit on the page without an extra boxed outline. */
.main-content .button-like,
.main-content .feature-link,
.main-content .post-nav a,
.main-content .post-nav button,
.main-content .source-link-button,
.post a.wikilink{
  border-color: transparent;
  box-shadow: none;
}

.main-content .button-like:hover,
.main-content .feature-link:hover,
.main-content .post-nav a:hover,
.main-content .post-nav button:hover,
.main-content .source-link-button:hover,
.post a.wikilink:hover{
  border-color: transparent;
  box-shadow: none;
}

:root[data-theme="dark"] .main-content .button-like,
:root[data-theme="dark"] .main-content .feature-link,
:root[data-theme="dark"] .main-content .post-nav a,
:root[data-theme="dark"] .main-content .post-nav button,
:root[data-theme="dark"] .main-content .source-link-button,
:root[data-theme="dark"] .post a.wikilink,
:root[data-theme="dark"] .post a.wikilink:hover{
  border-color: transparent;
  box-shadow: none;
}
              
