@media (max-width: 600px) {
  .hide-on-mobile {
    display: none; } }

.articles {
  display: grid;
  grid-template-columns: repeat(3, 33.3%);
  grid-template-rows: 275px;
  font-size: 0.7em; }
  @media (max-width: 600px) {
    .articles {
      grid-template-columns: 100%;
      grid-template-rows: repeat(3, 250px); } }
  .articles article {
    cursor: pointer;
    margin: 1em;
    -webkit-box-shadow: 0 0px 0px #505050;
    -moz-box-shadow: 0 0px 0px #505050;
    -ms-box-shadow: 0 0px 0px #505050;
    -o-box-shadow: 0 0px 0px #505050;
    box-shadow: 0 0px 0px #505050;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out; }
    @media (max-width: 600px) {
      .articles article {
        grid-column: 1; } }
    @media (min-width: 601px) {
      .articles article {
        grid-row: 1; } }
    .articles article:hover {
      -webkit-box-shadow: 0 1px 1px #505050;
      -moz-box-shadow: 0 1px 1px #505050;
      -ms-box-shadow: 0 1px 1px #505050;
      -o-box-shadow: 0 1px 1px #505050;
      box-shadow: 0 1px 1px #505050; }
    .articles article > a,
    .articles article > a:hover,
    .articles article > a:visited,
    .articles article > a:focus {
      color: inherit;
      text-decoration: none; }
    .articles article .article-header {
      background-size: cover;
      background-position: center;
      height: 100px; }
    .articles article .article-body {
      padding: 1em; }
      .articles article .article-body h1 {
        margin-top: 0.1em;
        margin-bottom: 0.3em; }

.page {
  position: relative;
  margin: 0;
  padding: 0;
  text-align: center; }
  .page > div {
    position: relative;
    display: inline-block; }
  .page.vcentered > div {
    top: 50%;
    transform: translateY(-50%); }

.card {
  padding: 1em 3em;
  background-color: white;
  -webkit-box-shadow: 0 4px 4px #505050;
  -moz-box-shadow: 0 4px 4px #505050;
  -ms-box-shadow: 0 4px 4px #505050;
  -o-box-shadow: 0 4px 4px #505050;
  box-shadow: 0 4px 4px #505050; }
  @media (min-width: 600px) {
    .card {
      padding: 4em 10em; } }

.card.dark {
  background-color: black;
  background: linear-gradient(145deg, black, #555);
  color: #EEEEEE; }

.sheet {
  width: 95%;
  margin-bottom: 1em;
  padding: 1em 2em;
  background-color: white;
  -webkit-box-shadow: 0 1px 1px #505050;
  -moz-box-shadow: 0 1px 1px #505050;
  -ms-box-shadow: 0 1px 1px #505050;
  -o-box-shadow: 0 1px 1px #505050;
  box-shadow: 0 1px 1px #505050;
  text-align: justify; }
  @media (min-width: 800px) {
    .sheet {
      width: 790px; } }
  .sheet > div {
    padding: 0.1em 1em 0.3em 1em; }

ul.no-bullets {
  list-style: none;
  -webkit-padding-start: 1em;
  -moz-padding-start: 1em;
  -ms-padding-start: 1em;
  -o-padding-start: 1em;
  padding-start: 1em; }

.links {
  text-align: left; }
  .links.right > a {
    float: right; }
    .links.right > a:first-child {
      margin-right: 0;
      margin-left: 0.3em; }
  .links > a {
    font-size: 1.17em;
    line-height: 1.6em;
    vertical-align: baseline;
    margin-left: 0.3em;
    margin-right: 0.3em; }
    .links > a:first-child {
      margin-left: 0; }
  .links.small > a {
    font-size: 0.90em; }

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

body {
  font-family: europa, sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #505050;
  background-color: #fafafa;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  cursor: default; }
  body * {
    box-sizing: border-box; }

.meta {
  display: none; }
