/* ABOUT PAGE ONLY*/

.page-about{
  background: #000;
  color: #e8e8e8;
}

/* 让 nav/footer 仍然用你 global.css 的结构，但颜色适配深色背景 */
.page-about #nav{
  background: transparent; /* 保留 sticky，但不盖白底 */
}

.page-about #nav a{
  color: #bdbdbd;
}
.page-about #nav a:hover{
  color: #ffffff;
}

.page-about footer{
  color: #8e8e8e;
}

/* main layout */
.about{
  /* nav 是 sticky，所以 main 自己留点呼吸 */
  padding: 70px 32px 80px;
}

/* 居中 + 两列布局 */
.aboutGrid{
  max-width: 1100px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 320px 1fr; /* 左窄右宽 */
  gap: 80px;
  align-items: start;
}

/* left column */
.aboutLeft{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* 关键：左对齐 */
}

.aboutPortrait{
  width: 100%;
  max-width: 260px;
  margin: 0;              
}

.aboutPortrait img{
  width: 100%;
  height: auto;
  display: block;
  /* filter: grayscale(100%);
  opacity: 0.92; */
}


.aboutMeta{
  margin-top: 28px;
  width: 100%;
  max-width: 260px;       /* 关键：和 portrait 同宽 */
  font-family: "Noto Sans Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  color: #bdbdbd;
}

.aboutRole{
  margin-bottom: 14px;
}

.aboutLinks a{
  color: #bdbdbd;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.aboutLinks a:hover{
  color: #ffffff;
}

/* right column text */
.aboutRight{
  max-width: 68ch; /* 控制行宽，更像参考图阅读感 */
}

.aboutText{
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.1px;
  color: #e8e8e8;
}

.aboutText p{
  margin-bottom: 18px;
}

/* optional chinese block slightly dimmer */
.aboutText.zh{
  margin-top: 34px;
  color: #cfcfcf;
  opacity: 0.9;
}

/* responsive: stack on smaller screens */
@media (max-width: 900px){
  .about{
    padding: 42px 20px 70px;
  }

  .aboutGrid{
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .aboutPortrait{
    max-width: 220px;
    margin: 0; /* 左对齐更像作品集 */
  }

  .aboutRight{
    max-width: 70ch;
  }
}