/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre, iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button, input, select {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img, video {
  height: auto;
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

.container {
  max-width: min(var(--containerWidth), 100% - 2 * var(--containerPadding));
  margin-inline: auto;
}

.container.narrow {
  --containerWidth: 700px;
}

h1 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 2rem;
}

h2:not(.card h2) {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

p:not(.card p) {
  margin-bottom: 0.4rem;
}

* + h2 {
  margin-top: 1rem;
}

button, .button {
  padding: 4px 8px;
}

.btn-border {
  border: 1px solid var(--primary);
  border-radius: var(--btn-radius);
}

a[rel*=external]::after {
  background: no-repeat 100% url(data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAyNCAyNCIgc3Ryb2tlPSJyZ2IoMTYzLCAxNjMsIDE2MykiPjxwYXRoIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIyIiBkPSJNMTAgNkg2YTIgMiAwIDAwLTIgMnYxMGEyIDIgMCAwMDIgMmgxMGEyIDIgMCAwMDItMnYtNE0xNCA0aDZtMCAwdjZtMC02TDEwIDE0IiAvPjwvc3ZnPg==);
  content: "";
  padding-right: 20px;
  width: 16px;
  height: 16px;
}

a {
  color: var(--color);
}

a.noline {
  text-decoration: none;
}

a.card-link {
  border-radius: var(--card-radius);
  bottom: 0;
  cursor: pointer;
  display: block;
  height: 100%;
  left: 0;
  position: absolute !important;
  right: 0;
  top: 0;
  transition: 0.3s;
  width: 100%;
  z-index: 2 !important;
}

input:not([type=radio]), textarea {
  width: 100%;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
  z-index: 999;
  padding: var(--containerPadding);
  border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  margin-bottom: 2rem;
}

.sitename {
  font-weight: bold;
  text-transform: uppercase;
  margin-left: -8px;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  overflow-x: scroll;
  scrollbar-color: var(--info) transparent;
  scrollbar-width: thin;
  scrollbar-gutter: auto;
  padding: var(--containerPadding);
  margin: 0 calc(-1 * var(--containerPadding)) calc(-1 * var(--containerPadding));
}

nav ul li {
  white-space: nowrap;
}

nav ul > li + li {
  margin-left: 1rem;
}

footer {
  margin-top: 4rem;
  text-align: center;
  padding: var(--containerPadding);
  background-color: var(--primary);
}

footer a {
  color: var(--colorContrast);
}

table {
  width: 100%;
  overflow: hidden;
}

table td,
table th {
  padding: 8px;
}

table th {
  background-color: var(--primary);
  color: var(--colorContrast);
  border-bottom: 1px solid var(--border);
}

tbody tr {
  border-top: 1px solid var(--border);
}

table tr:nth-child(even) {
  background-color: unset;
}

table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
}

.card-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(min(360px, 100%), 1fr));
}

.card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
}

.card h2 {
  font-weight: bold;
}

.card h2, .card p {
  padding: 10px 16px;
}

.card img {
  aspect-ratio: 4/3;
  display: block;
  object-fit: cover;
  background-color: var(--muted);
}

article {
  max-width: 600px;
  margin: 0 auto;
}

article .article-category {
  margin-bottom: 1rem;
}

article .article-info {
  font-size: 0.8rem;
  color: var(--info);
}

article figure {
  margin: 1rem 0;
}

article .article-subtitle {
  font-weight: bold;
  margin-bottom: 2rem;
}

article img {
  aspect-ratio: 4/3;
  display: block;
  object-fit: cover;
  background-color: var(--muted);
}

article ul {
  list-style: disc;
  padding-left: 14px;
  margin: 0.4rem 0;
}

article ul > li + li {
  margin-top: 0.4rem;
}

.author-bio {
  margin-bottom: 2rem;
}

:root {
  --backgroundColor: #e4ebee;
  --primary: #1c1c1c;
  --color: #1c1c1c;
  --colorContrast: #fff;
  --border: #707070;
  --info: #505050;
  --muted: #e7e7e7;
  --containerWidth: 1100px;
  --containerPadding: 1rem;
  --btn-radius: 8px;
  --card-radius: 6px;
}

body {
  background-color: var(--backgroundColor);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color);
  line-height: 1.4;
}

/*# sourceMappingURL=app.output.css.map */
