.nominees-note {
  text-align: center;
  color: #BBBBBB;
  font-size: 15px;
  letter-spacing: 1px;
  margin-top: -24px;
}

.category-section__count {
  font-size: 14px;
  font-weight: 700;
  color: #888888;
  letter-spacing: 2px;
}

.nominee-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 24px;
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
}

.nominee {
  background: #111;
  border: 1px solid #333333;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.25s;
}
.nominee:hover {
  border-color: #DFA558;
}
.nominee__program {
  font-family: "jf-jinxuan", "Noto Sans TC", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.nominee__team {
  font-size: 15px;
  color: #DFA558;
  letter-spacing: 1px;
  line-height: 1.7;
}

.nominee__studio {
  font-size: 14px;
  color: #888888;
  letter-spacing: 0.5px;
  line-height: 1.6;
}
.nominee-list--host .nominee__studio {
  order: 3;
}

.nominee-list--host .nominee__program {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #888888;
  order: 2;
}
.nominee-list--host .nominee__team {
  font-family: "jf-jinxuan", "Noto Sans TC", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #FFFFFF;
  order: 1;
}

.nominee-special {
  position: relative;
  max-width: 600px;
  margin-inline: auto;
  width: 100%;
  background: #111;
  border: 1px solid #333333;
  border-radius: 24px;
  padding: 48px 40px 40px;
  text-align: center;
}
.nominee-special__label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) skewX(-10deg);
  display: inline-flex;
  border: 1px solid #DFA558;
  color: #DFA558;
  font-size: 15px;
  font-weight: 700;
  padding: 4px 20px;
  letter-spacing: 3px;
  background: #111;
}
.nominee-special__name {
  font-family: "jf-jinxuan", "Noto Sans TC", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: #fbdc9d;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .nominee-list {
    grid-template-columns: 1fr;
    row-gap: 16px;
  }
  .nominee {
    padding: 20px 22px;
  }
  .nominee__program {
    font-size: 20px;
  }
  .nominees-note {
    margin-top: -12px;
    font-size: 14px;
  }
  .nominee-special {
    padding: 40px 24px 32px;
  }
}
