body {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
}

.container { max-width: 880px; margin: 0 auto; padding: 0 20px; }

.header {
  border-bottom: 1px solid rgba(0,0,0,.1);
  background: #fff;
}
.bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
}
.brand {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.2rem; font-weight: bold; text-decoration: none; color: #000;
}
.nav { font-family: Arial, Helvetica, sans-serif; display: flex; gap: 20px; }
.nav-link { text-decoration: none; color: rgba(0,0,0,.6); }
.nav-link:hover, .nav-link.active { color: #000; }

.intro { text-align: center; padding: 50px 0; }
.intro h1 { font-size: 2.5rem; margin-bottom: 8px; }
.lede { color: rgba(0,0,0,.7); margin-bottom: 20px; }
.hero { max-width: 100%; height: auto; border: 1px solid rgba(0,0,0,.1); }

.footer { border-top: 1px solid rgba(0,0,0,.1); text-align: center; padding: 20px; color: rgba(0,0,0,.6); }

/* Gallery */
.gallery h1 { margin: 30px 0; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
figure { margin: 0; }
figure img { width: 100%; display: block; border: 1px solid rgba(0,0,0,.1); }
figcaption { font-size: 0.9rem; color: rgba(0,0,0,.7); margin-top: 6px; }

/* Global link style: black, underline on hover */
a { color: #000; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Posts page */
.posts-list h1 { margin: 28px 0 12px; }

.list {
  list-style: none;          /* remove bullets */
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;                 /* space between items */
}

.item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.12);
}

.item-title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
}

.item-desc {
  margin: 4px 0 2px;
  color: rgba(0,0,0,.7);
}

.item-date {
  display: inline-block;
  margin-top: 2px;
  font-size: .95rem;
  color: rgba(0,0,0,.6);
}
