.right-content p {
  margin: 10px 0;
  line-height: 1.5em;
  text-indent: 2em;
}
.leader-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 24px;
  margin: 30px 0 0;
  padding: 0;
}

.leader-card {
  min-width: 0;
  text-align: center;
}

.leader-card img {
  display: block;
  width: 150px;
  height: 150px;
  margin: 0 auto 12px;
  object-fit: cover;
}

.leader-card h3 {
  margin: 0;
  line-height: 30px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.leader-card p {
  margin: 4px 0 0;
  line-height: 1.6;
  text-indent: 0;
}

@media (max-width: 900px) {
  .leader-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .leader-list {
    grid-template-columns: 1fr;
  }
}
