:root {
  --font-main: Courier New, Monospace;
  --font-size: 18px;
  --light-hotgrey: #F0F0E0;
  --text-main: #333;
  --text-caption: #555;
  --accent-deepblue: #006666;
  --accent-amberbrown: #6d4900;
  --borders: rgba(153, 102, 0, 0.25);
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-width: 100vw;
}

html {
  font-family: var(--font-main);
  font-size: var(--font-size);
  color: var(--text-main);
  background: var(--light-hotgrey);
}

body {
  display: flex;
  flex-direction: column;
  justify-content: start;
}


a {
  color: var(--accent-amberbrown);
}
a:hover {
  color: var(--accent-deepblue);
}
a:focus {
  color: var(--accent-deepblue) !important;
  outline: 2px solid var(--accent-deepblue);
}


h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
  margin-top: 0;
}
h1 + h1, h1 + h2, h1 + h3, h1 + h4, h1 + h5, h1 + h6, h2 + h1, h2 + h2, h2 + h3, h2 + h4, h2 + h5, h2 + h6, h3 + h1, h3 + h2, h3 + h3, h3 + h4, h3 + h5, h3 + h6, h4 + h1, h4 + h2, h4 + h3, h4 + h4, h4 + h5, h4 + h6, h5 + h1, h5 + h2, h5 + h3, h5 + h4, h5 + h5, h5 + h6, h6 + h1, h6 + h2, h6 + h3, h6 + h4, h6 + h5, h6 + h6 {
  margin-top: 16px;
}

p {
  margin-bottom: 0;
}
p + p {
  margin-top: 24px;
}
p + h1, p + h2, p + h3, p + h4, p + h5, p + h6 {
  margin-top: 36px;
}

figcaption {
  font-size: 14px;
  color: var(--text-caption);
}

#site-header {
  border-bottom: 1px solid var(--borders);
  padding: 24px 24px 12px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  #site-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px 12px;
  }
  #site-header nav {
    padding-right: 12px;
  }
}
#site-header #site-title {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}
#site-header #site-title a {
  text-decoration: none;
}
#site-header nav > ul {
  display: flex;
  list-style-type: none;
  justify-content: center;
  padding: 0;
  margin-bottom: 0;
}
#site-header nav > ul li + li {
  margin-left: 20px;
}
#site-header nav > ul li a {
  padding: 8px 16px;
  display: block;
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--text-main);
}
#site-header nav > ul li a:hover {
  color: var(--accent-amberbrown);
  text-decoration: underline;
}
#site-header nav > ul li.active a {
  color: var(--accent-amberbrown);
  font-weight: bold;

}

#site-wrapper {
  padding: 0 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#site-footer {
  display: block;
  width: 100%;
  align-self: flex-end;
  border-top: 1px solid var(--borders);
  padding: 18px 24px;
  text-align: center;
  font-size: 0.85rem;
}

#page-introduction {
  padding: 24px;
  border-bottom: 1px solid var(--borders);
  width: 100%;
  display: flex;
  flex-direction: column;
}

#page-introduction h1, #page-introduction > p {
  display: block;
  max-width: 100%;
  text-align: center;
}

#page-introduction > p {
  text-align: left;
}

.content-block {
  padding-top: 24px;
  padding-bottom: 24px;
  display: block;
  position: relative;
  width: 100%;
}

.content-block--media {
  text-align: center;
  padding-bottom: 0;
}

.content-block--media img {
  max-width: 100%;
}

@media screen and (min-width: 600px) {
  .content-block {
    max-width: 84vw;
  }
  .content-block--media {
    max-width: 100vw;
  }
  #page-introduction h1,
  #page-introduction > p {
    text-align: left;
    margin-left: 8vw;
    margin-right: 8vw;
  }
}
@media screen and (min-width: 900px) {
  .content-block {
    max-width: 78vw;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .content-block--media {
    max-width: 100vw;
    padding-bottom: 0;
  }
  #page-introduction {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  #page-introduction h1,
  #page-introduction > p {
    margin-left: 11vw;
    margin-right: 11vw;
  }
}
@media screen and (min-width: 1200px) {
  .content-block {
    max-width: 50vw;
  }
  .content-block--media {
    max-width: 100vw;
    padding-bottom: 0;
  }
  #page-introduction {
    flex-direction: row;
    justify-content: space-between;
  }
  #page-introduction > p {
    width: calc(75vw - (24px * 3));
  }
  #page-introduction h1,
  #page-introduction > p {
    margin: 0;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.content-block + .content-block&:not {
  border-top: 1px solid var(--borders);
}

.content-block--listing {

}

.content-block--listing ul {
  list-style-type: none;
  padding: 0;
}

.content-block--listing li {
  border-bottom: 1px solid var(--borders);
}

.content-block--listing li a {
  display: flex;
  padding: 12px 24px;
  text-decoration: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
}

.content-block--listing li a:hover {
  color: var(--accent-amberbrown);
}

.content-block--listing li a:after {
  content: "→";
  font-size: 1.5rem;
}

.content-block--blogposts {
  
}

.content-block--blogposts ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.content-block--blogposts ul li {
  border: 1px solid var(--borders);
}

.content-block--blogposts ul li + li {
  margin-top: 24px;
}

.blogpost {
  padding: 24px;
}

@media screen and (min-width: 1200px) {
  .content-block--blogposts {
    max-width: 84vw;
  }
  
  .content-block--blogposts ul {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 24px;
  }
  
  .content-block--blogposts ul li + li {
    margin-top: 0;
  }
}

@media screen and (min-width: 1600px) {
  .content-block--blogposts ul {
    grid-template-columns: 25% 25% 25% 25%;
  }
}

.blogpost > header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.blogpost > footer {
  text-align: right;
}

.blogpost > header + * {
  margin-top: 12px;
}

.blogpost .blogpost-category {
  
}

.blogpost .blogpost-date {
  color: var(--text-caption)
}

.content-block--blogposts .blogpost-title {
  
}

.content-block--blogposts .blogpost-title a {
  text-decoration: none;
}

.content-block--blogposts .blogpost-synopsis {
  
}

.content-block--blogposts .blogpost-synopsis + * {
  margin-top: 12px;
}

.content-block--blogposts .blogpost-button {
  
}

#blog-introduction {
  
}

.blog-introduction-chapo {
  font-size: 1.25rem;
}

.blog-introduction-chapo + * {
  margin-top: 24px;
}

.blog-introduction-details {
  color: var(--text-caption);
/*   display: flex;
  justify-content: space-between; */
  font-size: 0.85rem;
}

.blog-introduction-details > * + * {
  margin-left: 12px;
}

.blog-introduction-details > * + *:before {
  content: "|";
  margin-right: 12px;
}

.blog-introduction-details .blogpost-category {
}

.blog-introduction-details .blogpost-date {
}

.content-block--singlepost {
  border: none;
}

#blog-introduction + .content-block--singlepost {
  padding-top: 0;
}

.content-block--singlepost > footer {
  margin-top: 48px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-block--singlepost > footer:before {
  content: "\26EC";
  margin-bottom: 36px;
}

.cta-back {
  padding: 12px 24px;
  text-decoration: none;
}

.cta-back:before {
  content: "\21FD";
  margin-right: 12px;
}