.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(to bottom, #000, #1e1e2f);
}
.page-header .page-title {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 3rem;
  color: #f2d06b;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.page-header .page-sub {
  color: #ccc;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.cast-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.cast-grid.single .cast-card {
  max-width: 400px;
  width: 100%;
}
.cast-grid.judges .cast-card {
  width: 100%;
}
@media (min-width: 768px) {
  .cast-grid.judges .cast-card {
    width: calc(50% - 20px);
  }
}

.cast-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.cast-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #f2d06b;
}
.cast-card .cast-image {
  width: 100%;
  aspect-ratio: 3/4;
  background: #f0f0f0;
  margin: 0;
}
.cast-card .cast-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.cast-card .cast-info {
  padding: 25px;
  text-align: center;
}
.cast-card .cast-info .cast-role {
  color: #9e8234;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.cast-card .cast-info .cast-name {
  color: #333333;
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}
.cast-card .cast-info .cast-profile {
  color: #333333;
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: left;
}

.bg-dark .cast-card {
  background: #2a2a3c;
  border-color: #444;
}
.bg-dark .cast-card .cast-name,
.bg-dark .cast-card .cast-profile {
  color: #ffffff;
}/*# sourceMappingURL=uniq.css.map */