/* Performance list page */

.sec_performance_list_mv .performance_list_page_tit {
  text-align: center;
}

.performance_list_kicker {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}

.performance_list_page_tit h1 {
  margin: 8px 0 0;
  color: #111;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.performance_list_page_tit img {
  margin-top: 20px;
}

.performance_list_intro {
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}

.performance_list_intro p {
  margin: 0;
  line-height: 1.9;
}

.performance_list_grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.performance_list_card {
  background: #fff;
  border: 1px solid #e5e5e5;
  transition: transform .2s ease, box-shadow .2s ease;
}

.performance_list_card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.performance_list_card > a {
  display: block;
  height: 100%;
  color: inherit;
}

.performance_list_image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f5f5f5;
}

.performance_list_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.performance_list_card:hover .performance_list_image img {
  transform: scale(1.02);
}

.performance_list_body {
  padding: 20px;
}

.performance_list_body time {
  display: block;
  margin-bottom: 8px;
  color: #777;
  font-size: 13px;
}

.performance_list_body h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.performance_list_more {
  display: inline-block;
  color: #EF7F42;
  font-size: 14px;
  font-weight: 700;
}

.performance_list_empty {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .performance_list_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 800px) {
  .performance_list_kicker {
    font-size: 28px;
  }

  .performance_list_page_tit h1 {
    font-size: 18px;
  }

  .performance_list_intro {
    margin-bottom: 28px;
    text-align: left;
  }

  .performance_list_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .performance_list_body {
    padding: 18px;
  }

  .performance_list_body h2 {
    font-size: 17px;
  }
}
