@charset "UTF-8";
:root {
  --font-main: "wf-bricolage-grotesque", system-ui;
  --font-mono: "wf-ibm-plex-mono", monospace;
  --bg-color-light: #fff;
  --bg-color-dark: #000;
  --bg-color: #f3f8f3;
  --bg-color-alt: #dfeadf;
  --bg-color-alt2: #e9efe8;
  --border-color: #a2a5a2;
  --border-color-alt: #545454;
  --accent-color: #b8ffb8;
  --shadow-color: #d1d5d1;
  --page-gutter: 1.25rem;
  --page-width: 80rem;
  --footer-width: calc(var(--page-width) - 9rem);
}
@media (min-width: 768px) {
  :root {
    --page-gutter: 2.5rem;
  }
}

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

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
  margin-block-end: 1em;
}

:is(h1, h2, h3, h4):not(:first-child) {
  margin-block-start: 1em;
}

p,
li,
figcaption {
  text-wrap: pretty;
}

p:not(:first-child) {
  margin-block-start: 1em;
}

/* A elements get default styles */
a {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Cursor pointer on interactive elements */
button,
input[type=submit],
input[type=reset],
input[type=button],
input[type=checkbox],
input[type=radio],
select {
  cursor: pointer;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 2rem;
}

.named-anchor {
  display: block;
  height: 0;
}

hr {
  border: 0;
  height: 0;
  border-block-start: 1px solid #000;
  margin-block: 1em;
}

body {
  background: linear-gradient(to bottom, var(--bg-color-light) 0%, var(--bg-color-light) 50%, var(--bg-color-alt) 50%, var(--bg-color-alt) 100%);
  background-attachment: fixed;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page-wrapper main.page-content {
  flex: 1;
}
.page-wrapper main.page-content .page-bg-gradient {
  background: linear-gradient(to bottom, var(--bg-color-light) 0%, var(--bg-color) 100%);
}
.page-wrapper main.page-content .page-bg-solid {
  background: var(--bg-color);
}
.page-wrapper footer.page-footer {
  padding-block: 2rem 2rem;
  background: var(--bg-color-alt);
}
@media (min-width: 768px) {
  .page-wrapper footer.page-footer {
    padding-block: 4.5rem 3.5rem;
  }
}

.container {
  max-width: var(--page-width);
  padding-inline: var(--page-gutter);
  margin-inline: auto;
}

hr {
  border-top: 1px dashed var(--border-color);
}

a {
  font-weight: 700;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

.registry-entries {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .registry-entries {
    gap: 2rem;
  }
}

.paginator-container {
  padding-block: 1.5rem 2.5rem;
}
@media (min-width: 768px) {
  .paginator-container {
    padding-block: 2.5rem 5.2rem;
  }
}

.bottom-container {
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .bottom-container {
    display: none;
  }
}

header.home-header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-block: 2.5rem 4rem;
}
@media (min-width: 768px) {
  header.home-header {
    flex-direction: row;
    padding-block: 4.5rem 8.5rem;
  }
}
header.home-header .title-col,
header.home-header .info-col {
  flex: 1;
}
header.home-header .title-col .header-title {
  max-width: 260px;
  margin-bottom: 2rem;
  font-family: var(--font-main);
  font-size: 2.875rem;
  line-height: 0.85;
  font-weight: 500;
}
@media (min-width: 576px) {
  header.home-header .title-col .header-title {
    font-size: 3.1rem;
  }
}
@media (min-width: 768px) {
  header.home-header .title-col .header-title {
    max-width: none;
    margin-bottom: 1rem;
    font-size: 3.1rem;
  }
}
@media (min-width: 992px) {
  header.home-header .title-col .header-title {
    font-size: 3.3rem;
  }
}
@media (min-width: 1200px) {
  header.home-header .title-col .header-title {
    font-size: 4.25rem;
  }
}
header.home-header .title-col .header-title a {
  text-decoration: none;
}
header.home-header .title-col .header-title a:hover {
  text-decoration: underline;
}
header.home-header .title-col .header-mobile-image {
  position: absolute;
  top: 1.125rem;
  right: 0;
  width: 112px;
  overflow: hidden;
}
header.home-header .title-col .header-mobile-image img {
  width: 100%;
  transform: translateX(0.6875rem);
}
@media (min-width: 768px) {
  header.home-header .title-col .header-mobile-image {
    display: none;
  }
}
header.home-header .title-col .header-subtitle {
  margin-top: 0;
  font-family: var(--font-main);
  font-size: 1.25rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  header.home-header .title-col .header-subtitle {
    font-size: 1.5rem;
  }
}
header.home-header .title-col hr {
  margin-block: 2rem;
}
@media (min-width: 768px) {
  header.home-header .title-col hr {
    margin-block: 2.5rem;
  }
}
header.home-header .title-col .header-search {
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.3;
}
header.home-header .title-col .header-search input {
  margin-top: 0.5rem;
  padding: 0.3em 0.6em;
  background: var(--bg-color-light);
  border: 0.5px solid var(--border-color-alt);
  border-radius: 10px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1.65rem;
  line-height: 1.65rem;
}
header.home-header .info-col {
  display: none;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  header.home-header .info-col {
    display: grid;
    grid-template-columns: 0.31fr 0.11fr 0.58fr;
  }
}
header.home-header .info-col .header-image {
  display: block;
  grid-column: 1/span 2;
  grid-row: 1;
  z-index: 1;
}
header.home-header .info-col .header-image img {
  width: 100%;
  transform: translateY(-3%) translateX(-10%);
  padding: 1.75rem;
}
header.home-header .info-col .header-description {
  grid-column: 2/span 2;
  grid-row: 1;
  padding: 2rem;
  background: var(--bg-color-light);
  border: 1px dashed var(--border-color);
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 300;
  color: var(--border-color-alt);
}

.registry-filters {
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .registry-filters {
    padding-bottom: 2rem;
  }
}
.registry-filters .filters-row {
  display: grid;
  row-gap: 0.5rem;
  column-gap: 0.125rem;
  grid-template-columns: auto auto;
}
@media (min-width: 768px) {
  .registry-filters .filters-row {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.registry-filters .filters-row .filter-button {
  padding: 0.1em 0.4em 0.2em;
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  background: var(--bg-color);
  border: 0.5px solid var(--border-color-alt);
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 300;
  text-decoration: none;
}
.registry-filters .filters-row .filter-button span {
  margin-top: -0.1em;
}
.registry-filters .filters-row .filter-button svg,
.registry-filters .filters-row .filter-button i {
  width: auto;
  height: 0.67em;
  font-style: normal;
  font-weight: 700;
  line-height: 0.67em;
  transition: transform 0.2s ease-in-out;
}
.registry-filters .filters-row .filter-button strong {
  font-family: var(--font-main);
  line-height: 1.2;
  font-weight: 600;
}
.registry-filters .filters-row .filter-button:hover {
  background: var(--bg-color-dark);
  color: var(--bg-color-light);
}
.registry-filters .filters-row .filter-button.active svg {
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .registry-filters .filters-row .filters-col,
  .registry-filters .filters-row .sort-col {
    flex: 1;
  }
}
.registry-filters .filters-row .filters-col {
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.125rem;
  text-align: left;
}
.registry-filters .filters-row .filters-col .filter-button strong {
  max-width: 240px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.registry-filters .filters-row .filters-col .filter-options {
  position: absolute;
  bottom: -0.25rem;
  left: -0.25rem;
  z-index: 2;
  transform: translateY(100%);
  padding: 0.875rem;
  min-width: 180px;
  background: var(--bg-color-alt2);
  border: 0.5px solid var(--border-color);
  border-radius: 10px;
  box-shadow: 0 0 7px var(--shadow-color);
}
.registry-filters .filters-row .filters-col .filter-options .limit-height {
  max-height: 350px;
  overflow-y: auto;
}
.registry-filters .filters-row .filters-col .filter-options .limit-height .filter-category {
  display: inline-block;
  margin-bottom: 0.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.3;
}
.registry-filters .filters-row .filters-col .filter-options .limit-height .filter-category:not(:first-child) {
  margin-top: 0.75rem;
}
.registry-filters .filters-row .filters-col .filter-options .limit-height .filter-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  margin-block: 0.125rem;
  padding: 0.3em 0.7em;
  background: var(--bg-color);
  border: 0.5px solid var(--border-color);
  border-radius: 1em;
  font-family: var(--font-main);
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 500;
  text-decoration: none;
}
.registry-filters .filters-row .filters-col .filter-options .limit-height .filter-link:hover {
  background: var(--bg-color-dark);
  color: var(--bg-color-light);
}
.registry-filters .filters-row .filters-col .filter-options .limit-height .filter-link i {
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: 0.67em;
}
.registry-filters .filters-row .sort-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.125rem;
  text-align: right;
}
.registry-filters .filters-row .sort-col .sort-options {
  position: absolute;
  bottom: -0.125rem;
  right: 0;
  transform: translateY(100%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.registry-filters .filters-row .sort-col .sort-options .sort-link {
  padding: 0.1em 0.4em 0.2em;
  display: inline-flex;
  align-items: flex-end;
  gap: 0.25em;
  background: var(--bg-color);
  border: 0.5px solid var(--border-color-alt);
  border-radius: 5px;
  font-family: var(--font-main);
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
}
.registry-filters .filters-row .sort-col .sort-options .sort-link:hover {
  background: var(--bg-color-dark);
  color: var(--bg-color-light);
}
.registry-filters .filters-row .info-col {
  grid-row: 1;
  grid-column: 1/-1;
  text-align: center;
  font-family: var(--font-main);
  font-size: 1.125rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .registry-filters .filters-row .info-col {
    font-size: 1.3rem;
    flex: 3;
  }
}
.registry-filters .filters-row .info-col em {
  padding: 0.08em 0.16em;
  font-style: normal;
  font-weight: 700;
  background: var(--accent-color);
}
.registry-filters .filters-row .info-col hr {
  margin-block: 0.5rem 0.1rem;
}
@media (min-width: 768px) {
  .registry-filters .filters-row .info-col hr {
    display: none;
  }
}
.registry-filters .filters-row + hr {
  display: none;
}
@media (min-width: 768px) {
  .registry-filters .filters-row + hr {
    display: block;
  }
}
.registry-filters hr {
  border-top: 0.5px solid var(--border-color);
}

.registry-entry {
  padding-inline: 0.75rem;
  padding-block: 1rem 0.75rem;
  background: var(--bg-color-light);
  border: 0.5px solid var(--border-color);
  border-radius: 15px;
}
@media (min-width: 768px) {
  .registry-entry {
    padding-inline: 1.5rem;
    padding-block: 1.5rem 1rem;
  }
}
.registry-entry .entry-header {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.25rem;
}
@media (min-width: 768px) {
  .registry-entry .entry-header {
    flex-direction: row;
    gap: 1rem;
  }
}
.registry-entry .entry-header .entry-title {
  margin: 0;
  font-family: var(--font-main);
}
@media (min-width: 768px) {
  .registry-entry .entry-header .entry-title strong,
  .registry-entry .entry-header .entry-title span {
    line-height: 2.1rem;
    vertical-align: middle;
  }
}
.registry-entry .entry-header .entry-title strong {
  font-size: 1.25rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .registry-entry .entry-header .entry-title strong {
    font-size: 1.75rem;
  }
}
.registry-entry .entry-header .entry-title strong::after {
  content: "";
  display: inline-block;
  margin-inline: 0.45em 0.35em;
  margin-top: -0.098em;
  width: 1.5px;
  background: currentColor;
  height: 1em;
  vertical-align: middle;
  transform: rotate(15deg);
}
.registry-entry .entry-header .entry-title span {
  font-size: 1rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .registry-entry .entry-header .entry-title span {
    font-size: 1.125rem;
  }
}
.registry-entry .entry-header .entry-time-in-use {
  margin-left: auto;
  font-family: var(--font-main);
  font-size: 0.875rem;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
@media (min-width: 768px) {
  .registry-entry .entry-header .entry-time-in-use {
    line-height: 2.1rem;
  }
}
.registry-entry hr {
  border-top: 0.5px solid var(--border-color);
  margin-bottom: 0;
}
.registry-entry .entry-collapsible {
  height: 10rem;
  overflow: hidden;
  transition: height 0.5s ease-in-out;
}
.registry-entry .entry-collapsible .entry-content {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}
@media (min-width: 768px) {
  .registry-entry .entry-collapsible .entry-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .registry-entry .entry-collapsible .entry-content .entry-table-col {
    grid-column: 2;
    grid-row: 1;
  }
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td {
  padding: 0;
  border-bottom: 0.5px solid var(--border-color);
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td:first-child {
  width: 25%;
  padding-left: 0.3125rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .registry-entry .entry-collapsible .entry-content .entry-table-col table td:first-child {
    padding-left: 0.625rem;
  }
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child {
  padding-right: 0.1875rem;
  text-align: right;
}
@media (min-width: 768px) {
  .registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child {
    padding-right: 0.375rem;
  }
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child:has(.tab-link-scroller-button) {
  padding-right: 0;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child .pill {
  position: relative;
  display: inline-block;
  margin-block: 0.4rem;
  padding: 0.3em 0.7em;
  background: var(--bg-color);
  border-radius: 1em;
  font-family: var(--font-main);
  font-size: 0.75rem;
  line-height: 1.2;
  font-weight: 500;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child .pill.has-tooltip, .registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child .pill.has-link {
  background: var(--bg-color-alt2);
  border: 0.5px solid var(--border-color);
  text-decoration: none;
  cursor: pointer;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child .pill.has-tooltip:hover, .registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child .pill.has-link:hover {
  background: var(--bg-color-dark);
  color: var(--bg-color-light);
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child .pill.has-tooltip .pill-tooltip-container, .registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child .pill.has-link .pill-tooltip-container {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(calc(-100% - 0.25rem));
  z-index: 2;
  width: 300px;
  max-width: 82vw;
  pointer-events: none;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child .pill.has-tooltip .pill-tooltip-container .pill-tooltip, .registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child .pill.has-link .pill-tooltip-container .pill-tooltip {
  display: inline-block;
  padding: 0.3em 0.7em;
  background: var(--bg-color);
  border: 0.5px solid var(--border-color-alt);
  border-radius: 1em;
  color: var(--bg-color-dark);
  text-align: left;
  cursor: auto;
  pointer-events: auto;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child .pill.tab-link {
  margin-bottom: 0;
  padding-top: 0.4em;
  padding-bottom: 0.6em;
  border-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td:last-child .pill.tab-link.active {
  background: var(--bg-color-dark);
  color: var(--bg-color-light);
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td .tab-link-scroller-container {
  position: relative;
  overflow: hidden;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td .tab-link-scroller-container:has(.tab-link-scroller-button) {
  padding-inline: 1.5rem;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td .tab-link-scroller-container .tab-link-scroller-button {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color-light);
  border: 0.5px solid var(--border-color);
  border-width: 0 0.5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  cursor: pointer;
  z-index: 1;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td .tab-link-scroller-container .tab-link-scroller-button.left {
  left: 0;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td .tab-link-scroller-container .tab-link-scroller-button.right {
  right: 0;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td .tab-link-scroller-container .tab-link-scroller-button:hover {
  background: var(--bg-color-dark);
  color: var(--bg-color-light);
}
.registry-entry .entry-collapsible .entry-content .entry-table-col table td .tab-link-scroller-container .tab-link-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-inline: 0.25rem;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col .tab-content-container .tab-content {
  border-left: 0.5px solid var(--border-color);
  border-right: 0.5px solid var(--border-color);
  margin-bottom: 1rem;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col .tab-content-container .tab-content.hidden {
  display: none;
}
.registry-entry .entry-collapsible .entry-content .entry-table-col .tab-content-container .tab-content table:last-child td:first-child {
  width: 75%;
}
@media (min-width: 768px) {
  .registry-entry .entry-collapsible .entry-content .entry-text-col {
    grid-column: 1;
    grid-row: 1;
  }
}
.registry-entry .entry-collapsible .entry-content .entry-text-col .entry-updated-at {
  padding-block: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.3;
}
.registry-entry .entry-collapsible .entry-content .entry-text-col .entry-description {
  margin-bottom: 1rem;
}
.registry-entry .entry-collapsible .entry-content .entry-text-col .entry-description p {
  font-family: var(--font-main);
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 300;
}
.registry-entry .entry-collapsible .entry-content .entry-text-col .entry-sources {
  margin-bottom: 1rem;
}
.registry-entry .entry-collapsible .entry-content .entry-text-col .entry-sources .entry-sources-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
}
.registry-entry .entry-collapsible .entry-content .entry-text-col .entry-sources ul {
  margin: 0;
  padding: 0;
  margin-block: 0.15rem 0.5rem;
  padding-left: 1.5em;
  font-family: var(--font-main);
  font-size: 0.75rem;
  line-height: 1.6667;
  font-weight: 300;
  list-style: none;
}
.registry-entry .entry-collapsible .entry-content .entry-text-col .entry-sources ul li {
  position: relative;
}
.registry-entry .entry-collapsible .entry-content .entry-text-col .entry-sources ul li::before {
  content: "•";
  display: block;
  position: absolute;
  left: -0.75em;
}
.registry-entry .entry-collapsible .entry-content .entry-text-col .entry-sources ul li a {
  font-weight: inherit;
}
.registry-entry .entry-actions {
  position: relative;
}
.registry-entry .entry-actions .expand-button {
  display: block;
  width: 100%;
  padding: 0.375rem 1em;
  background: var(--bg-color-light);
  border: 0.5px solid var(--border-color-alt);
  border-radius: 1.3em;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.3;
  font-weight: 600;
}
.registry-entry .entry-actions .expand-button:hover {
  background: var(--bg-color-dark);
  color: var(--bg-color-light);
}
.registry-entry.collapsed .entry-actions::before {
  content: "";
  display: block;
  height: 2.5rem;
  position: absolute;
  top: calc(-1 * 2.5rem);
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, transparent, var(--bg-color-light));
  pointer-events: none;
}

.paginator {
  display: flex;
  gap: 0.25rem;
  width: fit-content;
  margin-inline: auto;
}
.paginator .page-link {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.5px solid var(--border-color-alt);
  border-radius: 5px;
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1;
  text-decoration: none;
  opacity: 0.5;
  cursor: default;
}
.paginator .page-link.active {
  background: var(--accent-color);
  font-weight: 700;
  opacity: 1;
}
.paginator .page-link svg {
  width: auto;
  height: 45%;
}
.paginator a.page-link {
  opacity: 1;
  cursor: pointer;
}
.paginator a.page-link:hover {
  background: var(--bg-color-dark);
  color: var(--bg-color-light);
}
.paginator .page-links {
  display: flex;
}
.paginator .page-links .page-link {
  border-radius: 0;
}
.paginator .page-links .page-link:not(:first-child) {
  border-left: 0;
}
.paginator .page-links .page-link:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.paginator .page-links .page-link:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.bottom-description {
  padding: 2rem;
  background: var(--bg-color-light);
  border: 1px dashed var(--border-color);
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 300;
  color: var(--border-color-alt);
}

footer.page-footer .container {
  max-width: var(--footer-width);
}
footer.page-footer .footer-content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  footer.page-footer .footer-content {
    flex-direction: row;
    gap: 4.5rem;
  }
  footer.page-footer .footer-content .footer-description {
    flex: 2;
  }
  footer.page-footer .footer-content .footer-support {
    flex: 1;
  }
  footer.page-footer .footer-content .footer-separator {
    display: none;
  }
}
footer.page-footer .footer-content h3 {
  font-family: var(--font-main);
  font-size: 1.125rem;
}
footer.page-footer .footer-content p,
footer.page-footer .footer-content button[type=submit] {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1.3;
}
footer.page-footer .footer-content p a {
  font-family: var(--font-main);
}
footer.page-footer .footer-content .about-link {
  font-family: var(--font-main);
  font-size: 0.875rem;
}
footer.page-footer .footer-content .button-link {
  display: inline-flex;
  gap: 0.5em;
  align-items: center;
  padding: 0.6em 0.9em;
  background: var(--accent-color);
  border: 0.5px solid var(--border-color-alt);
  border-radius: 5px;
  font-family: var(--font-mono);
  font-weight: 300;
  text-decoration: none;
}
footer.page-footer .footer-content .button-link:not(:disabled):hover {
  background: var(--bg-color-dark);
  color: var(--bg-color-light);
}
footer.page-footer .footer-content .button-link svg {
  width: 1em;
  height: 1em;
}
footer.page-footer .footer-content .newsletter-form .form-group {
  margin-top: 0.5rem;
}
footer.page-footer .footer-content .newsletter-form .form-group label {
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  line-height: 1.3;
  font-weight: 300;
}
footer.page-footer .footer-content .newsletter-form .form-group label input {
  margin-top: 0.25rem;
  padding: 0.3em 0.6em;
  background: var(--bg-color);
  border: 0.5px solid var(--border-color-alt);
  border-radius: 5px;
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1rem;
}
footer.page-footer .footer-content .newsletter-form .form-group .checkbox {
  display: flex;
  gap: 0.5em;
}
footer.page-footer .footer-content .newsletter-form .form-group .checkbox input[type=checkbox] {
  appearance: none;
  display: grid;
  place-items: center;
  background: var(--bg-color);
  margin: 0;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.5px solid var(--border-color-alt);
  border-radius: 5px;
}
footer.page-footer .footer-content .newsletter-form .form-group .checkbox input[type=checkbox]:checked {
  background: var(--accent-color);
}
footer.page-footer .footer-content .newsletter-form .form-group .checkbox input[type=checkbox]:checked::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.8em;
  margin-top: -0.2em;
  border: 0 solid currentColor;
  border-width: 0 1px 1px 0;
  transform-origin: center;
  transform: rotate(45deg);
}
footer.page-footer .footer-content .newsletter-form .form-group button[type=submit]:disabled,
footer.page-footer .footer-content .newsletter-form .form-group .checkbox:disabled,
footer.page-footer .footer-content .newsletter-form .form-group input:disabled {
  cursor: wait;
  filter: grayscale(1);
}

/*# sourceMappingURL=bundle.css.8e3a252178e5.map */