/* Yearbook theme — warm, clean family memory book */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
  color: #2c2c2c;
  background: #faf8f5;
  max-width: 720px;
  margin: 0 auto;
  padding: 1rem;
}

.site-header {
  text-align: center;
  padding: 2rem 0 1rem;
  border-bottom: 2px solid #e8e0d4;
  margin-bottom: 2rem;
}

.site-header a {
  font-size: 1.5rem;
  color: #5b4636;
  text-decoration: none;
}

h1 {
  font-size: 1.8rem;
  color: #5b4636;
  margin-bottom: 1.5rem;
  text-align: center;
}

h2 {
  font-size: 1.3rem;
  color: #5b4636;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.3rem;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 1rem 0 0.25rem;
  display: block;
}

em {
  display: block;
  font-size: 0.9rem;
  color: #6b6b6b;
  margin-bottom: 1.5rem;
}

/* Entry grid on home page */
.entry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.entry-card {
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.entry-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.entry-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
}

.entry-card h2 {
  padding: 0.75rem;
  font-size: 1rem;
  text-align: center;
  margin: 0;
}

/* Entry content */
.entry-content {
  margin-top: 1rem;
}

/* Navigation */
.entry-nav {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  margin-top: 2rem;
  border-top: 1px solid #e8e0d4;
  font-size: 0.9rem;
}

.entry-nav a {
  color: #5b4636;
}

footer {
  text-align: center;
  padding: 2rem 0;
  color: #999;
  font-size: 0.85rem;
  border-top: 1px solid #e8e0d4;
  margin-top: 2rem;
}
