/* ── Nav ──────────────────────────────────────────────────────────────── */

nav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.2rem 0;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #aaa;
}

nav ul {
  display: flex !important;
  flex-direction: row !important;
  gap: 1.5rem;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

nav ul li {
  padding: 0 !important;
  margin: 0 !important;
}

nav ul li::before {
  content: none !important; /* kill any latex.css counters */
}

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

nav a:hover {
  text-decoration: underline;
}

.site-name {
  font-size: 1.2rem;
  font-weight: normal;
}

/* ── Back link ────────────────────────────────────────────────────────── */

.back {
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

/* ── Post date ────────────────────────────────────────────────────────── */

.post-date {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #666;
}

/* ── Blog list ────────────────────────────────────────────────────────── */

.blog-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.blog-list li {
  padding: 0 !important;
}

.blog-list li::before {
  content: none !important;
}

.blog-item {
  display: grid !important;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 0.8rem 0 !important;
  border-bottom: 1px solid #ddd;
}

.blog-item:first-child {
  border-top: 1px solid #ddd;
}

.blog-date {
  font-size: 0.85rem;
  color: #666;
  white-space: nowrap;
}

.blog-title a {
  text-decoration: none;
  color: inherit;
}

.blog-title a:hover {
  text-decoration: underline;
}

.blog-excerpt {
  font-size: 0.88rem;
  color: #555;
  margin-top: 0.2rem;
}

/* ── Images ───────────────────────────────────────────────────────────── */

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem auto;
}

/* ── Footer ───────────────────────────────────────────────────────────── */

footer {
  margin-top: 4rem;
  padding-top: 1rem;
  border-top: 1px solid #aaa;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
}
