* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  line-height: 1.6;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: #1a1a1a;
  background: #faf9f7;
  max-width: 120ch;
  margin: 0 auto;
  padding: 2rem 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: bold;
  line-height: 1.25;
  margin: 2.5rem 0 1rem;
}

h1 {
  font-size: 2rem;
  letter-spacing: -0.01em;
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 1.4rem;
  margin-top: 3rem;
}

h3 {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: normal;
  text-decoration: none;
}

p {
  margin: 1.25rem 0;
}

a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

a:visited {
  color: #444;
}

a:hover {
  color: #c0392b;
  text-decoration-color: #c0392b;
}

a:active {
  color: #c0392b;
}

ul, ol {
  margin: 1.25rem 0;
  padding-left: 2ch;
}

li {
  margin: 0.6rem 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem 0;
  border: none;
}

code {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 0.875em;
  background: #f0ede8;
  padding: 0.1em 0.3em;
  border-radius: 2px;
}

pre {
  overflow-x: auto;
  margin: 1.5rem 0;
  padding: 1.25rem;
  border: none;
  background: #f0ede8;
}

pre code {
  background: none;
  padding: 0;
  font-size: 0.875rem;
}

blockquote {
  margin: 1.5rem 0;
  padding: 0 0 0 2ch;
  border-left: 3px solid #c0392b;
  font-style: italic;
  color: #444;
}

table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  border: 1px solid #ddd;
}

th, td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border: 1px solid #ddd;
}

th {
  font-weight: bold;
  background: #f0ede8;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2.5rem 0;
}

header {
  margin-bottom: 3rem;
}

footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ddd;
  font-size: 0.875rem;
  color: #666;
}

nav {
  margin: 2rem 0;
}

nav a {
  margin-right: 1.5ch;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

nav a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.articles-table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  border: none;
}

.articles-table thead tr {
  border-bottom: 1px solid #1a1a1a;
}

.articles-table th {
  background: none;
  border: none;
  padding: 0.4rem 1.5ch 0.4rem 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.75rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  text-align: left;
}

.articles-table td {
  border: none;
  border-bottom: 1px solid #e8e4de;
  padding: 0.75rem 1.5ch 0.75rem 0;
  vertical-align: top;
}

.articles-table tr:last-child td {
  border-bottom: none;
}

.articles-table .col-date {
  width: 14ch;
  font-size: 0.875rem;
  color: #666;
  white-space: nowrap;
}

.articles-table .col-category {
  width: 20ch;
  font-size: 0.875rem;
  color: #888;
  font-style: italic;
}

.articles-table .col-title a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 0.95rem;
}

.articles-table .col-title a:hover {
  color: #c0392b;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

@media (max-width: 600px) {
  html {
    font-size: 15px;
  }

  body {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  pre {
    padding: 1rem;
    font-size: 0.85rem;
  }

  table {
    font-size: 0.875rem;
  }

  th, td {
    padding: 0.4rem 0.5rem;
  }

  .articles-table .col-category {
    display: none;
  }

  .articles-table .col-date {
    width: 10ch;
    font-size: 0.8rem;
  }

  .articles-table .col-title a {
    font-size: 0.875rem;
  }
}