/* Variables */

:root {
  --jotter-font-body: 'Ovo', serif;
  --jotter-font-titles: 'Ovo', serif;
  --jotter-color-body-bg: #fff;
  --jotter-color-body: #333;
  --jotter-color-titles: #333; 
  --jotter-color-light: #999;
  --jotter-color-lighter: #ddd;
  --jotter-color-lightest: #eee;
  --jotter-color-white: #fff;
  --jotter-color-dark: #000;
  --jotter-shadow: 0 0.5rem 1rem var(--jotter-color-lightest);
}
html.theme-dark {
  --jotter-color-body-bg: #1a1a1a;
  --jotter-color-body: #e6e6e6;
  --jotter-color-titles: #ffffff;
  --jotter-color-light: #aaaaaa;
  --jotter-color-lighter: #555555;
  --jotter-color-lightest: #3a3a3a;
  --jotter-color-white: #000;
  --jotter-color-dark: #fff;
  --jotter-shadow: none;
}

html.jotter-color-scheme-sand {
  --jotter-color-body-bg: #f7f2ea;
  --jotter-color-body: #6b5d4e;
  --jotter-color-titles: #5c4e40;
  --jotter-color-light: #9a8a7a;
  --jotter-color-lighter: #c9bcaa;
  --jotter-color-lightest: #ddd2c4;
  --jotter-color-white: #fcf9f5;
  --jotter-color-dark: #2d2419;
}
html.jotter-color-scheme-sand.theme-dark {
  --jotter-color-body-bg: #201b16;
  --jotter-color-body: #c9bcaa;
  --jotter-color-titles: #dfd4c5;
  --jotter-color-light: #7a6e60;
  --jotter-color-lighter: #4d443b;
  --jotter-color-lightest: #37302a;
  --jotter-color-white: #0d0a08;
  --jotter-color-dark: #f0e8dd;
}

html.jotter-color-scheme-ocean {
  --jotter-color-body-bg: #ebf0f5;
  --jotter-color-body: #3d525e;
  --jotter-color-titles: #2d404c;
  --jotter-color-light: #7a95a8;
  --jotter-color-lighter: #b0c5d4;
  --jotter-color-lightest: #d0dde8;
  --jotter-color-white: #f5f8fa;
  --jotter-color-dark: #1a2933;
}
html.jotter-color-scheme-ocean.theme-dark {
  --jotter-color-body-bg: #141e26;
  --jotter-color-body: #bccfd9;
  --jotter-color-titles: #d4e3ed;
  --jotter-color-light: #6f8ea0;
  --jotter-color-lighter: #4a5f6b;
  --jotter-color-lightest: #33424d;
  --jotter-color-white: #0a1117;
  --jotter-color-dark: #ebf1f5;
}
html.jotter-color-scheme-forest {
  --jotter-color-body-bg: #e8ede2;
  --jotter-color-body: #3a5440;
  --jotter-color-titles: #2a4430;
  --jotter-color-light: #7a9a7a;
  --jotter-color-lighter: #b0ccaa;
  --jotter-color-lightest: #d0e0ca;
  --jotter-color-white: #f5f8f2;
  --jotter-color-dark: #1a2a1c;
}
html.jotter-color-scheme-forest.theme-dark {
  --jotter-color-body-bg: #141e15;
  --jotter-color-body: #bcd4be;
  --jotter-color-titles: #d4e8d6;
  --jotter-color-light: #6f8a72;
  --jotter-color-lighter: #4a5f47;
  --jotter-color-lightest: #334233;
  --jotter-color-white: #0a110b;
  --jotter-color-dark: #ebf2ec;
}

html.jotter-color-scheme-rose {
  --jotter-color-body-bg: #f5edee;
  --jotter-color-body: #5e4245;
  --jotter-color-titles: #4d3236;
  --jotter-color-light: #a07a80;
  --jotter-color-lighter: #dbbcc0;
  --jotter-color-lightest: #ebd8da;
  --jotter-color-white: #fcf8f8;
  --jotter-color-dark: #261a1c;
}
html.jotter-color-scheme-rose.theme-dark {
  --jotter-color-body-bg: #1f1416;
  --jotter-color-body: #d4bec1;
  --jotter-color-titles: #e8d4d7;
  --jotter-color-light: #8a6e73;
  --jotter-color-lighter: #6a4e52;
  --jotter-color-lightest: #4a3538;
  --jotter-color-white: #0d0809;
  --jotter-color-dark: #f2ecec;
}

html.jotter-color-scheme-lavender {
  --jotter-color-body-bg: #f0edf5;
  --jotter-color-body: #4a425e;
  --jotter-color-titles: #3a324d;
  --jotter-color-light: #8a7aa0;
  --jotter-color-lighter: #cbbadd;
  --jotter-color-lightest: #e4d8ee;
  --jotter-color-white: #f8f5fa;
  --jotter-color-dark: #1f1a2a;
}
html.jotter-color-scheme-lavender.theme-dark {
  --jotter-color-body-bg: #18141f;
  --jotter-color-body: #cdc4d9;
  --jotter-color-titles: #e2d8ed;
  --jotter-color-light: #8a7a9e;
  --jotter-color-lighter: #554a63;
  --jotter-color-lightest: #3b3345;
  --jotter-color-white: #0d0a11;
  --jotter-color-dark: #f0ecf2;
}

/* Reset */

*, *::before, *::after {
  box-sizing: border-box;
}

*:not(dialog) {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

svg {
  overflow: visible;
}

#ghost-portal-root, #ghost-portal {
  isolation: isolate;
}

#ghost-portal-root {
  position: relative;
  z-index: 9999;
}

.kg-width-wide {
  grid-column: unset;
}

.kg-width-full {
  grid-column: unset;
}

/* Helpers */

/* Flex */

.d-flex {
  display: flex;
}

.d-none {
  display: none;
}

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

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-end {
  justify-content: end;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/* Layout */

.h-100 {
  height: 100%;
}

.nowrap {
  white-space: nowrap;
}

.overflow-hidden {
  overflow: hidden;
}

.position-absolute {
  position: absolute;
}

.position-fixed {
  position: fixed;
}

.position-relative {
  position: relative;
}

/* Margins and padding */

.mb-025 {
  margin-bottom: 0.25rem;
}

.mb-05 {
  margin-bottom: 0.5rem;
}

.mb-0 {
	margin-bottom: 0!important;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-15 {
  margin-bottom: 1.5rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-25 {
  margin-bottom: 2.5rem;
}

.mb-3 {
	margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mt-025 {
  margin-top: 0.25rem;
}

.mt-15 {
  margin-top: 1.5rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-8 {
  margin-top: 8rem;
}

.ms-0125 {
  margin-left: 0.125rem;
}

.ms-025 {
  margin-left: 0.25rem;
}

.ms-05 {
  margin-left: 0.5rem;
}

.ms-15 {
  margin-left: 1.5rem;
}

.me-025 {
  margin-right: 0.25rem;
}

.me-05 {
  margin-right: 0.5rem;
}

.me-1 {
  margin-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mx-025 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.pt-05 {
  padding-top: 0.5rem;
}

/* Images */

.img-object-fit {
  inset: 0;
  object-fit: cover;
  position: absolute;
  height: 100%;
  width: 100%;
}

/* Interface */

.cursor-pointer {
  cursor: pointer;
}

/* Typography */

.fw-400 {
  font-weight: 400;
}

.fw-700 {
  font-weight: 700;
}

.text-xxs {
  font-size: 0.625rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-std {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.25rem;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Global */

html {
  font-size: clamp(16px, calc(0.5357vw + 11.29px), 25px);
}

html.jotter-text-sm {
  font-size: clamp(15px, calc(0.5357vw + 10.286px), 24px);
}

html.jotter-text-xs {
  font-size: clamp(14px, calc(0.5357vw + 9.286px), 23px);
}

body {
  background-color: var(--jotter-color-body-bg);
  color: var(--jotter-color-body);
  display: flex;
  flex-direction: column;
  font-family: var(--gh-font-body, var(--jotter-font-body));
  line-height: 1.75;
  min-height: 100%;
  position: relative;
  transition: margin-right 0.2s ease-out;
}

@media (max-width: 959.98px) {
  body.jotter-nav-menu-open {
    overflow: hidden;
  }
}

@media (min-width: 960px) {
  body.jotter-nav-menu-open {
    margin-right: 20rem;
  }
}

.jotter-body-overlay {
  background-color: var(--jotter-color-body-bg);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease-out;
  z-index: 99;
}

@media (max-width: 959.98px) {
  body.jotter-nav-menu-open .jotter-body-overlay {
    opacity: 0.75;
    pointer-events: auto;
  }
}

.jotter-page-fade {
  animation: fade-out 0.5s forwards;
  background-color: var(--jotter-color-body-bg);
  inset: 0;
  pointer-events: none;
  z-index: 102;
}

@keyframes fade-out {
  0% {opacity: 1;}
  20% {opacity: 1;} 
  100% {opacity: 0;}
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Body Background Patterns */

.jotter-body-bg {
  inset: 0;
  z-index: -1;
}

.jotter-body-bg.pinstripe {
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 0.625rem,
    color-mix(in srgb, var(--jotter-color-dark) 1.5%, transparent) 0.375rem,
    color-mix(in srgb, var(--jotter-color-dark) 1.5%, transparent) 0.75rem
  );
  filter: blur(0.075rem);
}

.jotter-body-bg.weave {
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 0.25rem,
      color-mix(in srgb, var(--jotter-color-dark) 1.5%, transparent) 0.25rem,
      color-mix(in srgb, var(--jotter-color-dark) 1.5%, transparent) 0.375rem
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 0.25rem,
      color-mix(in srgb, var(--jotter-color-dark) 1.5%, transparent) 0.25rem,
      color-mix(in srgb, var(--jotter-color-dark) 1.5%, transparent) 0.375rem
    );
  filter: blur(0.05rem);
}

.jotter-body-bg.dimple {
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 0.25rem,
      color-mix(in srgb, var(--jotter-color-dark) 0.75%, transparent) 0.25rem,
      color-mix(in srgb, var(--jotter-color-dark) 0.75%, transparent) 0.5rem
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 0.25rem,
      color-mix(in srgb, var(--jotter-color-dark) 0.75%, transparent) 0.25rem,
      color-mix(in srgb, var(--jotter-color-dark) 0.75%, transparent) 0.5rem
    );
}

.jotter-body-bg.dots {
  background-image: radial-gradient(
    color-mix(in srgb, var(--jotter-color-dark) 7.5%, transparent) 1px,
    transparent 1px
  );
  background-size: 0.5rem 0.5rem;
}

.jotter-body-bg.herringbone {
  background-image: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 0.375rem,
      color-mix(in srgb, var(--jotter-color-dark) 1.5%, transparent) 0.375rem,
      color-mix(in srgb, var(--jotter-color-dark) 1.5%, transparent) 0.5rem
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 0.375rem,
      color-mix(in srgb, var(--jotter-color-dark) 1.5%, transparent) 0.375rem,
      color-mix(in srgb, var(--jotter-color-dark) 1.5%, transparent) 0.5rem
    );
}

/* Layout */

.jotter-main {
  flex-grow: 1;
  padding: 8rem 1.5rem;
}

.jotter-wrapper {
	max-width: 34rem;
}

/* Typography */

a {
  color: var(--ghost-accent-color);
  text-decoration: none;
  transition: color 0.15s ease-out;
}

a:hover {
  text-decoration: underline;
}

:is(h1, h2, h3, h4, h5, h6, p, ol, ul):last-child {
  margin-bottom: 0;
}

h1,h2,h3,h4,h5,h6 {
  color: var(--jotter-color-titles);
  font-family: var(--gh-font-heading, var(--jotter-font-titles));
  font-weight: 700;
  line-height: 1.375;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

h1 {
	font-size: 1.75rem;
  margin-bottom: 2rem;
}

body.home-template h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

hr {
  border: 0;
	border-top: 1px solid var(--jotter-color-lightest);
  color: var(--jotter-color-lightest);
	margin: 1.5rem 0;
  position: relative;
}

/* Buttons */

.jotter-button {
  background-color: var(--ghost-accent-color);
  color: #fff;
  border-radius: 0;
  font-family: var(--gh-font-body, var(--jotter-font-body));
  font-size: 0.875rem!important;
  font-weight: 700;
  height: auto;
  letter-spacing: 0;
  line-height: 1;
  min-height: unset;
  padding: 0.65rem 1rem 0.6rem;
  text-decoration: none!important;
  transition: opacity 0.15s ease-out;
}

.jotter-button:hover {
  opacity: 0.92;
}

/* Dark Mode Toggle */

.jotter-dark-mode-toggle {
  background-color: transparent;
  border: none;
  height: 1.5rem;
  width: 1.5rem;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.jotter-dark-mode-toggle > div {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0; left: 0;
}

.jotter-dark-mode-toggle > div:first-child {
  transform: rotateY(0deg);
}

.jotter-dark-mode-toggle > div:last-child {
  transform: rotateY(180deg);
}

.jotter-dark-mode-toggle.is-dark > div:first-child {
  transform: rotateY(-180deg);
}

.jotter-dark-mode-toggle.is-dark > div:last-child {
  transform: rotateY(0deg);
}

html.theme-system.theme-dark .jotter-dark-mode-toggle svg:last-child {
  transform: rotateY(0deg);
}

html.theme-system.theme-dark .jotter-dark-mode-toggle svg:first-child {
  transform: rotateY(-180deg);
}

/* Nav */

.jotter-nav {
  line-height: 1;
  position: absolute;
  top: 1.25rem; right: 1.25rem; left: 1.25rem;
  z-index: 101;
}

@media (min-width: 960px) {
  .jotter-nav {
    position: fixed;
  }
}

:is(.jotter-nav, .jotter-nav-menu) .jotter-nav-link {
  color: var(--jotter-color-light);
}

@media screen and (pointer: fine) {
  :is(.jotter-nav, .jotter-nav-menu) .jotter-nav-link:hover {
    color: var(--ghost-accent-color);
  }
}

.jotter-nav :is(a,button) {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 32px;
  width: 32px;
  transition: 0.15s ease-out;
}

.jotter-nav :is(a,button) svg {
  height: 20px;
  min-width: 20px;
  width: 20px;
}

.jotter-nav-search {
  background-color: transparent;
  border: none;
  padding: 0;
}

.jotter-menu-toggle {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.jotter-menu-toggle svg {
  transition: opacity 0.15s ease-out;
}

.jotter-menu-toggle svg:last-child {
  opacity: 0;
  top: 50%; left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

body.jotter-nav-menu-open .jotter-menu-toggle svg:first-child {
  opacity: 0;
}

body.jotter-nav-menu-open .jotter-menu-toggle svg:last-child {
  opacity: 1;
}

body.jotter-nav-menu-open .jotter-nav-right :is(a,button):not(.jotter-menu-toggle) {
  opacity: 0;
  pointer-events: none;
}

body.jotter-nav-menu-open .jotter-nav-right :is(a,button):not(.jotter-menu-toggle) {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 959.98px) {
  body.jotter-nav-menu-open .jotter-nav-link.home {
    opacity: 0.25;
    pointer-events: none;
  }
}

.jotter-nav-tags {
  margin-bottom: -0.375rem;
}

/* Nav Menu */

.jotter-nav-menu {
  background-color: var(--jotter-color-body-bg);
  box-shadow: 0px 0px 0.4rem 0.05rem var(--jotter-color-lightest);
  overflow-y: auto;
  padding: 3.5rem 1.5rem 1.5rem;
  top: 0; right: -20.4rem; bottom: 0;
  transition: right 0.2s ease-out;
  width: 20rem;
  z-index: 100;
}

body.jotter-nav-menu-open .jotter-nav-menu {
  right: 0;
}

.jotter-nav-menu ul {
  list-style: none;
  padding-left: 0;
}

.jotter-nav-menu li:not(:last-child) {
  margin-bottom: 0.25rem;
}

.jotter-nav-menu li a {
  color: var(--jotter-color-body);
  display: block;
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jotter-nav-menu li a:hover {
  color: var(--ghost-accent-color);
}

.jotter-nav-menu .jotter-tag-pill {
  margin: 0 0.375rem 0.375rem 0;
}

.jotter-nav-label {
  color: var(--jotter-color-light);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

/* Header */

.jotter-header h1 a {
  color: var(--jotter-font-titles);
  text-decoration: none;
}

.jotter-header-logo img {
  height: auto;
  width: auto;
  max-width: 75%;
  max-height: 100%;
  object-fit: contain;
}

html.theme-dark .jotter-logo-light-mode {
  display: none;
}

html.theme-dark .jotter-logo-dark-mode {
  display: block;
}

@media (max-width: 479.98px) {
  .jotter-header-title {
    align-items: start;
    flex-direction: column;
  }
  .jotter-header-title .jotter-button {
    margin-top: 1rem;
    margin-left: 0;
  }
}

/* Footer */ 

footer {
  height: 3rem;
  padding: 0 1.5rem;
  text-align: center;
}

@media (max-width: 719.98px) {
  footer .jotter-wrapper {
    flex-direction: column;
    justify-content: center;
  }
}

.jotter-footer-menu ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.jotter-footer-menu li {
  padding-right: 0.5rem;
}

/* Post List */

.jotter-post-list-item-title {
  flex: 0 1 auto;
  min-width: 0;
}

.jotter-post-list-item-spacer {
  flex: 1 1 10%;
  min-width: 10%;
}

.jotter-post-list-item-spacer:before {
  content: '............................................................................................................................................';
  color: var(--jotter-color-lightest);
  display: block;
  margin: 0 0.25rem;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.15s ease-out;
}

.jotter-post-list-item-spacer:before {
  color: var(--jotter-color-lighter);
}

.jotter-post-list-item-date {
  flex: 0 0 auto;
}

.jotter-post-list-item a {
  color: var(--jotter-color-body);
  text-decoration: none;
  transition: 0.15s ease-out;
}

.jotter-post-list-item:hover a:not(.jotter-tag-pill) {
  color: var(--ghost-accent-color);
}

.jotter-post-list-item.featured .icon-pin {
  color: var(--jotter-color-light);
  height: 0.875rem;
  width: 0.875rem;
  position: absolute;
  top: 50%; left: -0.15rem;
  transform: translateY(-50%) translateX(-100%);
}

.jotter-post-list-item.current-year .date-short.d-none {
  display: inline;
}

.jotter-post-list-item.current-year .date-full {
  display: none;
}

.jotter-year-label {
  font-weight: bold;
  margin: 1.75rem 0 0.25rem;
}

/* Tag Pill */

.jotter-tag-pill {
  background-color: var(--jotter-color-lightest);
  color: var(--jotter-color-body);
  display: inline-block;
  font-size: 0.625rem;
  line-height: 1;
  margin-left: 0.375rem;
  padding: 0.175rem 0.25rem;
  text-decoration: none!important;
  transition: 0.15s ease-out;
}

.jotter-tag-pill:hover {
  background-color: var(--jotter-color-lighter);
}

:is(body.tag-template,.jotter-post-list.jotter-tag-groups) .jotter-tag-pill {
  display: none;
}

/* Authors & Recommendations */

.jotter-author-nav a {
  color: var(--jotter-color-body);
  text-decoration: none!important;
}

.jotter-author-nav a:hover {
  color: var(--ghost-accent-color);
}

.jotter-author-nav:not(:first-child) {
  margin-top: 1rem;
}

.jotter-author-img {
  border-radius: 50%;
  height: 4rem;
  min-width: 4rem;
  width: 4rem;
}

.jotter-author-nav .jotter-author-img {
  height: 2rem;
  min-width: 2rem;
  width: 2rem;
}

.jotter-recommendations .jotter-author-img {
  border: 2px solid var(--jotter-color-lightest);
}

.jotter-recommendations-title {
  line-height: 1.375;
  margin-bottom: -0.25rem;
}

.jotter-recommendations-desc {
  display: -webkit-box;
  line-height: 1.375;
  overflow-y: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.jotter-recommendations a:hover {
  color: var(--jotter-color-body);
}

.jotter-recommendations .jotter-recommendations-url {
  transition: 0.15s ease-out;
}

.jotter-recommendations a:hover .jotter-recommendations-url {
  color: var(--ghost-accent-color);
}

.jotter-social-icons > * {
  color: var(--jotter-color-light);
  margin-right: 0.375rem;
  margin-bottom: 0.125rem;
}

.jotter-social-icons svg {
  height: 20px;
  width: 20px;
}

.jotter-social-icons > *:hover {
  color: var(--ghost-accent-color);
}

/* Announcement Bar */

.jotter #announcement-bar-root:has(.gh-announcement-bar) {
  margin-top: 4rem;
}

.jotter .gh-announcement-bar {
  min-height: 0;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.375;
  text-wrap: balance;
}

/* Pagination */

.pagination:not(:has(a)) {
    display: none;
}