@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/Figtree-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Figtree";
  src: url("/assets/fonts/Figtree-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 600;
}

body {
  font-family: "Figtree", serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
}

.mb-16 { margin-bottom: 2rem; }
.mt-16 { margin-top: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-32 { margin-top: 4rem; }
.parse-result {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--pico-blockquote-border-color);
  line-height: 1.75;
}
.text-center { text-align: center; }
.donate-button {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}
.full-width { width: 100%; }
.block { display: block; }
.font-bold { font-weight: 800; }
.no-margin { margin: 0; }
.wrapper {
  display: flex;
  justify-content: space-between;
}
.action-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.text-danger { color: red; }
.no-border { border: none; }
.no-padding { padding: 0; }
.empty-state {
  display: none;

  &:only-child {
    display: block;
  }
}
.grid-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;

  article {
    margin: 0;
  }

  @media (min-width: 48rem) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.grid-wrapper--two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

  * {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.first-wrapper { max-width: 75%; }
.truncated {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.container-md {
  max-width: 48rem;
}
