body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Serif SC', '宋体', serif;
  background: #f9f5f0;
  color: #3b2f2f;
}

.container {
  max-width: 800px;
  margin: 60px auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(100, 75, 50, 0.1);
  border: 1px solid #e0ddd8;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #bda27a;
}

h1 {
  font-size: 28px;
  margin: 10px 0 5px;
  color: #4e4039;
}

.subtitle {
  font-size: 16px;
  color: #7a6b5c;
  margin-bottom: 20px;
}

.about {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  background-color: #fff9f0;
  padding: 16px;
  border-left: 4px solid #e6c8a0;
  border-radius: 6px;
}

.articles h2 {
  font-size: 20px;
  margin: 40px 0 10px;
  border-bottom: 2px solid #e0c8b0;
  display: inline-block;
  padding-bottom: 4px;
}

.article-list {
  list-style: none;
  padding-left: 0;
}

.article-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: #fcfbf9;
  padding: 12px 16px;
  margin-bottom: 10px;
  border-left: 4px solid #dec5a3;
  border-radius: 6px;
  transition: background 0.2s ease;
  flex-wrap: wrap;
}

.article-item:hover {
  background: #f1ece6;
}

.article-date {
  flex: 0 0 80px;
  color: #8b7b6b;
  font-size: 15px;
  font-family: 'Georgia', 'Noto Serif SC', serif;
  letter-spacing: 0.5px;
  padding-top: 2px;
}


.article-title {
  flex: 1;
}

.article-title a {
  text-decoration: none;
  color: #6e4f3a;
  font-weight: bold;
  font-size: 16px;
}

.article-title a:hover {
  text-decoration: underline;
}

.contact {
  margin-top: 50px;
  font-size: 15px;
  color: #555;
  text-align: center;
}

.contact img {
  margin: 10px;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0,0,0,0.08);
}

@media (max-width: 600px) {
  .container {
    margin: 20px;
    padding: 20px;
  }

  h1 {
    font-size: 24px;
  }

  .about {
    font-size: 15px;
  }

   .article-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-date {
    margin-bottom: 4px;
  }
}
