.supported-by {
  padding: 20px;
  background-color: #f7f7f7;
  font-family: sans-serif;
}

.supported-by h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.supported-by .card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.supported-by .person-card {
  display: flex;
  width: calc(33.333% - 13.34px);
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  min-height: 100px;
}

.supported-by .person-card.no-image {
  align-items: center;
  padding: 0 15px;
}

.supported-by .person-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.supported-by .person-info .name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}

.supported-by .person-info .romaji {
  font-size: 13px;
  color: #666;
  margin-bottom: 10px;
}

.supported-by .person-info a {
  font-size: 14px;
  color: #0077cc;
  text-decoration: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .supported-by .person-card {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .supported-by .person-card.no-image {
    padding: 15px;
  }

  .supported-by .person-info {
    padding: 10px 15px 20px;
  }
}