:root {
  --bg: #fdf6f0;
  --primary: #5a3e36;
  --accent: #c97b63;
  --card-bg: #fff;
  --text: #333;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

header {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

header h1 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--primary);
}

nav {
  margin-top: 10px;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 14px;
}

nav a:hover {
  color: var(--accent);
}

.breadcrumb {
  margin: 15px auto;
  max-width: 800px;
  font-size: 13px;
  color: #666;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
}

.meta {
  color: #888;
  margin-bottom: 10px;
  font-size: 13px;
}

img {
  width: 100%;
  max-height: 420px;
  border-radius: 12px;
  margin: 15px 0;
}

ul,
ol {
  padding-left: 20px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
  font-size: 14px;
}

.author-box {
  margin-top: 40px;
  padding: 20px;
  background: #fafafa;
  border-radius: 12px;
  font-size: 14px;
}

.related {
  margin-top: 30px;
}

.related a {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
}


footer {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 30px 15px;
  margin-top: 40px;
  font-size: 13px;
}

footer a {
  color: #f5d6cc;
  margin: 0 8px;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media(max-width:600px) {
  header h1 {
    font-size: 22px;
  }

  nav a {
    margin: 0 6px;
    font-size: 13px;
  }
}