.members {
  padding: 60px 20px;
  background: #ffffff; /* ダーク系（最近のVtuberサイト風） */
}

.section-title {
  text-align: center;
  color: #000000;
  font-size: 28px;
  margin-bottom: 40px;
}

/* 3列固定 */
.talent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 400px));
  gap: 30px;
  justify-content: center;
}

/* カード全体 */
.talent-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 画像枠 */
.talent-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 2px solid #334155;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.talent-image-wrapper:hover .hoverble {
  transform: scale(1.05);
  transition: 0.3s;
}

.talent-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.talent-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  z-index: 1;
}

/* 情報リンク */
.talent-info-link {
  width: 100%;
  text-decoration: none;
}

/* 名前・ジャンル枠 */
.talent-info {
  border: 2px solid #334155;
  border-radius: 50px;
  margin-top: 10px;
  padding: 12px;
  text-align: center;
  background: #9caeff;
  transition: all 0.2s ease;
}

/* ホバーで光る（それっぽさ） */
.talent-info:hover {
  border-color: #38bdf8;
  transform: translateY(-3px);
}

.talent-info .talent-name {
  color: #fff;
  font-size: 18px;
  margin: auto;
  margin-bottom: 5px;
}

.talent-info .talent-genre {
  color: #ffffff;
  font-size: 14px;
  margin: auto;
}

.talent-more {
  text-align: center;
  margin-top: 40px;
}

.talent-more-button {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #38bdf8;
  border-radius: 999px;
  color: #38bdf8;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* ホバーで反転（よくあるVtuber事務所UI） */
.talent-more-button:hover {
  background: #38bdf8;
  color: #ffffff;
  transform: translateY(-2px);
}