@font-face {
  font-display: swap;
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/Newsreader_9pt-Regular.woff2") format("woff2");
}

body {
  font-size: 17px;
  line-height: 1.3em;
  font-family: "Newsreader", sans-serif;
}

a {
  color: black;
}

ul {
  list-style: none;
}

ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
  background-color: #eee;
}

/* Display list items side by side */
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li + li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: underline;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1rem;
  padding: 0;
}

.grid .card {
  max-width: 100%;
  border: 1px solid lightgray;
  padding: 1rem;
  border-radius: 0.25rem;
}
.grid .card h2 {
  margin-top: 0;
}

.grid .card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.25rem;
}
