/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* BODY — paper look */
body{
  font-family: "Times New Roman", serif;
  background:#f4f1e8;
  color:#111;
  min-height:100vh;
  display:grid;
  grid-template-columns:260px 1fr;
  grid-template-rows:auto 1fr auto;
}

/* NAV — directory header */
.nav{
  grid-column:1 / -1;
  display:flex;
  align-items:center; /* vertically center logo and links */
  gap:30px;
  padding:14px 28px;
  border-bottom:2px solid #000;
  background:#e9e4d6;
  font-size:.9rem;
  letter-spacing:.5px;
}

.nav a{
  color:#000;
  text-decoration:none;
  border-bottom:1px dotted transparent;
}

.nav a:hover{
  border-bottom:1px dotted #000;
}

/* LOGO inside nav */
.site-logo{
  height:28px;
  margin-right:20px;
  image-rendering:crisp-edges;
}

/* ASIDE — index column */
aside{
  border-right:1px solid #000;
  padding:24px 18px;
  font-size:.85rem;
  line-height:1.5;
  background:#f8f5ec;
}

aside h2{
  font-size:.85rem;
  margin-bottom:10px;
  letter-spacing:.5px;
  text-transform:uppercase;
  border-bottom:1px solid #000;
  padding-bottom:4px;
}

aside ul{
  list-style:none;
  margin-bottom:22px;
}

aside li{
  margin-bottom:6px;
}

aside a{
  color:#000;
  text-decoration:none;
}

aside a:hover{
  text-decoration:underline;
}

.info{
  color:#666;
  font-size:.8em;
  line-height:1.6
}

/* MAIN — directory content */
main{
  padding:32px 40px;
  max-width:900px;
}

/* PAGE TITLE */
.title{
  font-size:1.8rem;
  font-weight:bold;
  margin-bottom:18px;
  letter-spacing:.5px;
}

/* ENTRY BLOCK — directory listing */
.entry{
  margin-bottom:36px;
  padding-bottom:18px;
  border-bottom:1px dotted #000;
}

/* ENTRY TITLE */
.entry-title{
  font-size:1.1rem;
  font-weight:bold;
  margin-bottom:4px;
}

/* META — small registry text */
.entry-meta{
  font-size:.75rem;
  color:#444;
  margin-bottom:12px;
  font-family:monospace;
}

/* ENTRY TEXT */
.entry-content p{
  margin-bottom:10px;
  font-size:.9rem;
}

/* LOG / NOTE BOX */
.entry-log{
  border-left:3px solid #000;
  padding:8px 12px;
  margin:12px 0;
  background:#ece8dc;
  font-size:.8rem;
  font-family:monospace;
}

/* CORRUPT BOX — warning stamp */
.corrupt-box{
  border:2px solid #a00;
  padding:10px 12px;
  margin:14px 0;
  background:#fff;
  color:#a00;
  font-weight:bold;
  font-size:.85rem;
}

/* FOOTER */
footer{
  grid-column:1 / -1;
  padding:10px 28px;
  border-top:2px solid #000;
  font-size:.75rem;
  background:#e9e4d6;
}

/* LINKS in content */
main a{
  color:#000;
  text-decoration:underline;
}

main a:hover{
  background:#000;
  color:#fff;
}