.founder-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px;
  font-family: var(--font-family);
  color: #333;
  background: #fff;
  overflow: hidden;
}

/* 头部标题改用浮动，稳定左右布局，不会自动换行 */
.founder-heading {
  margin-bottom: 40px;
  overflow: hidden;
}
/* 左侧文字占大部分宽度 */
.founder-heading-text {
  width: calc(100% - 200px);
  float: left;
}
.founder-heading h2 {
  font-size: 45px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.sub-heading {
  font-size: 22px;
  color: #313131;
  margin: 0;
}

/* 右侧头像容器固定宽度，右浮动 */
.founder-avatar-wrap {
  width: 180px;
  float: right;
  text-align: center;
}
/* 强制限制图片尺寸，原图再大也只会显示160px圆形 */
.avatar-preview-box {
  width: 160px !important;
  height: 160px !important;
  max-width: 100% !important;
  max-height: 100% !important;
  border-radius: 50%;
  border: 1px solid #eee;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  background-color: #f5f5f5;
}

/* 大内容区块：区块之间分隔距离 */
.content-block {
  margin-bottom: 36px;
}

/* 正文段落基础样式 */
.content-block p {
  font-size: 16px;
  line-height: 1.75;
  margin: 14px 0;
  padding: 0;
}

/* 标准列表样式 ul + li */
.item-list {
  list-style: disc;
  padding-left: 22px;
  margin: 10px 0 0 0;
}
.item-list li {
  font-size: 16px;
  line-height: 1.7;
  margin: 8px 0;
  color: #333;
}

/* 移动端768px以下取消浮动，上下居中排列 */
@media (max-width: 768px) {
  .founder-container {
    padding: 35px 16px;
  }
  .founder-heading h2 {
    font-size: 26px;
  }
  /* 移动端清除浮动，垂直排列 */
  .founder-heading-text {
    width: 100%;
    float: none;
    text-align: center;
    margin-bottom: 24px;
  }
  .founder-avatar-wrap {
    width: 100%;
    float: none;
  }
  .avatar-preview-box {
    width: 140px !important;
    height: 140px !important;
  }
  .content-block p,
  .item-list li {
    font-size: 15px;
  }
  .content-block {
    margin-bottom: 28px;
  }
}