/* ========== 通用卡片 ========== */
.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--card-radius);
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* ========== 左侧个人卡片 ========== */
.profile-card {
  background: #f7f7fa;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 90px;
  height: max-content;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 16px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ========== 中间内容区域 ========== */
.content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 0;
  min-height: 800px;
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
}

.poem-list {
  padding: 32px 40px 0;
  flex: 1;
}

.poem-footer {
  width: 100%;
  text-align: center;
  padding: 40px 0;
  margin-top: 50px;
}
