@charset "UTF-8";
:root {
  --list-indentation: 1em;
  --content-width: 60rem;
  --block-radius: min(4vh, 3vw);
  --block-padding: var(--block-radius);
  --block-spacing: var(--block-radius);
  --block-item-radius: calc(var(--block-radius) - var(--block-padding));
  --block-item-spacing: calc(var(--block-radius) / 2);
}

/** Helpers */
.card {
  position: relative;
}

.card a::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.inset-box {
  padding: var(--block-padding);
  border-radius: var(--block-radius);
  background: rgb(241.518125, 234.65, 227.781875);
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0.1rem 0.1rem inset, rgba(255, 255, 255, 0.2) 0px 1px 0px;
  font-family: "PT Sans", sans-serif;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.call-to-action {
  --cta-fg: white;
  --cta-fg-hover: white;
  --cta-bg: #5B6FDC linear-gradient(to bottom, #6875EF 0%, #5D66CE 100%);
  --cta-bg-hover: darken(#5B6FDC, 5%) linear-gradient(to bottom, darken(#5C6AE9, 8%) 0%, darken(#3440C2, 10%) 100%);
  color: var(--cta-fg);
  background: var(--cta-bg);
}
.call-to-action:visited {
  color: var(--cta-fg);
}
.call-to-action:hover {
  color: var(--cta-fg-hover);
  background: var(--cta-bg-hover);
}

.call-to-action {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  top: 0px;
}
.call-to-action:hover {
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.3);
}
.call-to-action:active, .call-to-action:focus {
  outline: none;
  top: 2px;
  box-shadow: none;
}

.call-to-action {
  display: block;
  min-width: 50%;
  max-width: 90%;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  margin-bottom: 2em;
  padding: 1em 2em;
  box-sizing: border-box;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
  font-family: "PT Sans", sans-serif;
  font-weight: bold;
  text-decoration: none;
}

ul.todos {
  list-style: none;
}

ul.todos li.todo {
  background: url("/the-archive/img/checkbox.png") no-repeat left center;
  padding-left: 32px;
}

ul.todos li.todo.done {
  background: url("/the-archive/img/checkbox-ticked.png") no-repeat left center;
}

/****************************************************************************/
/*           https://piccalil.li/blog/a-more-modern-css-reset/              */
/****************************************************************************/
/* 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;
  scroll-behavior: smooth;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.6rem;
}

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

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* 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;
}

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

input[type=search] {
  -webkit-appearance: textfield;
}

button,
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer; /* 3 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

html {
  color: #333;
  font-size: 1.125em;
}
@media only screen and (min-width: 480px) {
  html {
    font-size: 1.375rem;
  }
}

body {
  font-family: "PT Serif", serif;
  margin: 0;
  background: #faf7f4;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

dfn {
  font-style: italic;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

hr {
  height: 1px;
  display: block;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-color: transparent;
  border-top: 3px solid rgb(234.0625, 221.5, 208.9375);
  padding: 0;
}

img {
  vertical-align: middle;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 160%;
  background-color: #B5CB30;
  background-image: url("/img/header.png");
  background-repeat: repeat-x;
  background-position: 0 50%;
  background-size: auto 0.3em;
  box-shadow: rgba(0, 0, 0, 0.2) 0rem 0.2rem 0.5rem;
}
@media only screen and (min-width: 480px) {
  .header-container {
    font-size: 2.2rem;
  }
}

.header__title {
  color: white;
  font-size: 1em;
  font-weight: 700;
  font-family: "PT Sans Narrow", "PT Sans", sans-serif;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: center;
  line-height: 1;
  background-color: #B5CB30;
  margin: 0;
  padding-inline: clamp(0.2em, 5vw, 0.5em) calc(clamp(0.2em, 5vw, 0.5em) - 0.2em);
  margin-block: 0.8rem;
}
@media only screen and (min-width: 480px) {
  .header__title {
    width: 9em;
    width: fit-content;
  }
}
.header__title a.header__link, .header__title a.header__link:visited, .header__title a.header__link:hover {
  text-decoration: none;
  color: white;
}

.content-container,
.footer-container {
  display: flow-root;
}

.content-container {
  max-width: 94%;
  margin-inline: 3%;
}

.content-container {
  display: grid;
  grid-template-columns: [content-start sidebar-start] auto [sidebar-end content-end];
  grid-template-rows: [content-start] auto [content-end sidebar-start] auto [sidebar-end];
}

#content {
  grid-area: content;
}

#sidebar {
  grid-area: sidebar;
}

.footer-container {
  background: #B5CB30;
}

#footer {
  display: grid;
  grid-template-columns: [content-start] repeat(auto-fill, minmax(calc(10% + 7.5rem), 1fr)) [content-end];
  grid-template-columns: [content-start] repeat(auto-fill, minmax(min(14rem, 100%), 1fr)) [content-end];
  grid-gap: 2rem;
  justify-items: stretch;
  max-width: var(--content-width);
  margin-inline: auto;
  padding: var(--block-padding);
  font-family: "PT Sans", sans-serif;
}
#footer .search {
  grid-column: content;
}
#footer section {
  grid-column: span 1;
  font-size: 0.8rem;
}
#footer section h3 {
  font-size: 1rem;
  margin-block: 0;
}
#footer section ul, #footer section ol {
  margin-block: 0;
}

.main {
  padding: 1.6rem 0;
  min-height: 50vh;
}

.youtube iframe {
  max-width: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.footer-container footer {
  color: white;
  padding: 20px 0;
}

h1 {
  font-size: 2.2rem;
  line-height: 3.2rem;
  margin-block: 0 1.6rem;
}

h2 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-block: 0 1.6rem;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin-block: 0 1.6rem;
}

h4 {
  font-size: 1rem;
  line-height: 1.6rem;
  margin-block: 1.6rem 1.6rem;
}

h5 {
  font-size: 1rem;
  line-height: 1.6rem;
  margin-block: 1.6rem 1.6rem;
}

h6 {
  font-size: 1rem;
  line-height: 1.6rem;
  margin-block: 1.6rem 1.6rem;
}

h1, h3, h5, h6 {
  font-family: "PT Sans", sans-serif;
}

h1:not(:first-child),
h2:not(:first-child),
h3:not(:first-child),
h4:not(:first-child),
h5:not(:first-child),
h6:not(:first-child) {
  margin-block-start: 3.2rem;
}

a {
  color: #4961DD;
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  text-underline-offset: 0.1em;
}

a:visited {
  color: #5a4a8c;
}

a:hover {
  text-decoration: none;
}

figure {
  margin-inline: -3%;
  font-style: italic;
}
figure em, figure i {
  font-style: normal;
}
figure a, figure a:hover {
  color: currentColor;
}
@media only screen and (min-width: 480px) {
  figure {
    margin-inline: 1rem;
  }
}

code {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  font-size: 94%;
}

pre {
  overflow: auto;
  background: white;
  padding: 0.5rem;
  margin-inline: -0.5rem;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  font-size: 0.8rem;
}
pre code {
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
}

.language-markdown pre {
  white-space: pre-wrap;
}
.language-markdown pre .gh {
  font-weight: bold;
}
.language-markdown pre .gs {
  font-weight: 600;
}
.language-markdown pre .ge {
  font-style: italic;
}

.feed-icon {
  margin-left: 0.3em;
}
.feed-icon * {
  fill: #4961DD;
  stroke: #4961DD;
}

.announcement {
  background: rgba(181, 203, 48, 0.7);
  font-family: "PT Sans", sans-serif;
}

.announcement__header {
  text-align: center;
}

.icon--head {
  max-width: 4em;
}
.icon--head .iconic-property-fill {
  fill: #144659;
}

ul {
  padding-inline-start: var(--list-indentation);
}

ul > li > p {
  margin-top: 0;
}

blockquote {
  font-style: italic;
}
blockquote i, blockquote em {
  font-style: normal;
}

/** Book Announcement Page */
.book_toc {
  font-family: "PT Sans", sans-serif;
}

.book_toc, .book_toc ul {
  margin-top: 0;
  margin-bottom: 0;
}

.book_toc > li > ul {
  font-size: 0.8em;
}

/** Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

article table {
  font-family: "PT Sans", sans-serif;
  font-size: 0.8rem;
  margin: 0 auto;
}
article table th,
article table td {
  padding: 0.3em 0.5em;
  border: 1px solid #D3D3D3;
  vertical-align: top;
}

#toc,
details, summary {
  font-family: "PT Sans", sans-serif;
}

p, blockquote {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

hr, figure, aside, table, article table {
  margin-top: 3.2rem;
  margin-bottom: 3.2rem;
}

/** Search box */
.search__form {
  display: flex;
  flex-direction: row;
  gap: clamp(0.2rem, 5vw, 1rem);
}

.search__text, .search__action {
  height: 2em;
}

.search__text {
  flex: 2 1 20em;
}

.search__action {
  flex: 1 1 5em;
  background: transparent;
  border-width: 2px;
  border-style: solid;
  border-radius: 2px;
}

.content-container article .search__form {
  margin: 1.6rem 0;
}
.content-container .search__action {
  background: transparent;
  border-color: #4961DD;
  color: #4961DD;
}
.content-container .search__action:active {
  background: #4961DD;
  border-color: #4961DD;
  color: #faf7f4;
}

#footer .search__action {
  background: transparent;
  border-color: white;
  color: white;
}
#footer .search__action:active {
  background: white;
  border-color: white;
  color: #B5CB30;
}

@media only screen and (min-width: 480px) {
  h2 {
    clear: both;
  }
}
#sidebar {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  font-family: "PT Sans", sans-serif;
  font-size: 0.8rem;
}

#sidebar header {
  font-weight: bold;
}

#sidebar a {
  color: currentColor;
}

#toc {
  --border-width: 2px;
  text-wrap: pretty;
}
#toc ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
#toc ol > li {
  margin: 0;
  padding: 0;
}
#toc li > a {
  --indent: 0rem;
}
#toc li li > a {
  --indent: 1rem;
}
#toc li li li > a {
  --indent: 2rem;
}
#toc li li li li > a {
  --indent: 3rem;
}
#toc li li li li li > a {
  --indent: 4rem;
}
#toc li > a {
  padding-left: calc(var(--indent) + 1rem);
  margin-left: calc(1 * var(--border-width));
  padding-block: 0.25rem;
}
#toc li > a {
  display: block;
  color: #888;
  border-left: var(--border-width) solid #888;
  text-decoration: none;
}
#toc li > a:hover {
  color: #4961DD;
  border-left-color: #4961DD;
  text-decoration: underline;
}
#toc li.active > a {
  font-weight: bold;
  color: #333;
  border-left-color: #333;
  text-decoration: none;
}
#toc .totop {
  color: currentColor;
}

@media only screen and (min-width: 900px) {
  .content-container {
    grid-template-columns: [content-start] repeat(4, minmax(min(7rem, 15vw), 1fr)) [content-end sidebar-start] repeat(2, minmax(min(5rem, 8vw), 1fr)) [sidebar-end];
    grid-template-rows: [content-start sidebar-start] auto [sidebar-end content-end];
    grid-column-gap: clamp(0.5rem, 3vw, 2rem);
    margin-inline: auto;
    padding-inline: var(--block-padding, 0.5rem);
    max-width: var(--content-width);
  }
  #sidebar {
    padding-top: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
  }
  #sidebar .sidebar__element:not(:last-child) {
    margin-bottom: 1.6rem;
  }
  .sidebar-container {
    --offset: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    height: calc(100vh - var(--offset));
    max-height: 100vh;
    overflow-y: scroll;
  }
  #toc {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
}
@media print {
  * {
    background: transparent !important;
    color: #000 !important; /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group; /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.landingpage-block {
  padding: var(--block-padding);
  border-radius: var(--block-radius);
  overflow: hidden;
  background: #faf7f4;
}

.landingpage__product,
.landingpage__blog,
.landingpage__newsletter,
.posts_group {
  --block-padding: calc(var(--block-radius) / 2);
  --block-item-radius: calc(var(--block-radius) - var(--block-padding));
}

.homepage #sidebar {
  display: none;
}

.homepage body {
  background-color: rgb(15.3211009174, 53.623853211, 68.1788990826);
}
.homepage body .content-container {
  max-width: 100%;
  display: flex;
  justify-content: center;
  font-family: "PT Sans", sans-serif;
  font-size: 0.8rem;
  line-height: 1.3rem;
}
@media only screen and (min-width: 900px) {
  .homepage body .content-container {
    font-size: 1rem;
    line-height: 1.6rem;
  }
}
.homepage body .content-container .main {
  max-width: var(--content-width);
  display: grid;
  grid-template-columns: [row-start row-mid] 2fr [row-end];
  grid-template-rows: [l1] auto [l2] auto [l3] auto [l4] auto [l5] auto;
  gap: 4vh 0;
  justify-items: stretch;
}
@media only screen and (min-width: 40em) {
  .homepage body .content-container .main {
    grid-template-columns: [row-start] 2fr [row-mid] 2fr [row-end];
    grid-template-rows: [l1 l2] auto [l3] auto [l4] auto [l5] auto;
    gap: calc(2 * var(--block-spacing)) var(--block-spacing);
  }
}
@media only screen and (min-width: 900px) {
  .homepage body .content-container .main {
    gap: var(--block-spacing);
  }
}
.homepage body p {
  margin-block: 0 1lh;
  --leading-correction: -0.2em;
}
.homepage body p:first-child {
  margin-block-start: var(--leading-correction);
}
.homepage body p:last-child {
  margin-block-end: var(--leading-correction);
}
.homepage body .landingpage__problem,
.homepage body .landingpage__guide,
.homepage body .landingpage__product,
.homepage body .landingpage__newsletter,
.homepage body .landingpage__blog {
  box-shadow: rgba(0, 0, 0, 0.4) 0rem 0.1rem 0.5rem;
}
.homepage body .landingpage__problem {
  grid-column: row-start/span 1;
  grid-row-start: l1;
}
.homepage body .landingpage__guide {
  grid-column: row-mid/span 1;
  grid-row-start: l2;
}
.homepage body .landingpage__product {
  grid-column: row;
  grid-row-start: l3;
}
.homepage body .landingpage__newsletter {
  grid-column: row;
  grid-row-start: l4;
}
.homepage body .landingpage__blog {
  grid-column: row;
  grid-row-start: l5;
}
.homepage body .landingpage__problem {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  gap: 0 calc(var(--block-item-spacing) / 2);
}
.homepage body .landingpage__problem h2, .homepage body .landingpage__problem p {
  margin-block: 0;
}
.homepage body .landingpage__problem h2 {
  flex: 1 1 100%;
  letter-spacing: -2px;
  line-height: 1.1em;
  text-align: center;
  margin-block: 3% 6%;
  font-size: max(1.5rem, 10vw);
}
@media only screen and (min-width: 40em) {
  .homepage body .landingpage__problem h2 {
    font-size: max(1rem, 5vw);
  }
}
@media only screen and (min-width: 900px) {
  .homepage body .landingpage__problem h2 {
    font-size: clamp(1.5rem, 5vw, 3rem);
  }
}
.homepage body .landingpage__problem p, .homepage body .landingpage__problem img {
  flex: 1 1 30%;
}
.homepage body .landingpage__problem img {
  mix-blend-mode: multiply;
  object-fit: contain;
  opacity: 0.4;
  align-self: center;
  max-width: 80%;
  max-height: 6lh;
}
.homepage body .landingpage__problem p {
  letter-spacing: -1px;
  font-size: 1.2rem;
  font-size: max(1rem, 5vw);
}
@media only screen and (min-width: 40em) {
  .homepage body .landingpage__problem p {
    font-size: max(1rem, 2.5vw);
  }
}
@media only screen and (min-width: 900px) {
  .homepage body .landingpage__problem p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
  }
}
.homepage body .landingpage__problem b {
  font-family: "PT Serif", serif;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -1px;
}
.homepage body .landingpage__guide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1lh;
}
.homepage body .landingpage__guide .intro {
  margin-top: 0.4rem;
}
.homepage body .landingpage__guide .guides {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: stretch;
  align-items: stretch;
}
.homepage body .landingpage__guide .guide {
  flex: 1 1 3vw;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}
.homepage body .landingpage__guide .guide .photo {
  flex: 0 1 2lh;
}
.homepage body .landingpage__guide .guide .photo img {
  display: block;
  max-width: 100%;
  max-height: 8lh;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 10/9;
}
.homepage body .landingpage__guide .guide .more {
  flex: 1 0 2px;
  display: block;
  font-size: 0.8rem;
}
.homepage body .landingpage__product {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: [row-start] 1fr [row-end];
  justify-items: stretch;
  gap: var(--block-item-spacing);
}
@media only screen and (min-width: 40em) {
  .homepage body .landingpage__product {
    grid-template-columns: [row-start] 1fr 1fr 1fr [row-end];
  }
}
.homepage body .landingpage__product .wow {
  position: absolute;
  grid-column: row;
  width: 80%;
  rotate: -2deg;
  transform: translate(-3vw, -1.2em);
  font-family: "PT Serif", serif;
  font-size: 1.5rem;
  font-size: clamp(0.8rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1em;
  background: #B5CB30;
  border-radius: var(--block-item-radius);
  padding: 1vh;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.2) 0.1rem 0.1rem 0.1rem, rgba(0, 0, 0, 0.1) 0.3rem 0.2rem 0.5rem;
  z-index: 69;
}
@media only screen and (min-width: 900px) {
  .homepage body .landingpage__product .wow {
    width: 17ch;
    rotate: -5deg;
  }
}
.homepage body .landingpage__product .description {
  grid-column: row;
  margin-block: 2rem 0;
  margin-inline: var(--block-padding);
}
@media only screen and (min-width: 900px) {
  .homepage body .landingpage__product .description {
    margin-block: 0;
    grid-column: 2/span 2;
  }
}
.homepage body .product {
  --product-background: #d07c84;
  --product-color: #faf7f4;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  padding: 0.5rem;
  border: 0;
  border-radius: var(--block-item-radius);
  background: var(--product-background);
  color: var(--product-color);
  min-height: 3lh;
  transition-property: transform box-shadow;
  transition-duration: 0.1s;
}
.homepage body .product:hover {
  transform: scale(1.02) translate(0, -1%);
  box-shadow: rgba(0, 0, 0, 0.1) 0 0.1rem 0.1rem;
}
.homepage body .product a {
  font-weight: bold;
  color: #faf7f4;
}
.homepage body .landingpage__newsletter {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;
  gap: var(--block-item-spacing);
}
.homepage body .landingpage__newsletter h2, .homepage body .landingpage__newsletter .description {
  margin-inline: var(--block-padding);
  margin-block: 0;
}
.homepage body .landingpage__newsletter .subscribe {
  --product-background: #4961DD;
}

.post li input[type=checkbox] {
  display: inline-block;
  margin-right: 0.5em;
  transform: scale(1.5);
}

.post li:has(input[type=checkbox]) {
  list-style: none;
  margin-left: var(--list-indentation);
}
.post li:has(input[type=checkbox]) input[type=checkbox] {
  margin-left: calc(-1 * (var(--list-indentation) + 0.5em));
}

h1.post__title, .page__title {
  margin-bottom: 0;
  line-height: 3.2rem;
}

h2.post__title {
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1.6rem;
}

#posts .post__title {
  font-family: "PT Sans", sans-serif;
}
#posts .post__title a, #posts .post__title a:hover, #posts .post__title a:visited, #posts .post__title a:link {
  color: currentColor;
  text-decoration: none;
}

.post--link .post__title {
  font-size: 1.125em;
}
.post--link .post__title::before {
  content: "→ ";
}

.tags {
  display: inline;
  padding-left: 0;
  margin-left: 0;
}
.tags li {
  display: inline;
  list-style: none;
  padding-right: 0;
}

/** Blog archive */
.posts_group--by-year:not(:last-child) {
  margin-bottom: var(--block-spacing);
}

.posts_group {
  --halved-margin-offset: max(var(--block-padding), 0.5rem);
}
.posts_group h2 {
  font-family: "PT Sans", sans-serif;
  margin-inline: var(--halved-margin-offset);
  margin-block: 0 0.8rem;
}
.posts_group .posts_list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(25rem, 100%), 1fr));
  gap: var(--block-item-spacing);
}
.posts_group .posts_list article {
  background: #faf7f4;
  border-radius: var(--block-item-radius);
  box-shadow: rgba(199.2337078652, 99.5662921348, 109.0584269663, 0.3) 0 0.1rem 0.2rem, rgba(189.2669662921, 109.5330337079, 117.126741573, 0.3) 0 0.1rem 1rem;
  overflow: hidden;
  display: grid;
  grid-template: "title title title img" auto "desc  desc  desc  img" 1fr/1fr 1fr 1fr 1fr;
  gap: calc(var(--block-item-spacing) / 2);
  font-size: 0.8rem;
}
@media only screen and (min-width: 900px) {
  .posts_group .posts_list article {
    grid-template: "title title img" auto "desc  desc  img" 1fr/1fr 1fr 1fr;
  }
}
.posts_group .posts_list article header, .posts_group .posts_list article .description {
  padding-left: var(--halved-margin-offset, 0.5rem);
}
.posts_group .posts_list article header {
  padding-top: 0.5lh;
}
.posts_group .posts_list article .description {
  padding-bottom: 0.5lh;
}
.posts_group .posts_list article header {
  grid-area: title;
}
.posts_group .posts_list article h3 {
  font-size: 1rem;
  margin-bottom: 0;
}
.posts_group .posts_list article .minimalpost__meta {
  color: #888;
}
.posts_group .posts_list article .description {
  grid-area: desc;
  margin: 0;
}
.posts_group .posts_list article .teaser {
  grid-area: img;
  margin: 0;
  display: flex;
}
.posts_group .posts_list article .teaser > a {
  flex: 1 1 auto;
  display: flex;
}
.posts_group .posts_list article .teaser img {
  flex: 1 1 auto;
  object-fit: cover;
  object-position: center center;
}
.posts_group .posts_list article.no-thumbnail header, .posts_group .posts_list article.no-thumbnail .description {
  padding-right: var(--halved-margin-offset, 0.5rem);
}
.posts_group .posts_list article.no-thumbnail header {
  grid-column-start: title;
  grid-column-end: img;
}
.posts_group .posts_list article.no-thumbnail .description {
  grid-column-start: desc;
  grid-column-end: img;
}

.posts__browse {
  font-size: 1.375rem;
  font-family: "PT Sans", sans-serif;
}

.minimalpost__time {
  font-size: 0.8rem;
  font-family: "PT Sans", sans-serif;
}

.post {
  margin-bottom: 3.2rem;
}

#posts .post + .post {
  padding-top: 3.2rem;
}

.post__meta,
.page__meta {
  display: inline-block;
  padding-left: 0;
  margin-top: 0;
  margin-left: 0;
  list-style-type: none;
  font-size: 0.8rem;
  font-family: "PT Sans", sans-serif;
}
.post__meta li,
.page__meta li {
  display: inline-block;
}
.post__meta a, .post__meta a:link, .post__meta a:hover, .post__meta a:visited,
.page__meta a,
.page__meta a:link,
.page__meta a:hover,
.page__meta a:visited {
  color: #333;
}
.post__meta a, .post__meta a:link, .post__meta a:visited,
.page__meta a,
.page__meta a:link,
.page__meta a:visited {
  border-color: #333;
}
.post__meta a:hover,
.page__meta a:hover {
  border-color: transparent;
}

.post header .post__meta,
.post header .page__meta {
  margin-bottom: 1.6rem;
}

.post footer .post__meta,
.post footer .page__meta {
  margin-bottom: 0;
}

.post__languages {
  font-family: "PT Sans", sans-serif;
  display: block;
}

.post footer .post__languages {
  margin-bottom: 1.6rem;
}

.page .post__languages,
.post header .post__languages {
  margin-bottom: 1.6rem;
  line-height: 1rem;
}
.page .post__languages .active,
.post header .post__languages .active {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  border: 1px solid #333;
  border-radius: 1rem;
}
.page .post__languages a, .page .post__languages a:hover, .page .post__languages a:link,
.post header .post__languages a,
.post header .post__languages a:hover,
.post header .post__languages a:link {
  text-decoration: none;
}
.page .post__languages a,
.post header .post__languages a {
  display: inline-block;
  padding: 0.2rem 0.4rem;
  border: 1px solid #4961DD;
  border-radius: 1rem;
}
.page .post__languages a:active, .page .post__languages a:hover,
.post header .post__languages a:active,
.post header .post__languages a:hover {
  background: #4961DD;
  color: #faf7f4;
}

.post footer {
  margin-bottom: 1.6rem;
}

.post-figure {
  text-align: center;
}

.post-figure--grid {
  display: flex;
  flex-direction: column;
}
.post-figure--grid .post-figure__images {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.post-figure--grid .post_figure--grid__item {
  display: block;
  box-sizing: border-box;
  width: 49%;
}

.post-teaser {
  margin: 0;
  padding: 0;
  width: 100%;
}

.summary {
  margin-top: 1em;
}

.post-teaser__image {
  max-width: 100%;
}

.post-figure__image {
  border-width: 0;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.post-figure__caption {
  font-size: 0.8rem;
  margin-top: 1em;
}

.footnote-button {
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
  border: 0;
  background-color: transparent;
  box-sizing: border-box;
  color: #4961DD;
  cursor: pointer;
  display: inline-block;
  font-size: 0.8em;
  font-weight: normal;
  letter-spacing: 1px;
  height: 1.6em;
  line-height: 1;
  padding: 0 0.4em;
  min-width: 1.8em;
  position: relative;
  text-decoration: none;
  top: -0.5em;
  transition-duration: 0.2s;
  transition-property: background-color color;
  transition-timing-function: ease;
  vertical-align: middle;
  z-index: 5;
}
.footnote-button.is-active {
  transition-delay: 0.1s;
}
.footnote-button::after {
  clear: both;
  content: "";
  display: table;
}

.footnotes {
  margin-top: 3em;
  font-size: 0.8rem;
}
.footnotes p {
  margin-bottom: 0;
  margin-top: 0;
}

.post--single > header + * {
  margin-top: 0;
}

.post--in-list > header {
  margin-bottom: -1.6rem;
}

aside#comments {
  margin-top: 1.6rem;
}
aside#comments > hr:first-child {
  margin-top: 0;
}

aside#article_hook {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-family: "PT Sans", sans-serif;
  font-size: 0.8rem;
}
aside#article_hook > p {
  margin-block: 0;
}
aside#article_hook > * {
  margin-inline: var(--halved-margin-offset);
}

.post aside,
aside.note {
  font-family: "PT Sans", sans-serif;
  padding: 0 1em;
}

.post aside.littlefoot-footnote {
  padding: 0 !important;
}

aside.note {
  border-radius: var(--block-radius);
  border: 0.2em solid #B5CB30;
}

img.author-profile-picture {
  display: block;
  max-width: 100%;
}
@media only screen and (min-width: 480px) {
  img.author-profile-picture {
    float: right;
    max-width: 50%;
    margin-left: 0.5em;
    margin-bottom: 0.5em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
}
@media only screen and (min-width: 900px) {
  img.author-profile-picture {
    float: right;
    width: 33%;
    margin-left: 1em;
    margin-bottom: 0.1em;
  }
}

.post-figure__image {
  background: #fff;
}

.post-figure--borderless .post-figure__image {
  border-color: transparent;
  padding: 0;
  background: transparent;
}

@media only screen and (min-width: 480px) {
  .post-figure__image {
    border: 1px solid #d4d4d4;
    padding: 0.25em;
  }
  .post-teaser {
    max-width: 40%;
    float: right;
    margin-left: 0.5em;
    margin-top: 1em;
    margin-bottom: 0;
  }
}
button,
input,
select,
textarea {
  color: #333;
  font-size: 1rem;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

label, input {
  font-family: "PT Sans", sans-serif;
}

input[type=password],
input[type=text],
input[type=number],
input[type=email] {
  background: white;
}

dialog {
  background: #faf7f4;
  border-radius: var(--block-radius);
  border: 0px;
  padding: --block-padding;
  overflow-y: scroll;
  display: flex;
  position: fixed;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  font-family: "PT Sans", sans-serif;
}
dialog[open] {
  opacity: 1;
  pointer-events: inherit;
}

dialog .dialog-container {
  position: relative;
  height: fit-content;
}

dialog a.close {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1em;
  color: #aaa;
}
dialog a.close:hover {
  color: #888;
}

.modal-is-open {
  padding-right: var(--scrollbar-width, 0);
}

.modal.dialog {
  width: 90vw;
  max-height: 92vh;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0.2rem 0.5rem, rgba(0, 0, 0, 0.2) 0 1rem 2rem;
}
.modal.dialog::backdrop {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
@media only screen and (min-width: 480px) {
  .modal.dialog {
    max-width: 50rem;
  }
}

/** Newsletter signup dialog */
dialog#newsletter-signup {
  --padding: calc(var(--block-padding) / 2);
  padding: var(--padding);
}
dialog#newsletter-signup .newsletter {
  margin-block: 0;
}
dialog#newsletter-signup .news__section {
  margin-inline: var(--padding);
}
dialog#newsletter-signup button {
  border-radius: calc(var(--block-radius) / 2);
}

.actions {
  font-family: "PT Sans", sans-serif;
  text-align: center;
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 2rem;
}

.actions-row {
  margin: 0;
}
@media only screen and (min-width: 900px) {
  .actions-row {
    margin: 2rem 0;
  }
}

.action__item.action__item--button {
  display: block;
  margin-top: 2rem;
}

@media only screen and (min-width: 480px) {
  .action__item.action__item--info {
    margin-top: 2rem;
  }
}

.action {
  padding: 1rem 2rem;
  display: block;
  box-sizing: border-box;
  border-bottom-width: 0 !important;
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  border-radius: 2px;
}
.action:visited {
  color: white;
}
.action:hover {
  color: white;
}

.action--download {
  background-color: #4ecb19;
  background-image: linear-gradient(to bottom, #4ecb19 0%, #2cb01a 100%);
}

.action--download:hover {
  background-color: rgb(69.2763157895, 180.2960526316, 22.2039473684);
  background-image: linear-gradient(to bottom, rgb(71.0210526316, 184.8368421053, 22.7631578947) 0%, rgb(35.1128712871, 140.4514851485, 20.7485148515) 100%);
}

.action--buy {
  width: 100%;
  font-weight: bold;
  background: #5B6FDC;
  text-decoration: none;
  background-image: linear-gradient(to bottom, #6875EF 0%, #5D66CE 100%);
}

.action--buy:hover {
  background: rgb(69.9849246231, 92.5477386935, 215.5150753769);
  background-image: linear-gradient(to bottom, rgb(56.0518918919, 73.1394594595, 228.1481081081) 0%, rgb(41.2195121951, 50.7317073171, 153.7804878049) 100%);
}

.action__icon {
  margin-right: 0.5rem;
  margin-left: -0.5rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.action--gotoblog {
  font-weight: bold;
  background: #5B6FDC;
  text-decoration: none;
  background-image: linear-gradient(to bottom, #6875EF 0%, #5D66CE 100%);
}

.action--gotoblog:hover {
  background: rgb(69.9849246231, 92.5477386935, 215.5150753769);
  background-image: linear-gradient(to bottom, rgb(56.0518918919, 73.1394594595, 228.1481081081) 0%, rgb(41.2195121951, 50.7317073171, 153.7804878049) 100%);
}

#navigation {
  line-height: 1;
  background: #144659;
  z-index: 100;
}

.main-navigation {
  line-height: 2;
}

.main-navigation, .sub-navigation {
  margin: 0;
  padding: 0;
}

#navigation li {
  list-style-type: none;
}

.header-container {
  position: relative;
  z-index: 999;
}

.main-navigation {
  --font-size: clamp(0.6rem, 2.5vmax, 0.8rem);
  display: grid;
  grid-template-columns: 1fr;
  font-family: "PT Sans", sans-serif;
  background: #144659;
  font-size: var(--font-size);
  z-index: 200;
}
@media only screen and (min-width: 900px) {
  .main-navigation {
    grid-template-columns: repeat(7, 1fr);
  }
}
@media only screen and (min-width: 900px) {
  .main-navigation {
    box-shadow: rgba(0, 0, 0, 0.3) 0rem 0rem 1rem;
  }
}

.menu-item--has-submenu {
  position: relative;
}

.menu-item {
  display: flex;
  flex-direction: row;
  gap: 0.3em;
  align-items: center;
  justify-content: left;
}
@media only screen and (min-width: 900px) {
  .menu-item {
    justify-content: center;
  }
}

.menu-item--has-submenu .menu-item-label {
  background: transparent;
}

.menu-item--has-submenu.menu-item--active .menu-item-label,
.menu-item--has-submenu:hover .sub-menu-toggle {
  background: rgb(24.6788990826, 86.376146789, 109.8211009174);
}

#navigation a,
#navigation .menu-item-label {
  position: relative;
  z-index: 500;
  display: block;
  width: 100%;
  padding: 0.5em 1rem;
  border-style: solid;
  border-width: 0 0 0 0.4rem;
  border-color: transparent;
  text-align: left;
}
@media only screen and (min-width: 900px) {
  #navigation a,
  #navigation .menu-item-label {
    text-align: center;
  }
}

#navigation .menu-item--active .menu-item-label {
  color: rgb(223.75, 223.75, 223.75);
  border-color: #B5CB30;
}

#navigation .main-navigation > .menu-item--has-submenu.menu-item--active > .menu-item-label {
  border-color: transparent;
}

#navigation a,
#navigation button {
  color: #D3D3D3;
  font-weight: normal;
  text-decoration: none;
  font-size: var(--font-size);
}
#navigation a:hover,
#navigation button:hover {
  color: white;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2);
}
#navigation a:hover .nav__icon .iconic-property-fill,
#navigation button:hover .nav__icon .iconic-property-fill {
  fill: white;
}

.main-navigation .iconic .iconic-property-fill {
  stroke: #D3D3D3;
  fill: #D3D3D3;
}
.main-navigation .iconic .iconic-property-accent,
.main-navigation .iconic .iconic-property-stroke {
  stroke: #D3D3D3;
}

.sub-navigation {
  font-family: "PT Sans", sans-serif;
  background: #144659;
  z-index: 300;
  display: flex;
  flex-direction: column;
}
.sub-navigation .sub-menu_item a,
.sub-navigation .sub-menu_item .menu-item-label {
  text-indent: 10%;
}
@media only screen and (min-width: 900px) {
  .sub-navigation .sub-menu_item a,
  .sub-navigation .sub-menu_item .menu-item-label {
    text-indent: 0;
  }
}

.menu-item--active .sub-navigation {
  background: rgb(24.6788990826, 86.376146789, 109.8211009174);
}

@media only screen and (min-width: 900px) {
  .sub-navigation {
    position: absolute;
    left: 50%;
    top: 100%;
    transform-origin: top center;
    transform: rotateX(-90deg) translateX(-50%);
    min-width: 15ch;
    width: 100%;
    --submenu-transition: 150ms all 100ms ease-out;
    transition: var(--submenu-transition);
    opacity: 0.3;
    visibility: hidden;
    z-index: 199;
    box-shadow: rgba(0, 0, 0, 0.4) 0rem 0.1rem 0.5rem;
  }
  .menu-item--has-submenu:hover .sub-navigation, .menu-item--has-submenu:focus-within .sub-navigation {
    opacity: 1;
    visibility: visible;
    transform: rotateX(0deg) translateX(-50%);
  }
}
@media only screen and (min-width: 900px) {
  #navigation a,
  #navigation .menu-item--active .menu-item-label {
    --vpadding: 0.5em;
    --underline: 8px;
    padding-bottom: calc(var(--vpadding) - var(--underline));
    border-width: 0 0 var(--underline) 0;
  }
  #navigation.has-submenu {
    margin-bottom: 3em;
  }
}
#navigation #hamburger-toggle {
  opacity: 0;
  cursor: pointer;
  position: absolute;
}

#navigation .hamburger-container {
  display: block;
  background: #144659;
  line-height: 1;
}

#navigation #hamburger {
  display: block;
  padding: 0.5rem;
  border: 0;
  cursor: pointer;
}

@media only screen and (min-width: 900px) {
  #navigation #hamburger,
  #navigation #hamburger-toggle {
    display: none;
  }
}
#navigation {
  position: relative;
}

#navigation .main-navigation {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  visibility: hidden;
  --hamburger-menu-transition: 150ms all 100ms ease-out;
  transform-origin: top center;
  transform: rotateX(-90deg);
  opacity: 0.3;
  transition: var(--hamburger-menu-transition);
}
@media only screen and (min-width: 900px) {
  #navigation .main-navigation {
    visibility: visible;
    position: unset;
    transform: rotateX(0deg);
    opacity: 1;
  }
}

#navigation #hamburger-toggle:checked ~ .main-navigation {
  visibility: visible;
  transform: rotateX(0deg);
  opacity: 1;
}

.hamburger-container #hamburger {
  --size: clamp(16px, 10vmin, 32px);
  width: var(--size);
  height: var(--size);
  box-sizing: content-box;
  transition: transform 0.2s ease;
}

.hamburger-container #hamburger .slice {
  --slice-height: 2px;
  display: block;
  position: relative;
  width: 100%;
  height: var(--slice-height, 2px);
  border-radius: var(--slice-height);
  transition: all 0.2s ease;
  background-color: #D3D3D3;
  opacity: 90%;
}

.hamburger-container #hamburger .slice {
  margin-top: 22%;
  margin-top: calc(33% - var(--slice-height));
  top: calc((33% - var(--slice-height)) / -2);
}

.hamburger-container #hamburger-toggle:checked ~ #hamburger .slice:nth-child(1) {
  top: calc(17% + var(--slice-height) / 2);
  transform: rotate(45deg);
}

.hamburger-container #hamburger-toggle:checked ~ #hamburger .slice:nth-child(2) {
  opacity: 0;
}

.hamburger-container #hamburger-toggle:checked ~ #hamburger .slice:nth-child(3) {
  top: calc(-50% + var(--slice-height) / 2);
  transform: rotate(-45deg);
}

.no-transition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/*
 * Newsletter sidebar
 */
.newsletter-form #newsletter {
  display: none;
}

#newsletter {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
#newsletter p {
  margin: 0;
}

a.newsletter-signup-widget {
  text-decoration: none;
  border: none;
}

.newsletter-signup-widget .box {
  display: flex;
  background: white;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid #aaa;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}
.newsletter-signup-widget .box:hover {
  border-color: #888;
}
.newsletter-signup-widget .envelope {
  flex: 0 1 16px;
  color: #888;
  vertical-align: center;
}
.newsletter-signup-widget .envelope.iconic[data-glyph]:before {
  top: 0.15em;
}
.newsletter-signup-widget .envelope * {
  fill: #888;
  stroke: #888;
}
.newsletter-signup-widget .email {
  flex: 3 2 auto;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsletter-signup-widget .subscribe {
  flex: 2 2 auto;
  font-weight: bold;
  text-align: right;
  color: #4961DD;
}

/*
 * Newsletter box
 */
.newsletter {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-block: 1.6rem;
}
.newsletter h1, .newsletter h2, .newsletter h3, .newsletter h4, .newsletter p {
  margin: 0;
}

.newsletter__info {
  font-size: 0.8rem;
}

/*
 * Newsletter Form
 */
.news__section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
}

.news__section--gdpr {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 1ch;
}

.news__section--indicates-required {
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.news__label {
  font-size: 0.8rem;
  font-weight: bold;
}

.news__label.news__label--checkbox {
  font-size: 1.125em;
  font-weight: normal;
  text-transform: unset;
}

.news__input {
  border: 2px solid;
  border-radius: 2px;
  border-color: #888;
  background: white;
  padding: 0.2rem 0.5rem;
}
.news__input:active, .news__input:focus {
  outline: 2px solid #4961DD;
}

.news__input--button {
  font-family: "PT Sans", sans-serif;
  letter-spacing: 1px;
  font-weight: bold;
  background-color: #d07c84;
  color: #faf7f4;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  outline: none;
  width: 100%;
  position: relative;
  top: 0px;
}
.news__input--button:active, .news__input--button:focus {
  outline: none;
  top: 2px;
  box-shadow: none;
  border-color: #d07c84;
  background-color: rgb(206.3543539326, 100.1456460674, 110.2607611022);
}

.asterisk {
  color: red;
}

.indicates-required {
  font-size: 80%;
  font-style: italic;
}

.beta-figure {
  margin-top: 2em;
  margin-bottom: 2em;
  border: 0;
  text-align: center;
}

.beta-figure__image {
  border-width: 0;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.beta-figure__caption {
  font-size: 0.8rem;
  margin-top: 1em;
}

@media only screen and (min-width: 900px) {
  .beta-figure {
    margin-left: -120px;
    margin-right: -120px;
  }
}
/*
 * Newsletter box
 */
.book-ad__title {
  font-size: 1.2222222222rem;
}

.book-ad__info {
  font-size: 0.8rem;
}

.book-ad__cover {
  max-width: 90%;
}

.book-ad__cover-link {
  border-bottom: 0;
}

.the-archive-landingpage .main {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.the-archive-landingpage .actions-row {
  margin: 0;
}
.the-archive-landingpage .actions {
  margin: 0;
}
.the-archive-landingpage .appinfo {
  margin: 0;
}
.the-archive-landingpage .hero {
  display: flex;
  flex-direction: column;
  gap: max(4vh, 1.6rem);
}
.the-archive-landingpage .hero p {
  margin: 0;
}
.the-archive-landingpage .hero .screenshot {
  max-width: 100%;
}
.the-archive-landingpage .appname {
  font-size: clamp(2rem, 14vmin, 5rem);
  font-family: "PT Serif", serif;
  line-height: 0.8;
  text-align: center;
  text-shadow: 0 1px 0px #fff, 0 2px 0px #d8d8d8, 0 3px 0px #ccc;
  margin: 2vh 0 0 0;
}
.the-archive-landingpage .tagline {
  margin: 1.6rem 0 2vh 0;
  font-size: clamp(1.4rem, 8vmin, 3rem);
  font-family: "PT Sans", sans-serif;
  line-height: 100%;
  text-align: center;
  font-weight: normal;
}
.the-archive-landingpage .two-sentence {
  font-family: "PT Sans", sans-serif;
  font-size: 1.1818181818rem;
}
.the-archive-landingpage .action__icon {
  margin-right: 0.5rem;
  margin-left: -0.5rem;
  margin-top: -1rem;
  margin-bottom: -1rem;
}
.the-archive-landingpage .hero .action--buy {
  font-size: 2em;
}
.the-archive-landingpage .actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem 2ch;
}
@media only screen and (min-width: 480px) {
  .the-archive-landingpage .actions {
    grid-template-columns: repeat(3, 1fr);
  }
  .the-archive-landingpage .actions .action__item.buy {
    grid-column: 1/span 3;
  }
  .the-archive-landingpage .actions .action__item.download {
    grid-column-end: span 1;
  }
  .the-archive-landingpage .actions .action__item--info {
    grid-column-end: span 2;
  }
}
.the-archive-landingpage .action__item.action__item--button {
  margin-top: 0;
}
@media only screen and (min-width: 480px) {
  .the-archive-landingpage .action__item.action__item--info {
    margin-top: 0;
  }
}
.the-archive-landingpage .appinfo {
  font-size: 0.8rem;
  line-height: 1.5em;
}
.the-archive-landingpage .features {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.the-archive-landingpage .features p, .the-archive-landingpage .features h1, .the-archive-landingpage .features h2, .the-archive-landingpage .features h3, .the-archive-landingpage .features ul, .the-archive-landingpage .features ol, .the-archive-landingpage .features li {
  margin: 0;
}
.the-archive-landingpage .feature {
  --gap: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap);
}
@media only screen and (min-width: 480px) {
  .the-archive-landingpage .feature {
    display: grid;
    gap: 0 1rem;
  }
  .the-archive-landingpage .feature:nth-child(odd) {
    grid-template-columns: [desc-start] 2fr [desc-end img-start] 1fr [img-end];
  }
  .the-archive-landingpage .feature:nth-child(even) {
    grid-template-columns: [img-start] 1fr [img-end desc-start] 2fr [desc-end];
  }
  .the-archive-landingpage .feature .description {
    grid-row: 1;
    grid-column: desc;
  }
  .the-archive-landingpage .feature .feature-img {
    grid-row: 1;
    grid-column: img;
  }
}
.the-archive-landingpage .feature .feature-title {
  font-family: "PT Sans", sans-serif;
  margin-bottom: var(--gap);
}
.the-archive-landingpage .feature .feature-img {
  max-width: min(60vw, 90%);
  width: 100%;
  display: block;
}
.the-archive-landingpage .feature .feature-shortlist {
  font-size: 0.8rem;
}
.the-archive-landingpage .monomyth {
  padding: 1em 2em;
  transform: rotate(1deg);
  background-color: #FCF4DC;
  box-shadow: rgba(0, 0, 0, 0.2) 1pt 2pt 4pt, rgba(0, 0, 0, 0.05) 0.5em 1em 2em;
}
.the-archive-landingpage .monomyth p {
  max-width: 55ch;
  margin-inline: auto;
}
.the-archive-landingpage .monomyth__signature {
  padding-top: 3em;
  line-height: 1;
  font-style: italic;
  background: url("/the-archive/img/signatures.png") no-repeat top left;
  background-size: contain;
}
.the-archive-landingpage .monomyth__signature .title {
  text-transform: lowercase;
  font-variant: small-caps;
  font-family: "PT Sans", sans-serif;
}
.the-archive-landingpage .testimonials {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.the-archive-landingpage .testimonials p, .the-archive-landingpage .testimonials blockquote {
  margin: 0;
}
.the-archive-landingpage .testimonial {
  position: relative;
  margin-inline: 2rem;
}
.the-archive-landingpage .testimonial a, .the-archive-landingpage .testimonial a:link, .the-archive-landingpage .testimonial a:hover {
  color: currentColor;
}
.the-archive-landingpage .quote {
  font-family: "PT Serif", serif;
  font-style: normal;
  font-size: 0.8rem;
  text-align: justify;
  hyphens: auto;
  line-height: 1.8;
  padding: 0;
  margin: 1em 0;
}
.the-archive-landingpage .quote::before {
  font-style: normal;
  content: "“";
  font-size: 3rem;
  position: absolute;
  top: -0.2em;
  left: -0.6em;
  color: #ccc3a8;
}
.the-archive-landingpage .quote::after {
  font-style: normal;
  content: "”";
  font-size: 3rem;
  position: absolute;
  top: -0.4em;
  right: -0.6em;
  color: #ccc3a8;
}
.the-archive-landingpage .source {
  font-style: normal;
  font-family: "PT Sans", sans-serif;
}
.the-archive-landingpage .name {
  font-weight: bold;
}
.the-archive-landingpage .creds {
  font-size: 80%;
}
@media only screen and (min-width: 480px) {
  .the-archive-landingpage .appinfo {
    text-align: left;
    padding-left: 1em;
  }
  .the-archive-landingpage .hero .action--buy {
    font-size: 220%;
    padding-top: 1em;
    padding-bottom: 1em;
  }
  .the-archive-landingpage .main .resources {
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none;
    font-family: "PT Sans", sans-serif;
  }
  .the-archive-landingpage .main .resources li {
    display: inline;
  }
  .the-archive-landingpage .main .resources li::after {
    content: "  ● ";
    opacity: 0.3;
  }
  .the-archive-landingpage .main .resources li:last-child::after {
    content: "";
  }
}
@media only screen and (min-width: 480px) {
  .the-archive-landingpage .monomyth {
    transform: rotate(2deg);
  }
}
@media only screen and (min-width: 900px) {
  .the-archive-landingpage .monomyth {
    transform: rotate(3deg);
    padding: 2em 3em;
    background-image: url("/the-archive/img/weapon-of-gods.png");
    background-position: 110% 103%;
    background-size: 40%;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
  }
}
@media only screen and (min-width: 1281px) {
  .the-archive-landingpage .monomyth {
    margin-inline: -15%;
    width: 130%;
  }
}

.pk-screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(10rem, 100%), 1fr));
  gap: 1vw;
  margin-block: 1.6rem;
}
@media only screen and (min-width: 900px) {
  .pk-screenshots {
    grid-template-columns: repeat(auto-fill, minmax(min(20rem, 32vw), 1fr));
  }
}

/** Window animation */
/** Variables */
.c-window {
  width: 100%;
  max-width: 16em;
  border: 2px solid #434356;
  border-radius: 8pt;
  text-align: left;
  margin: 0 auto;
  line-height: 1;
}
.c-window * {
  box-sizing: content-box;
}

.c-titlebar {
  margin-left: 0.2em;
}

.c-bubble {
  margin: 0;
  padding: 0;
  margin-right: 0.2em;
  border: 2px solid #434356;
  height: 0.4em;
  width: 0.4em;
  border-radius: 5em;
  display: inline-block;
}

.c-omnibar {
  border: 2px solid #434356;
  height: 0.7em;
  margin: 0em 0.2em 0.2em 0.2em;
}

.c-body {
  border-top: 2px solid #434356;
  position: relative;
  height: 8em;
  border-bottom-left-radius: 8pt;
  border-bottom-right-radius: 8pt;
}

@-webkit-keyframes fatbarAnim {
  0% {
    opacity: 0;
    width: 0;
  }
  10% {
    opacity: 0;
    width: 0;
  }
  20% {
    opacity: 1;
    width: 8%;
  }
  60% {
    opacity: 1;
    width: 8%;
  }
  70% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}
@-moz-keyframes fatbarAnim {
  0% {
    opacity: 0;
    width: 0;
  }
  10% {
    opacity: 0;
    width: 0;
  }
  20% {
    opacity: 1;
    width: 8%;
  }
  60% {
    opacity: 1;
    width: 8%;
  }
  70% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}
@-o-keyframes fatbarAnim {
  0% {
    opacity: 0;
    width: 0;
  }
  10% {
    opacity: 0;
    width: 0;
  }
  20% {
    opacity: 1;
    width: 8%;
  }
  60% {
    opacity: 1;
    width: 8%;
  }
  70% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}
@keyframes fatbarAnim {
  0% {
    opacity: 0;
    width: 0;
  }
  10% {
    opacity: 0;
    width: 0;
  }
  20% {
    opacity: 1;
    width: 8%;
  }
  60% {
    opacity: 1;
    width: 8%;
  }
  70% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}
.c-fatbar {
  border-right: 2px solid #434356;
  width: 0;
  height: 8em;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-bottom-left-radius: 8pt;
  -webkit-animation: fatbarAnim ease-in-out 10s infinite;
  -moz-animation: fatbarAnim ease-in-out 10s infinite;
  -o-animation: fatbarAnim ease-in-out 10s infinite;
  animation: fatbarAnim ease-in-out 10s infinite;
  background: #d1d8d1;
}

@-webkit-keyframes resultsAnim {
  0% {
    opacity: 0;
    width: 0;
  }
  15% {
    opacity: 1;
    width: 35%;
  }
  40% {
    opacity: 1;
    width: 35%;
  }
  50% {
    opacity: 0;
    width: 8%;
  }
  70% {
    opacity: 0;
    width: 8%;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}
@-moz-keyframes resultsAnim {
  0% {
    opacity: 0;
    width: 0;
  }
  15% {
    opacity: 1;
    width: 35%;
  }
  40% {
    opacity: 1;
    width: 35%;
  }
  50% {
    opacity: 0;
    width: 8%;
  }
  70% {
    opacity: 0;
    width: 8%;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}
@-o-keyframes resultsAnim {
  0% {
    opacity: 0;
    width: 0;
  }
  15% {
    opacity: 1;
    width: 35%;
  }
  40% {
    opacity: 1;
    width: 35%;
  }
  50% {
    opacity: 0;
    width: 8%;
  }
  70% {
    opacity: 0;
    width: 8%;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}
@keyframes resultsAnim {
  0% {
    opacity: 0;
    width: 0;
  }
  15% {
    opacity: 1;
    width: 35%;
  }
  40% {
    opacity: 1;
    width: 35%;
  }
  50% {
    opacity: 0;
    width: 8%;
  }
  70% {
    opacity: 0;
    width: 8%;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}
.c-results {
  border-right: 2px solid #434356;
  width: 0;
  height: 8em;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-bottom-left-radius: 8pt;
  -webkit-animation: resultsAnim ease-in-out 10s infinite;
  -moz-animation: resultsAnim ease-in-out 10s infinite;
  -o-animation: resultsAnim ease-in-out 10s infinite;
  animation: resultsAnim ease-in-out 10s infinite;
  background: #e5e5ea;
}

@-webkit-keyframes textAnim {
  0% {
    width: 100%;
    margin-left: 0;
  }
  15% {
    width: 65%;
    margin-left: 35%;
  }
  40% {
    width: 65%;
    margin-left: 35%;
  }
  50% {
    width: 92%;
    margin-left: 8%;
  }
  60% {
    width: 92%;
    margin-left: 8%;
  }
  70% {
    width: 100%;
    margin-left: 0;
  }
  100% {
    width: 100%;
    margin-left: 0;
  }
}
@-moz-keyframes textAnim {
  0% {
    width: 100%;
    margin-left: 0;
  }
  15% {
    width: 65%;
    margin-left: 35%;
  }
  40% {
    width: 65%;
    margin-left: 35%;
  }
  50% {
    width: 92%;
    margin-left: 8%;
  }
  60% {
    width: 92%;
    margin-left: 8%;
  }
  70% {
    width: 100%;
    margin-left: 0;
  }
  100% {
    width: 100%;
    margin-left: 0;
  }
}
@-o-keyframes textAnim {
  0% {
    width: 100%;
    margin-left: 0;
  }
  15% {
    width: 65%;
    margin-left: 35%;
  }
  40% {
    width: 65%;
    margin-left: 35%;
  }
  50% {
    width: 92%;
    margin-left: 8%;
  }
  60% {
    width: 92%;
    margin-left: 8%;
  }
  70% {
    width: 100%;
    margin-left: 0;
  }
  100% {
    width: 100%;
    margin-left: 0;
  }
}
@keyframes textAnim {
  0% {
    width: 100%;
    margin-left: 0;
  }
  15% {
    width: 65%;
    margin-left: 35%;
  }
  40% {
    width: 65%;
    margin-left: 35%;
  }
  50% {
    width: 92%;
    margin-left: 8%;
  }
  60% {
    width: 92%;
    margin-left: 8%;
  }
  70% {
    width: 100%;
    margin-left: 0;
  }
  100% {
    width: 100%;
    margin-left: 0;
  }
}
.c-text {
  position: relative;
  top: 30%;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1.5;
  font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, Consolas, "DejaVu Sans Mono", monospace;
  color: #666655;
  -webkit-animation: textAnim ease-in-out 10s infinite;
  -moz-animation: textAnim ease-in-out 10s infinite;
  -o-animation: textAnim ease-in-out 10s infinite;
  animation: textAnim ease-in-out 10s infinite;
}

@-webkit-keyframes blink {
  80% {
    opacity: 0;
  }
}
@-moz-keyframes blink {
  80% {
    opacity: 0;
  }
}
@-o-keyframes blink {
  80% {
    opacity: 0;
  }
}
@keyframes blink {
  80% {
    opacity: 0;
  }
}
.c-write {
  font-size: 80%;
}

.c-cursor {
  position: absolute;
  margin-left: 2px;
  width: 3px;
  height: 1.4em;
  top: 0.2em;
  background: #7fcde3;
  opacity: 1;
  -webkit-animation: blink 1.5s ease-in-out infinite;
  -moz-animation: blink 1.5s ease-in-out infinite;
  -o-animation: blink 1.5s ease-in-out infinite;
  animation: blink 1.5s ease-in-out infinite;
}

.sha-button {
  border: none;
  border-radius: 0.5em;
  color: white;
  background-color: #a9a9a9;
  font-size: 80%;
  text-transform: uppercase;
}

.tippy-content {
  font-family: "PT Sans", sans-serif;
}

.the-archive table {
  border-collapse: collapse;
  font-size: 80%;
}
.the-archive table td, .the-archive table th {
  padding: 0.3rem 0.5rem;
  border: 1px solid darkgray;
  vertical-align: top;
}

aside.coaching__tldr {
  font-family: "PT Sans", sans-serif;
  padding: 0 1em;
  border-radius: 1.4em;
  border: 0.2em solid #B5CB30;
}
aside.coaching__tldr h2 {
  text-align: center;
}

img.coaching__about-me {
  display: block;
  max-width: 100%;
}
@media only screen and (min-width: 480px) {
  img.coaching__about-me {
    float: right;
    max-width: 50%;
    margin-left: 0.5em;
    margin-bottom: 0.5em;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
}
@media only screen and (min-width: 900px) {
  img.coaching__about-me {
    float: right;
    width: 33%;
    margin-left: 1em;
    margin-bottom: 0.1em;
  }
}

.call-to-action.coaching__action {
  --cta-fg: #faf7f4;
  --cta-fg-hover: #faf7f4;
  --cta-bg: #d07c84;
  --cta-bg-hover: rgb(201.2668539326, 105.2331460674, 114.3792134831);
  border-radius: calc(var(--block-radius) / 2);
}