/* =====================================================
   全站基础设置
===================================================== */
body {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.7;
  color: #1f1f1f;
  background-color: #faf9f7;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


/* =====================================================
   顶部导航栏
===================================================== */
.navbar {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e2dc;
  padding-top: 14px;
  padding-bottom: 14px;
}

.navbar-brand {
  font-size: 22px;
  font-weight: 400;
  color: #1f1f1f !important;
  letter-spacing: 0.2px;
}

.navbar-nav .nav-link {
  font-size: 18px;
  font-weight: 400;
  color: #444 !important;
  margin-left: 14px;
  margin-right: 14px;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #1d4e89 !important;
}


/* =====================================================
   页面主标题
===================================================== */
#home-title,
#research-title {
  text-align: center;
  font-size: 52px;
  color: #20364f;
  margin-top: 42px;
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.2;
}


/* =====================================================
   页面主体区域
===================================================== */
main.content {
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 80px;
  text-align: left;
}


/* =====================================================
   标题下横线
===================================================== */
hr {
  border: none;
  border-top: 1px solid #d9d5ce;
  max-width: 760px;
  margin: 0 auto 42px auto;
}


/* =====================================================
   首页照片
===================================================== */
#profile-photo {
  width: 100%;
  max-width: 440px;
  display: block;
  margin: 0;
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}


/* =====================================================
   首页正文（保持你当前效果，不动）
===================================================== */
#home-text {
  max-width: 720px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  margin-left: 60px;
}

#home-text p {
  font-size: 20px;
  font-weight: 400
  line-height: 1.7;
  color: #222;
  margin-bottom: 1em;
}

#home-text .intro {
  font-size: 28px;
  font-weight: 600;
  color: #20364f;
  margin-top: 0;
  margin-bottom: 0.8em;
}

/* =====================================================
   首页社交链接
===================================================== */
.social-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.social-links a {
  font-size: 20px;
  color: #4a72ff;
  text-decoration: none;
  border-bottom: none;
  font-weight: 400;
}

.social-links a:hover {
  color: #2447c6;
}

.social-links i {
  margin-right: 8px;
}

/* =====================================================
   全局段落
===================================================== */
p {
  margin-top: 0;
  margin-bottom: 1.1em;
  max-width: 760px;
}


/* =====================================================
   链接
===================================================== */
a {
  color: #1d4e89;
  text-decoration: none;
  border-bottom: 1px solid rgba(29, 78, 137, 0.35);
  transition: color 0.2s ease, border-color 0.2s ease;
}

a:hover,
a:focus {
  color: #14395f;
  border-bottom-color: rgba(20, 57, 95, 0.75);
}


/* =====================================================
   标题（统一版）
===================================================== */
h2,
h3 {
  color: #1f1f1f;
  font-weight: 400;
  line-height: 1.3;
}

h2 {
  font-size: 30px;
  color: #20364f;
  text-align: center;
  margin-top: 2.2em;
  margin-bottom: 0.9em;
}

h3 {
  font-size: 22px;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}


/* =====================================================
   两栏布局（首页）
===================================================== */
.columns {
  align-items: flex-start;
  gap: 88px;
}


/* =====================================================
   列表
===================================================== */
ul {
  padding-left: 1.25em;
  margin-top: 0.5em;
  margin-bottom: 1.2em;
  max-width: 760px;
}

li {
  margin-bottom: 0.55em;
}


/* =====================================================
   Research 页面（桌面版）
===================================================== */
.research-item {
  max-width: 100%;
  margin: 0 auto 2.2em auto;
  padding-top: 0.2em;
}

.paper-title {
  font-size: 25px;
  font-weight: 400;
  color: #1f1f1f;
  line-height: 1.35;
  margin-bottom: 0.45em;
  text-align: left;
}

.paper-desc {
  font-size: 15px;
  font-weight: 100;
  line-height: 1.75;
  color: #2a2a2a;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 0;
}


/* =====================================================
   Useful Resources 页面
===================================================== */
.resource-list li,
.useful-resources li {
  margin-bottom: 0.75em;
}


/* =====================================================
   移动设备
===================================================== */
@media (max-width: 991px) {

  /* Home：保持你当前移动端逻辑 */
  .columns {
    display: block !important;
  }

  .columns > .column {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  #profile-photo {
    display: block;
    max-width: 320px;
    margin: 0 auto 24px auto;
  }

  #home-text {
    margin-left: 0 !important;
    max-width: 100%;
    text-align: justify;
    text-justify: inter-word;
    padding: 0 10px;
  }

  #home-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  #home-text .intro {
    font-size: 22px;
    text-align: center;
  }

  body {
    font-size: 16px;
  }

  /* 页面整体 */
  main.content {
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 56px;
  }

  #home-title,
  #research-title {
    font-size: 38px;
    margin-top: 30px;
    margin-bottom: 14px;
  }

  hr {
    max-width: 88%;
    margin-bottom: 32px;
  }

  /* Research：移动端优化 */
  h2 {
    font-size: 24px;
    margin-top: 2em;
    margin-bottom: 1em;
    text-align: center;
  }

  .research-item {
    max-width: 100%;
    margin: 0 auto 1.9em auto;
    padding: 0 4px;
  }

  .paper-title {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 0.5em;
    text-align: left;
  }

  .paper-desc {
    font-size: 15px;
    line-height: 1.65;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
  }
}