/* text styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--fg12);
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0.25rem 0 1rem 0;
  color: var(--fg10);
}

p {
  margin: 1rem 0;
}

/* article layout */
header {
  margin-bottom: 3rem;
}

header .summary {
  margin-top: 1rem;
}

section {
  margin: 3rem 0;
}

section img {
  width: 100%;
}

figcaption {
  font-size: 0.9rem;
  color: var(--fg10);
  font-style: italic;
}

aside {
  margin: 1rem 0;
}

.center {
  width: 100%;
  display: grid;
  place-items: center;
}

/* lists */

ul {
  list-style-position: inside;
}

li {
  margin: 0.25rem 0;
}

/* tables */

table {
  width: 100%;
  border-collapse: collapse;
}

thead td {
  font-weight: bold;
}

td {
  border: 1px solid var(--fg6);
  padding: 8px;
}

td:first-child {
  width: max-content;
}

td:first-child b,
td:first-child p {
  width: max-content;
}

td > b {
  font-weight: 600;
}

td > p {
  margin: 0;
  color: var(--fg10);
}
