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

body {
    background-color: #fff;
    color: #628854;
    font-family: sans-serif;
    line-height: 1.5rem;
    font-size: 1.1rem;
    font-weight: 300;
}

.wrapper {
    padding: 2rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Menu */

.menu-bar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  cursor: default;
  pointer-events: auto;
}

.menu {
  text-transform: uppercase;
  position: relative;
  color: #628854;
  display: inline-flex;
  flex-wrap: wrap;
  height: min-content;
  align-content: baseline;
}

.menu-left {
  grid-area: 1 / 1 / 2 / 5;
}

.menu-right {
  grid-area: 1 / 3 / 2 / 7;
  direction: rtl;
}

/* Checkbox */

.menu-left .toggler {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 1.5rem;
  opacity: 0;
}

.menu-right .toggler {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  cursor: pointer;
  width: 80px;
  height: 1.5rem;
  opacity: 0;
}

.menu input[type="checkbox"]:checked .item {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  -o-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  top: 0px;
}

.menu-right .item {
  margin-right: 0;
  margin-left: 30px;
}

.menu:hover {
  pointer-events: all;
}

.menu a {
    text-decoration: none;
}

.label {
  display: inline-block;
  cursor: pointer;
  pointer-events: all;
}

.spacer {
  display: inline-block;
  width: 60px;
  margin-left: 15px;
  margin-right: 15px;
  vertical-align: middle;
  cursor: default;
}

.spacer-line {
    height: 50%;
    border-bottom: 1px solid #628854;
    content: "";
    width: 0%;
    transition: width 0.25s ease;
    transition-delay: 0.7s;
}

.item {
  display: inline-block;
  position: relative;
  margin-right: 30px;
  top: 10px;
  opacity: 0;
  transition: opacity 0.5s ease, top 0.5s ease;
  transition-delay: 0;
}

/* Menu */

.spacer {
  display: inline-block;
  width: 80px;
  margin-left: 15px;
  margin-right: 15px;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}

.menu:hover .spacer .spacer-line {
  width: 100%;
  transition-delay: 0s;
}
.menu:hover .item {
  opacity: 1;
  top: 0px;
}
.item:nth-child(1) {
  transition-delay: 0.45s;
}
.item:nth-child(2) {
  transition-delay: 0.4s;
}
.item:nth-child(3) {
  transition-delay: 0.35s;
}
.item:nth-child(4) {
  transition-delay: 0.3s;
}
.item:nth-child(5) {
  transition-delay: 0.25s;
}
.item:nth-child(6) {
  transition-delay: 0.2s;
}
.item:nth-child(7) {
  transition-delay: 0.15s;
}
.item:nth-child(8) {
  transition-delay: 0.1s;
}
.item:nth-child(9) {
  transition-delay: 0.05s;
}
.item:nth-child(10) {
  transition-delay: 0s;
}
.menu:hover .item:nth-child(1) {
  transition-delay: 0.25s;
}
.menu:hover .item:nth-child(2) {
  transition-delay: 0.3s;
}
.menu:hover .item:nth-child(3) {
  transition-delay: 0.35s;
}
.menu:hover .item:nth-child(4) {
  transition-delay: 0.4s;
}
.menu:hover .item:nth-child(5) {
  transition-delay: 0.45s;
}
.menu:hover .item:nth-child(6) {
  transition-delay: 0.5s;
}
.menu:hover .item:nth-child(7) {
  transition-delay: 0.55s;
}
.menu:hover .item:nth-child(8) {
  transition-delay: 0.6s;
}
.menu:hover .item:nth-child(9) {
  transition-delay: 0.65s;
}
.menu:hover .item:nth-child(10) {
  transition-delay: 0.7s;
}

/* Brand */

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.logo {
    width: 200px;
}

.quote {
    padding: 4rem;
    font-style: italic;
    font-weight: 200;
    line-height: 1.7rem;
    font-size: 1.2rem;
}

@media only screen and (max-width: 600px) {
    .quote {
    padding: 2rem;
    }
}

ol {
    margin: 0;
    padding: 0;
    list-style-position: inside;
}

article {
    line-height: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
}

article ul {
  line-height: 1.5rem;
  font-size: 1.1rem;
  font-weight: 400;
  list-style: disc;
  padding-left: 1rem;
}

article ol {
  line-height: 1.5rem;
  font-size: 1.1rem;
  font-weight: 400;
  padding-left: 1rem;
}

h1 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 2.5rem;
}

article p {
    padding: 0.5rem 0;
}

article h2 {
  font-size: 1.8rem;
  font-weight: 200;
}

h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 2rem;
}

article h4 {
    font-weight: 600;
}

article .reference {
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 300;
}

.manifest {
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-template-rows: auto;
    row-gap: 1rem;
}

/* Footer */

.footer {
    background-color: #628854;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.4rem;
}

.imprint {
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.footer ul {
    list-style: none;
    font-weight: 200;
    padding-left: 0;
    margin-left: 0;
}

.footer ul > li:first-of-type {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 2rem;
}

.footer ul > li > a {
    text-decoration: none;
    color: #f6f6f6;
}

.copyright {
    display: flex;
    flex-direction: row;
}

/*  */

a {
    color: #628854;
}

.plain-input {
    border: none;
    box-shadow: none;
    background-color: transparent;
    outline: none;
    font-size: inherit;
    font-family: inherit;
    color: #628854;
}

.input-field {
    border: none;
    outline: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #628854;
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 12px; /* 1/4 of 48px input height */
    box-sizing: border-box;
    box-shadow: none;
    background-color: transparent;
    border: 0.5px solid #628854;
  }

  /* Blog */

  .posts {
    border-bottom: 1px solid #628854;
  }

  /* Helper */

  .pt-1 {
    padding-top: 1rem;
  }
  
  .pt-2 {
      padding-top: 2rem;
  }
  
  .pb-1 {
      padding-bottom: 1rem;
  }

  .grid-listing {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    grid-template-rows: auto;
    gap: 0.3rem 3rem;
    width: 100%;
  }

  @media only screen and (max-width: 600px) {
    .grid-listing {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      gap: 0.5rem 0;
      width: 100%;
    }

    .grid-listing a {
      padding-bottom: 0.6rem;
      border-bottom: 0.5px solid #628854;
    }

    .grid-listing a:last-of-type {
      padding-bottom: 0;
      border-bottom: none;
    }

    #entry_origin {
      font-weight: 400;
    }
  }

  .grid-listing > a {
    text-decoration: none;
  }