/* =========================
   Global Reset & Base
========================= */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #f2f2f2;                 /* 页面外背景：浅灰 */
  font-family: -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Helvetica, Arial,
               "PingFang SC", "Noto Sans CJK SC",
               "Microsoft YaHei", sans-serif;
  color: #111;
  line-height: 1.7;
  font-size: 120%; 
}

/* =========================
   Top Blog Header (Avatar)
========================= */
.blog-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  background: #ffffff;
  margin-bottom: 40px;
}

.avatar {
  width: 48px;
  height: 48px;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.blog-name h2 {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 600;
}

/* =========================
   Main Content Container
========================= */
.container {
  background: #ffffff;                 /* 内容背景：白色 */
  margin: 24px auto;
  padding: 24px 20px 40px;
  
}

/* =========================
   Responsive Width Rules
========================= */

/* 小尺寸设备：全宽 */
.container {
  width: 100%;
}

/* ≥ 8 寸设备（平板 / 小笔记本） */
@media (min-width: 768px) {
  .container {
    width: 70%;
   
  }
}

/* ≥ 11 寸设备（标准笔记本及以上） */
@media (min-width: 1024px) {
  .container {
    width: 50%;
  }
}

/* =========================
   Article Header
========================= */
.container > header {
  text-align: center;
  margin-bottom: 32px;
}

.cover-image {
  width: 100%;
  height: auto;
  
  margin-bottom: 20px;
}

.container > header h1 {
  font-size: 1.8rem;
  margin: 0;
  font-weight: 700;
}

/* =========================
   Article Content
========================= */
main section {
  margin-bottom: 48px;
}

main h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-weight: 600;
}

main p {
  margin: 0 0 16px;
}

/* =========================
   Images in Article
========================= */
.photo {
  width: 100%;
  height: auto;
  
  margin-top: 16px;
}

.caption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.caption .credit {
  
  margin-top: 4px;
  
  color: #999;
}

/* =========================
   Footer
========================= */
footer {
  margin-top: 40px;
  text-align: center;
  font-size: 1.2rem;
  color: #666;
}
