@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;1,300&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300&display=swap");
body {
  margin: 0;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12pt;
  background: white;
  color: #4A4A4A;
}

h1, h2, h3, h4, h5 {
  font-family: "Lato", Arial, sans-serif;
  margin: 4vh 0 1vh;
}

p, li {
  font-size: 1.2em;
  line-height: 1.6em;
}

a {
  color: #166EA8;
  text-decoration: none;
}

a:hover {
  color: #1985CE;
}

#navigation {
  background: linear-gradient(90deg, #1985CE, #166EA8);
  color: white;
}
#navigation .page-frame {
  display: flex;
  flex-flow: row;
}
#navigation .site-title {
  font-size: 28pt;
  padding: 0.8vh 0;
}
#navigation .site-title a {
  color: rgba(255, 255, 255, 0.8);
}

.page-frame {
  width: min(75vw, 1200px);
  margin: 0 auto;
}
@media (max-width: 800px) {
  .page-frame {
    width: 90vw;
  }
}

.page-content {
  margin-bottom: 10vh;
}
.page-content img.page-cover {
  max-height: 40vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 15px 15px;
}
.page-content .page-posted {
  font-weight: 300;
  font-style: italic;
}
.page-content .article-flow {
  display: flex;
  flex-flow: wrap;
}
.page-content .article-flow .intersitial {
  display: flex;
  flex-flow: column;
  flex: 1 1;
  min-width: 340px;
  margin: 0 1vw;
}
.page-content .article-flow .content {
  flex: 3 1;
  min-width: 500px;
}
.page-content .article-attributions {
  border-top: 1px solid #efefef;
}
.page-content .article-attributions p, .page-content .article-attributions li {
  font-size: 0.8em;
}
.page-content .article-attributions ul {
  list-style: none;
}
.page-content .breadcrumb {
  display: flex;
  flex-flow: row;
}
.page-content .breadcrumb a {
  margin-right: 16px;
}

.article-card {
  display: flex;
  flex-flow: row;
  margin: 2vh 0;
  padding: 2vh 0;
  border-bottom: 1px solid #efefef;
  max-height: 14vh;
}
.article-card .card-cover img.article-cover {
  /*
  height: max(10vh, 150px);
  width: max(14vh, 220px);
  */
  border-radius: 5px;
  object-fit: cover;
  object-position: center;
  margin-right: 2vh;
  height: 100%;
  width: 20vh;
}
.article-card .card-content {
  display: flex;
  flex-grow: 1;
  flex-flow: column;
}
.article-card .card-content .article-title {
  font-size: 1.5em;
}
.article-card .card-content .article-posted {
  font-size: 1em;
  font-weight: 300;
}
.article-card .card-content .article-summary {
  flex-grow: 1;
  padding-top: 1vh;
  font-size: 1.2em;
  line-height: 1.6em;
  overflow: hidden;
}

#site-body {
  min-height: 79vh;
}

.footer {
  background: #191b32;
  color: rgba(255, 255, 255, 0.3);
  min-height: 10vh;
  padding: 2vh 0;
}
.footer a {
  color: #1bafd6;
  margin: 0.4vh 0;
}
.footer .page-frame {
  display: flex;
  flex-flow: wrap;
}
.footer .site-title {
  font-size: 28pt;
  padding: 0.8vh 0;
  flex-grow: 1;
  min-width: 500px;
}
.footer .footer-links {
  display: flex;
  flex-flow: row;
  flex-grow: 1;
  padding-bottom: 2vh;
}
.footer .footer-links .footer-links-set {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
}

/*# sourceMappingURL=styles.map */