* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  min-height: 100vh;
  background: #1a1f2e;
  color: #e8e0d0;
  font-family: Nunito, sans-serif;
  line-height: 1.7;
}
.article-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 20px;
}
.breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 24px;
}
.breadcrumb a { color: #d4b96e; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
h1 {
  font-family: Cinzel, serif;
  font-size: clamp(22px, 4vw, 36px);
  color: #d4b96e;
  margin-bottom: 12px;
  line-height: 1.3;
}
.article-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 32px;
}
h2 {
  font-family: Cinzel, serif;
  font-size: clamp(18px, 2.5vw, 24px);
  color: #d4b96e;
  margin-top: 36px;
  margin-bottom: 14px;
}
h3 {
  font-family: Cinzel, serif;
  font-size: clamp(16px, 2vw, 20px);
  color: #c8b870;
  margin-top: 28px;
  margin-bottom: 10px;
}
p {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #c8c0b0;
  margin-bottom: 16px;
}
ul, ol {
  margin: 12px 0 20px 24px;
  color: #c8c0b0;
  font-size: clamp(14px, 1.6vw, 16px);
}
li { margin-bottom: 6px; }
strong { color: #e8e0d0; }
a { color: #d4b96e; }
a:hover { text-decoration: underline; }
.cta-box {
  background: rgba(212, 185, 110, 0.1);
  border: 1px solid rgba(212, 185, 110, 0.4);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin: 36px 0;
}
.cta-box p { color: #e8e0d0; font-size: 16px; margin-bottom: 12px; }
.cta-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #d4b96e;
  color: #1a1f2e;
  text-decoration: none;
  font-family: Cinzel, serif;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  transition: background 0.3s;
}
.cta-btn:hover { background: #e8cc80; text-decoration: none; }
.related-articles {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(212, 185, 110, 0.2);
}
.related-articles h3 { color: #d4b96e; }
.related-articles ul { list-style: none; margin-left: 0; }
.related-articles li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.related-articles a { font-size: 15px; }
.site-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 20px auto 10px;
  padding: 7px 18px;
  width: fit-content;
  border-radius: 6px;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 5px,
      rgba(255,255,255,0.04) 5px,
      rgba(255,255,255,0.04) 6px
    ),
    linear-gradient(160deg, #2e2e2e 0%, #1a1a1a 45%, #272727 100%);
  border: 1px solid #5a5a5a;
  border-top-color: #888;
  border-bottom-color: #333;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 -1px 0 rgba(0,0,0,0.4) inset,
    0 3px 10px rgba(0,0,0,0.5);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.site-footer-link {
  color: #c8c8c8;
  text-decoration: none;
  margin: 0 8px;
  padding: 2px 0;
  font-variant: small-caps;
  letter-spacing: 0.8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-link:hover {
  color: #f0f0f0;
  transform: translateY(-1px);
}

.site-footer-link:focus-visible {
  outline: 1px solid #999;
  outline-offset: 3px;
  border-radius: 2px;
}

.site-footer-link.is-active {
  color: #e8e8e8;
  font-weight: 600;
}

.site-footer-link:not(:last-child)::after {
  content: '✦';
  color: #6a6a6a;
  font-size: 7px;
  margin-left: 16px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
/* Article listing page */
.article-list { list-style: none; margin: 0; padding: 0; }
.article-list li {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border-left: 3px solid #d4b96e;
  padding: 20px;
  margin-bottom: 16px;
}
.article-list li a {
  font-family: Cinzel, serif;
  font-size: clamp(16px, 2vw, 20px);
  color: #d4b96e;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}
.article-list li a:hover { text-decoration: underline; }
.article-list li .desc {
  font-size: 14px;
  color: #a8a0a0;
  line-height: 1.5;
}
.article-list li .date {
  font-size: 12px;
  color: #777;
  margin-top: 6px;
}
