:root {
  --wine: #6b1220;
  --wine-dark: #4b1417;
  --cream: #f8ead4;
  --cream-light: #fdfaf6;
  --brown: #554626;
  --ink: #2a1a14;
  --link: #990000;
  --link-hover: #cc0000;
}

* { box-sizing: border-box; }

html { background: var(--brown); }

body {
  margin: 0;
  background: var(--cream-light);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Georgia, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

a { color: var(--link); }
a:hover { color: var(--link-hover); }

.site-header {
  background: var(--wine-dark);
  color: var(--cream);
  padding: 1.25rem 0;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-header .brand { display: inline-flex; }
.site-header .tagline {
  margin: 0;
  font-style: italic;
  color: var(--cream);
  opacity: 0.85;
}

.site-nav {
  background: var(--wine);
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
}
.site-nav a {
  display: block;
  padding: 0.4rem 0.6rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 0.92rem;
  border-radius: 3px;
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--wine-dark);
  color: #fff;
}

main.content {
  padding: 2rem 1.25rem 3rem;
}

article h1 {
  color: var(--wine-dark);
  margin-top: 0;
  border-bottom: 2px solid var(--cream);
  padding-bottom: 0.5rem;
}

article img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.post-date {
  color: #7a6a5a;
  font-size: 0.9rem;
  margin-top: -0.5rem;
}

.breadcrumb a {
  text-decoration: none;
  font-size: 0.9rem;
}

.review-list, .link-list {
  list-style: none;
  padding: 0;
}
.review-list li, .link-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid #ece2d3;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.review-list a, .link-list a {
  font-weight: 600;
  text-decoration: none;
}
.review-list a:hover, .link-list a:hover {
  text-decoration: underline;
}
.review-list .post-date {
  margin: 0;
  white-space: nowrap;
}

.home-links { margin-top: 1.5rem; }

.accent-lg {
  color: var(--link);
  font-size: 1.15em;
  font-weight: bold;
}
.accent { color: var(--link); }

.jumpLink { text-decoration: none; font-weight: 600; }
.jumpLink:hover { text-decoration: underline; }

blockquote {
  margin: 0;
  padding-left: 0;
  border-left: none;
}

.site-footer {
  background: var(--wine-dark);
  color: var(--cream);
  padding: 1.25rem 0;
  font-size: 0.85rem;
}
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: #fff; }

@media (max-width: 600px) {
  .site-header .wrap { flex-direction: column; align-items: flex-start; }
}
