#awardList, #awardList2 {
  display: flex;
  gap: 5rem;
}
#awardList > ul, #awardList2 > ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#awardList > div, #awardList2 > div {
  flex: 4;
}
#awardList > ul button,
#awardList2 > ul button {
  text-align: left;
  border-radius: 4px !important;
  width: 100%;
  background-color: var(--color-grey);
  color: var(--color-dark-grey);
  padding: 14px 10px;
}
#awardList > ul button.active,
#awardList > ul button:hover,
#awardList2 > ul button.active,
#awardList2 > ul button:hover {
  background-color: var(--color-primary-green);
  color: #fff;
}
.award-item p {
  color: var(--color-dark-grey);
}

@media only screen and (max-width: 876px) {
  #awardList, #awardList2 {
    flex-direction: column;
  }
  #awardList > ul, #awardList2 > ul {
    flex-direction: row;
  }
  #awardList > ul > li,
  #awardList2 > ul > li {
    flex: 1;
  }
  #awardList > ul button,
   #awardList2 > ul button {
    text-align: center;
  }
  .award-item > figure {
    margin-bottom: 1rem !important;
  }
}
@media only screen and (max-width: 603px) {
  #awardList > ul,
  #awardList2 > ul {
    flex-wrap: nowrap;
    overflow: auto;
  }
  #awardList > ul button,
  #awardList2 > ul button {
    padding: 6px 12px;
    font-size: 18px;
  }
  #awardList,
  #awardList2 {
    gap: 1rem;
  }
  .award-tab-content {
    flex-direction: column;
    gap: 1rem;
  }
}
