/* 云端札记 - 旅行摄影博客样式 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: Georgia, "Songti SC", "SimSun", serif;
  background: #fdfaf5;
  color: #3d3d3a;
  line-height: 1.85;
}
a { color: #c0571f; text-decoration: none; }
a:hover { text-decoration: underline; }

header {
  background: #2f2b26;
  color: #f5efe6;
  padding: 18px 0;
}
.header-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.site-title { font-size: 1.5em; font-weight: 700; letter-spacing: 2px; }
.site-title a { color: #f5efe6; }
.site-title a:hover { text-decoration: none; }
nav a { margin-left: 20px; color: #c9b89e; font-size: 0.95em; }

main { max-width: 720px; margin: 0 auto; padding: 36px 20px; }
.post { background: #fff; border: 1px solid #e8dfd2; border-left: 4px solid #c0571f; border-radius: 4px; padding: 20px 24px; margin-bottom: 18px; }
.post h2 { font-size: 1.2em; margin-bottom: 6px; }
.post h2 a { color: #2f2b26; }
.post .date { color: #a59a88; font-size: 0.85em; margin-bottom: 8px; }
.post p { color: #6b655c; font-size: 0.95em; }

article { background: #fff; border: 1px solid #e8dfd2; border-radius: 4px; padding: 28px 32px; }
article h1 { font-size: 1.6em; margin-bottom: 8px; color: #2f2b26; }
article .date { color: #a59a88; font-size: 0.85em; margin-bottom: 20px; }
article h2 { font-size: 1.25em; margin: 24px 0 10px; color: #3d3d3a; }
article p { margin-bottom: 14px; color: #55524b; }
article blockquote { border-left: 3px solid #c0571f; padding-left: 14px; color: #8a8274; font-style: italic; margin: 0 0 14px; }
.back { display: inline-block; margin-bottom: 20px; font-size: 0.9em; }

footer {
  max-width: 720px;
  margin: 40px auto 24px;
  padding: 0 20px;
  color: #b3a996;
  font-size: 0.85em;
  text-align: center;
}

@media (max-width: 480px) {
  .header-inner { flex-direction: column; gap: 8px; }
  nav a { margin-left: 0; margin-right: 18px; }
}
