.log-page .log-heading {
  display: flex;
  align-items: center;
  min-height: 180px;
  padding-bottom: 40px;
  margin-bottom: 8px;
}
.cluster-light .log-page h1.title {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(3.5rem, 6.5vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
}
.log-accent { color: var(--site-yellow); }
.log-entries {
  display: grid;
  grid-template-columns: 1fr;
}
.log-page .post-row {
  position: relative;
  min-width: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--site-ink) 16%, var(--site-white));
}
.log-page .post-row:hover { background: transparent; }
.log-page .post-link {
  display: block;
  padding: 28px 0;
  color: var(--site-ink);
  text-decoration: none;
  transition: background-color 180ms ease;
}
.log-page .post-date {
  display: block;
  margin-top: 13px;
  color: var(--site-muted);
  font-family: var(--font-secondary);
  font-size: .75rem;
  font-variant-numeric: tabular-nums;
  line-height: 1.6;
}
.log-page .post-title {
  margin: 0;
  color: var(--site-ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.5rem, 2.3vw, 1.95rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.025em;
  text-wrap: pretty;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  transition: text-decoration-color 180ms ease;
}
.log-page .post-link:hover,
.log-page .post-link:focus-visible {
  background-color: color-mix(in srgb, var(--site-yellow) 6%, var(--site-white));
}
.log-page .post-link:hover .post-title,
.log-page .post-link:focus-visible .post-title { text-decoration-color: var(--site-yellow); }
.log-page .post-link:focus-visible { outline: 2px solid var(--site-ink); outline-offset: 6px; border-radius: 2px; }
@media (max-width: 767px) {
  .log-page .log-heading { min-height: 124px; padding-bottom: 28px; margin-bottom: 0; }
  .cluster-light .log-page h1.title { font-size: clamp(2.75rem, 10.5vw, 4rem); }
  .log-page .post-link { padding: 26px 0; }
  .log-page .post-title { font-size: 1.4rem; line-height: 1.25; }
  .log-page .post-date { margin-top: 12px; font-size: .72rem; }
}
@media (max-width: 359px) {
  .log-page .post-title { font-size: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .log-page .post-link,
  .log-page .post-title { transition: none; }
}
