/* Shared minimal page styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #fff;
  color: #111;
  font-family: 'Georgia', serif;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

/* Header */
.page-header {
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid #eee;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.page-header a.back {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
}
.page-header a.back:hover { color: #111; }

/* Sections */
.section {
  margin-bottom: 3rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 1rem;
}

/* Post list */
.post-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.post-list li a {
  display: block;
  padding: 0.7rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
  color: #111;
  text-decoration: none;
  transition: color 0.15s;
}
.post-list li a:hover { color: #555; }

/* Link list (external links) */
.link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.link-list li a {
  display: block;
  padding: 0.6rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.88rem;
  color: #555;
  text-decoration: none;
  transition: color 0.15s;
}
.link-list li a:hover { color: #111; }

/* GitHub link */
.gh-link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 1px;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.gh-link:hover { opacity: 0.5; }

/* Table */
.model-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.model-table th {
  text-align: left;
  font-weight: normal;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
.model-table td {
  padding: 0.6rem 0;
  border-bottom: 1px solid #f2f2f2;
  color: #333;
}
.model-table td a { color: #555; text-decoration: none; border-bottom: 1px solid #ddd; }
.model-table td a:hover { color: #111; }

/* Intro paragraph */
.intro-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 2rem;
}

/* Update badge */
.update-note {
  font-size: 0.78rem;
  color: #888;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

/* Hugging Face link */
.hf-link {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 1px;
  margin-bottom: 1.5rem;
}
.hf-link:hover { opacity: 0.5; }
