.doctor-publications {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
  padding: 46px 38px;
  border-bottom: 1px solid #e3e7ea;
  background: #f7f9f8;
}

.doctor-publications .doctor-section-heading {
  min-width: 0;
}

.doctor-publications .doctor-section-heading h2 {
  font-size: 27px;
  line-height: 1.35;
}

.doctor-publications-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.doctor-publication-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px 24px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid #e3e7ea;
  border-radius: 6px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.doctor-publication-item:hover {
  border-color: #c7d4cf;
  box-shadow: 0 12px 26px rgba(27, 37, 46, .07);
}

.doctor-publication-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  background: #38836d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.doctor-publication-main {
  min-width: 0;
}

.doctor-publication-title {
  margin: 0;
  color: #252b31;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.doctor-publication-subtitle {
  margin: 6px 0 0;
  color: #68717a;
  font-size: 14px;
  line-height: 1.6;
}

.doctor-publication-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  color: #7a838c;
  font-size: 13px;
  line-height: 1.7;
}

.doctor-publication-meta .doctor-publication-journal {
  color: #4f5a63;
  font-weight: 650;
}

.doctor-publication-pmid {
  display: inline-flex;
  align-items: center;
  padding: 1px 9px;
  border: 1px solid #38836d;
  border-radius: 999px;
  color: #2f7a63;
  background: #f0f7f4;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.7;
}

.doctor-publication-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border: 1px solid #3b3992;
  border-radius: 4px;
  color: #fff;
  background: #3b3992;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
  white-space: nowrap;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease;
}

.doctor-publication-link:hover {
  color: #fff;
  border-color: #29276f;
  background: #29276f;
}

@media (max-width: 1080px) {
  .doctor-publications {
    gap: 30px;
  }

  .doctor-publication-item {
    gap: 14px 18px;
  }
}

@media (max-width: 720px) {
  .doctor-publications {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 36px 18px;
  }

  .doctor-publications .doctor-section-heading h2 {
    font-size: 24px;
  }

  .doctor-publication-item {
    display: block;
    padding: 16px;
  }

  .doctor-publication-no {
    width: 26px;
    height: 26px;
    margin-bottom: 10px;
    font-size: 12px;
  }

  .doctor-publication-title {
    font-size: 15px;
    line-height: 1.6;
  }

  .doctor-publication-subtitle {
    font-size: 13px;
  }

  .doctor-publication-meta {
    font-size: 12px;
  }

  .doctor-publication-link {
    display: flex;
    width: 100%;
    margin-top: 14px;
  }
}

/*
 * 医生页中间内容区（专业方向 / 专业经历与介绍）使用与论文模块一致的浅色背景，
 * 使整页色块连贯；该文件仅在医生内页（show_yisheng.html）加载。
 */
.doctor-specialty,
.doctor-content-layout {
  background: #f7f9f8;
}

.doctor-content-layout {
  padding: 54px 38px;
}

@media (max-width: 720px) {
  .doctor-content-layout {
    padding: 40px 18px;
  }
}