.career-page {
  margin-top: 10px;
}

.career-intro-box,
.career-table-box {
  background: #fff;
  border: 1px solid #e4e8ee;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 28px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.career-lead {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.career-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 10px;
  padding: 0;
  list-style: none;
}

.career-summary li {
  background: #f7fbff;
  border: 1px solid #d7e5f5;
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}

.career-summary .year {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #666;
}

.career-summary strong {
  display: block;
  font-size: 26px;
  line-height: 1.4;
  color: #1b4f8a;
  font-weight: 700;
}

.career-summary small {
  display: block;
  margin-top: 6px;
  color: #666;
  line-height: 1.7;
  font-size: 13px;
}

.career-caption,
.career-scroll-note,
.career-note {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

.career-scroll-note {
  margin-bottom: 12px;
}

.career-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.careerTable {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: #fff;
}

.careerTable caption {
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
}

.careerTable th,
.careerTable td {
  border: 1px solid #d9e0e7;
  padding: 12px 10px;
  vertical-align: middle;
}

.careerTable thead th {
  background: #1b4f8a;
  color: #fff;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
}

.careerTable tbody th.group {
  background: #eef5ff;
  color: #1b4f8a;
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
  width: 110px;
}

.careerTable tbody td.school-name {
  font-weight: 500;
  line-height: 1.7;
}

.careerTable tbody td.num {
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
}

.careerTable tbody tr:nth-child(even) td {
  background: #fcfdff;
}

@media (max-width: 768px) {
  .career-intro-box,
  .career-table-box {
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 20px;
  }

  .career-lead {
    font-size: 15px;
    line-height: 1.9;
  }

  .career-summary {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 18px;
  }

  .career-summary strong {
    font-size: 22px;
  }

  .career-caption,
  .career-scroll-note,
  .career-note {
    font-size: 13px;
  }
}