:root {
  --bg: #2B301F;
  --fg: #A5AF8B;
  --muted: #929786;
  --max: 560px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 24px;
}

.breadcrumbs {
  min-height: 18px;
  font-size: 16px;
  color: rgba(165, 175, 139, 0.75);
  margin-bottom: 48px;
  font-weight: 100;

}

.breadcrumbs .sep {
  margin: 0 8px;
  color: rgba(116, 121, 104, 0.9);
}

.home-header {
  text-align: center;
}

.home-header::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 500px;
  height: 2px;
  background: rgb(74, 81, 56, 0.7);
  margin: 32px auto 0;
}

h1 {
  margin: 0 0 8px;
  font-size: 54px;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: rgba(165, 175, 139, 0.95);
}

.home-meta {
  font-size: 18px;
  color: rgba(165, 175, 139, 0.8);
  margin: 0;
  font-weight: 100;
}

.home-nav {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-weight: 100;
  gap: 16px;
}

.home-nav .sep {
  color: rgba(116, 121, 104, 0.4);
  font-size: 16px;
  user-select: none;
}

.home-nav a {
  font-size: 16px;
  display: inline-block;
  transition: color 250ms ease;
}

.home-nav a:hover {
  color: rgba(165, 175, 139, 1);
}

.page-title {
  margin: 0 0 28px;
  font-size: 45px;
  font-weight: 200;
  letter-spacing: -0.01em;
  color: rgba(165, 175, 139, 0.95);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list a {
  font-size: 16px;
  display: inline-block;
  transition: transform 250ms ease, color 250ms ease;
  font-weight: 100;

}

.list a:hover {
  color: rgba(165, 175, 139, 1);
}

.notice {
  border: 1px dashed rgba(116, 121, 104, 0.45);
  background: rgba(116, 121, 104, 0.08);
  padding: 14px 14px;
  font-style: italic;
  color: rgba(165, 175, 139, 0.8);
  text-align: center;
}

.article {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.rule {
  height: 1px;
  width: 100%;
  max-width: 500px;
  background: rgba(74, 81, 56, 0.7);
}

.prose h1 {
  margin: 0 0 12px;
  font-size: 38px;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: rgba(165, 175, 139, 0.95);
}

.prose h2 {
  margin: 26px 0 10px;
  font-size: 28px;
  letter-spacing: -0.01em;
  font-weight: 100;
  color: rgba(165, 175, 139, 0.95);
}

.prose h3 {
  margin: 0 0 20px;
  font-size: 20px;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: rgba(165, 175, 139, 0.92);
}

.prose p {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 100;
  color: var(--fg);
}

.prose ul {
  margin: 0 0 14px 18px;
  padding: 0;
}

.prose li {
  margin: 6px 0;
  color: rgba(165, 175, 139, 0.85);
}

.prose blockquote {
  margin: 16px 0;
  padding: 10px 14px;
  border-left: 3px solid var(--muted);
  color: rgba(165, 175, 139, 0.9);
  font-style: italic;
}

.prose blockquote p {
  margin: 0;
}

.media {
  margin: 0;
  border: 1px solid rgba(116, 121, 104, 0.25);
  overflow: hidden;
}

.media img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0.2);
  transition: filter 700ms ease;
}

.media img:hover {
  filter: grayscale(0);
}

.caption {
  font-size: 12px;
  padding: 10px 12px;
  font-style: italic;
  color: rgba(116, 121, 104, 0.95);
}

.footer {
  margin-top: 46px;
  padding-top: 18px;
  border-top: 1px solid rgba(116, 121, 104, 0.3);
  font-size: 12px;
  color: rgba(116, 121, 104, 0.95);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 14px;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid rgba(116, 121, 104, 0.25);
  color: rgba(165, 175, 139, 0.85);
}

.data-table th {
  font-weight: 600;
  color: rgba(165, 175, 139, 0.95);
  border-bottom: 1px solid rgba(116, 121, 104, 0.5);
}

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