@charset "UTF-8";
/*  Reset ♥
    http://meyerweb.com/eric/tools/css/reset/
    v2.0 | 20110126
    License: none (public domain)
------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* remember to define focus styles. Hee Haw */
:focus {
  outline: 0;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* elements */
body {
  background-color: #460D03;
  color: #333;
  font-size: 18px;
  line-height: 1.4em;
  font-family: "CMU Concrete", Georgia, serif;
  font-variant-numeric: lining-nums;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #E37700;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: underline;
}

a.button {
  color: #460D03;
  font-weight: bold;
  padding: 12px 16px;
  border-radius: 8px;
  display: inline-block;
  width: 100%;
  border: 1px solid #460D03;
  text-align: center;
  margin-bottom: 20px;
}
a.button:hover, a.button:focus, a.button:active {
  background: #E37700;
  border-color: #E37700;
  color: white;
  text-decoration: none;
}

strong, b {
  font-weight: bold;
}

em, i {
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "EBGaramond", Garamond, Georgia, serif;
  line-height: 1;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #460D03;
}

a h1, a h2, a h3, a h4, a h5, a h6 {
  color: #460D03;
}

h1 {
  font-size: 2.2em;
}

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.4em;
}

h4 {
  font-size: 1.2em;
}

hr {
  border-bottom: 1px solid #333;
  border-top: none;
}

*:not(pre) > code, pre {
  border: 1px solid #ede3e0;
  padding: 2px 4px;
  font-family: ui-monospace, monospace;
  font-size: 0.85em;
}

pre {
  padding: 6px 12px;
}

/* general layout */
.header-and-body {
  background-color: #FFFAF7;
  min-height: 100vh;
}

.dark {
  background: #460D03;
  color: #FFFAF7;
}
.dark a {
  color: inherit;
  text-decoration: underline;
}
.dark a:hover, .dark a:focus {
  opacity: 0.8;
}
.dark .social-icons svg {
  fill: #FFFAF7;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1140px;
  display: flex;
  justify-content: space-between;
}
.container.padded {
  padding: 0 20px;
  max-width: 1180px;
}
.container.sidebarred {
  flex-direction: row;
}
.container.sidebarred .prose > * {
  margin-left: 0;
}
.container.sidebarred .sidebar {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 340px;
  padding-left: 40px;
  padding-bottom: 40px;
}

.social-icons {
  display: flex;
}
.social-icons li {
  margin-left: 10px;
}
.social-icons li, .social-icons a, .social-icons svg {
  width: 20px;
  height: 20px;
}

.header {
  padding: 0 20px 20px 20px;
  border-top: 6px solid #460D03;
}
.header .line {
  width: 100vw;
  background-color: #460D03;
  height: 1px;
  position: absolute;
  right: 0;
}
.header .line-cover {
  background-color: #FFFAF7;
  height: 1px;
  position: absolute;
  width: 274px;
  left: 28px;
}
.header .line, .header .line-cover {
  top: 163px;
}
.header .logo {
  position: relative;
  display: block;
  width: 100%;
  max-width: 323px;
}
.header .container {
  align-items: flex-end;
  position: relative;
}
.header a.tagline {
  position: absolute;
  font-family: "EBGaramond", Garamond, Georgia, serif;
  font-variant-caps: all-small-caps;
  font-size: 1.25em;
  text-align: right;
  right: 0;
  top: 16px;
  color: #460D03;
}
.header .social-icons {
  position: absolute;
  right: 0;
  bottom: 15px;
}
.header .social-icons svg {
  fill: #460D03;
}
.header .main-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-weight: bold;
  text-align: right;
  margin-bottom: 50px;
  padding: 10px 0;
}
.header .main-menu li {
  white-space: nowrap;
  margin-left: 15px;
}
.header a:hover img, .header a:hover svg, .header a:focus img, .header a:focus svg {
  opacity: 0.7;
}

.body {
  padding-bottom: 40px;
  overflow: hidden;
}
.body .container:not(.sidebarred) {
  flex-direction: column;
}

article {
  width: 100%;
}

.prose {
  line-height: 1.6;
}
.prose iframe.youtube-embed {
  width: 100%;
  aspect-ratio: 16/9;
}
.prose ul {
  list-style-type: disc;
  padding-left: 1em;
}
.prose > img, .prose > p > img, .prose > a > img, .prose > p > a > img, .prose > figure > img, .prose > figure > a > img, .prose > iframe {
  border: 1px solid #ede3e0;
  max-width: 100%;
}
.prose > *, .prose > img { /* need to specify img to properly override above max-width when direct child */
  margin: 0 auto;
  margin-bottom: 20px;
  display: block;
  text-align: justify;
  width: 100%;
  max-width: 760px;
}
.prose > figure > figcaption {
  text-align: right;
  font-style: italic;
  font-size: 0.95em;
}
.prose.fullwidth > * {
  max-width: 100%;
}
.prose.midwidth > * {
  max-width: 912px;
}
.prose > h1 {
  border-bottom: 1px solid #460D03;
  padding-bottom: 10px;
  margin-bottom: 30px;
  text-align: center;
  width: fit-content;
}
.prose > h1:not(:first-child) {
  margin-top: 60px;
}
.prose > h2:not(:first-child) {
  margin-top: 40px;
}
.prose > h3:not(:first-child) {
  margin-top: 30px;
}

.footer {
  font-size: 16px;
  padding: 20px;
  font-weight: bold;
  line-height: 1.5;
  text-align: right;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .social-icons {
  display: none;
}

/* layout- and page-specific styles */
.graphic-background {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px;
}
.graphic-background > * {
  position: relative;
}
.graphic-background::before {
  content: "";
  background-image: url("/ui/grid.png");
  background-size: 5px;
  background-position-x: center;
  opacity: 0.09;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  position: absolute;
}
.graphic-background .graphic-title {
  width: 100%;
  font-family: "jr!hand", "CMU Concrete", Georgia, serif;
  font-size: 1.45em;
  line-height: 1.2;
  text-align: center;
  padding: 10px 0;
}

.inline-graphic {
  flex-direction: column;
  align-items: center;
}
.inline-graphic img {
  max-width: 100%;
  margin: 10px;
}
.inline-graphic figcaption {
  margin-bottom: 15px;
  font-family: "jr!hand", "CMU Concrete", Georgia, serif;
  font-size: 1.1em;
}

.graphic {
  margin: 20px;
  border: none !important;
}
.graphic.shadowed {
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1450980392));
}

.graphic-group {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-evenly;
}
.graphic-group .inline-graphic {
  padding: 0;
}
.graphic-group .graphic-background::before {
  display: none;
}

.hero-wrap {
  margin-bottom: 30px;
  padding: 0;
}
.hero-wrap .hero-image {
  width: 100%;
  background-size: cover;
  background-position: center;
  height: 50vh;
  min-height: 241px;
  max-height: 500px;
}
.hero-wrap .hero-image.background-bottom {
  background-position: bottom;
}
.hero-wrap .hero-image.background-top {
  background-position: top;
}
.hero-wrap .hero-graphic {
  height: calc(50vh - 40px);
  min-height: 201px;
  max-height: 460px;
  max-width: 100%;
  margin: 20px auto;
}

.labeled-value {
  margin-bottom: 20px;
}
.labeled-value .label {
  font-family: "EBGaramond", Garamond, Georgia, serif;
  font-variant-caps: all-small-caps;
  font-size: 22px;
}

.layout-project h1 {
  text-align: unset;
  margin-top: 5px;
}
.layout-project h1 .iconed-text {
  padding-bottom: 20px;
}
.layout-project:not(.has-hero) h1 .iconed-text {
  border-bottom: 1px solid #460D03;
  margin-bottom: 30px;
}

ul.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: unset;
  padding: 0;
  list-style-type: none;
}
ul.cards .card {
  width: 50%;
  min-width: 350px;
  flex-grow: 1;
  margin-bottom: 30px;
}
ul.cards .card a {
  color: #460D03;
}
ul.cards .card a .subtitle {
  color: #333;
}
ul.cards .card a .icon {
  margin-left: 15px;
}

.iconed-text {
  display: flex;
  position: relative;
  align-items: center;
}
.iconed-text .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 15px;
}

.begbox-wrap {
  padding-top: 20px;
  margin-top: 120px;
  background: #EFDBCC;
  position: relative;
}

.begbox {
  position: relative;
  background-position: center;
  background-size: cover;
  color: #FFFAF7;
  font-size: 1.15em;
  line-height: 1.5em;
  font-weight: bold;
  padding: 60px 20px;
  border: 10px solid white;
  height: 600px;
  max-height: calc(100vh - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  width: 100%;
  transform: rotate(2.5deg);
  text-shadow: 0px 0.5px 2px rgba(0, 0, 0, 0.25);
}
.begbox.dark-text {
  color: #070B1E;
  text-shadow: 0px 0.5px 2px rgba(255, 255, 255, 0.75);
}
.begbox h1 {
  width: fit-content;
  font-family: "Milkshake";
  font-size: 2.75em;
  transform: rotate(-10deg);
}
.begbox p {
  max-width: 400px;
  margin-bottom: 0.75em;
  margin-left: 100px;
}
.begbox a {
  color: inherit;
  text-decoration: underline;
}

.begbox-inner {
  padding-bottom: 40px;
  padding-right: 40px;
}

.begbox-under {
  background: #460D03;
  height: 100vh;
  position: absolute;
  top: calc(100% - 80px);
  width: 100%;
}

/* narrow window */
.narrow-only {
  display: none;
}

@media only screen and (max-height: 500px) {
  .begbox {
    max-height: 400px;
  }
}
@media only screen and (max-width: 800px) {
  .narrow-only {
    display: unset;
  }
  .wide-only {
    display: none;
  }
  body {
    font-size: 17px;
  }
  .page-part .container {
    flex-direction: column;
  }
  .container.sidebarred {
    flex-direction: column;
  }
  .container.sidebarred .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: unset;
    padding-left: 0;
  }
  .container.sidebarred .sidebar .labeled-value {
    width: 50%;
  }
  .header .line {
    right: -20px;
  }
  .header .line-cover {
    left: auto;
  }
  .header .container {
    flex-direction: column;
    align-items: center;
  }
  .header a.tagline {
    position: relative;
    top: 0;
    text-align: center;
    margin-bottom: 20px;
  }
  .header .main-menu {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px 0;
    border-top: 1px solid #460D03;
    border-bottom: 1px solid #460D03;
  }
  .header .main-menu li {
    white-space: nowrap;
    margin: 0 5px;
  }
  .header .social-icons {
    display: none;
  }
  .footer {
    text-align: center;
  }
  .footer .container {
    flex-direction: column;
    align-items: center;
  }
  .footer .container > *:not(:last-child) {
    margin-bottom: 20px;
  }
  .footer .social-icons {
    display: flex;
  }
  .footer .wordmark {
    display: none;
  }
  .footer .rose {
    width: 50px;
    display: inline-block;
  }
  .begbox {
    font-size: unset;
    text-align: justify;
  }
  .begbox h1 {
    text-align: center;
    width: auto;
    transform: unset;
    margin-bottom: 20px;
  }
  .begbox p {
    margin-left: unset;
  }
  .begbox-inner {
    padding-right: unset;
  }
}
@media only screen and (max-width: 610px) {
  .prose > * {
    text-align: left;
  }
  .prose img.floated {
    float: unset !important;
    max-width: 100% !important;
    max-height: unset !important;
    width: 100%;
    margin: 0 !important;
  }
}
@font-face {
  src: url("https://waysidemapping.org/assets/fonts/EBGaramond08-Regular.otf");
  font-family: "EBGaramond";
}
@font-face {
  src: url("https://waysidemapping.org/assets/fonts/cmunorm.ttf");
  font-family: "CMU Concrete";
}
@font-face {
  src: url("https://waysidemapping.org/assets/fonts/cmunobx.ttf");
  font-family: "CMU Concrete";
  font-weight: bold;
}
@font-face {
  src: url("https://waysidemapping.org/assets/fonts/cmunoti.ttf");
  font-family: "CMU Concrete";
  font-style: italic;
}
@font-face {
  src: url("https://waysidemapping.org/assets/fonts/cmunobi.ttf");
  font-family: "CMU Concrete";
  font-weight: bold;
  font-style: italic;
}
@font-face {
  src: url("https://waysidemapping.org/assets/fonts/jr!ha___.ttf");
  font-family: "jr!hand";
}
@font-face {
  src: url("https://waysidemapping.org/assets/fonts/Milkshake.otf");
  font-family: "Milkshake";
}

/*# sourceMappingURL=style.css.map */