/* Talent Performance Section Styles */
.performance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  margin-top: 40px;
}

.performance-item h4 {
  color: #C9A961; /* ゴールド色 */
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
}

.performance-item h4::before {
  content: "●";
  margin-right: 3px;
}

.performance-item p {
  line-height: 2;
  margin: 0;
  padding-left: 20px;
}

/* 舞台は横幅いっぱいに */
.performance-item.wide {
  grid-column: span 2;
}

@media screen and (max-width: 768px) {
  .performance-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .performance-item.wide {
    grid-column: span 1;
  }

  .performance-item p {
    padding-left: 15px;
  }
}