.results {
  margin-top: 140px;
}

.results-btn-more {
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 100px;
}

.results-head-container {
  padding-top: 50px;
  padding-bottom: 100px;
}

.results-head-container .h2{
  color: white;
}

.results-head-container .results-head {
  color: var(--white1);
}

/* Last/next game results container */
.results-box,
.next_results-game_results {
  background-color: var(--grey3);
  padding: 30px 25px;
  display: flex;
  justify-content: center;
}

/* Team information */
.results-team_intro {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* First team text */
.results-first_team p {
  text-align: right;
  color: var(--grey1);
}

/* Next/Last game section titles */
.results-box h3,
.next_results-game_results h3 {
  color: var(--white1);
}

/* Team logos in next/last game */
.results-team_intro img {
  height: 80px;
  max-width: 80px;
  width: auto;
}

/* Next/Last game containers */
.results_container,
.next_game_container {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Game result section */
.results-game_result {
  margin: 0px 40px;
  display: flex;
}

/* Score separator */
.results-score_separator {
  margin: 0px 7px;
}

/* Game result text */
.results-game_result p {
  color: var(--grey1);
}

/* Winning team score */
.results-game_result p.results-winning_score {
  color: var(--white1);
}

/* Competition filter container */
.results-individual_filters {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Tournament + team filter */
.results-individual_filters > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Tournament + team filter title */
.results-individual_filters .caption2 {
  color: var(--grey1);
}

/* Filters */
.results-filter_select {
  color: white;
  background-color: inherit;
  border: none;
  border-bottom: 1px solid var(--grey2);
  padding: 10px 0px;
  cursor: pointer;
}

/* Tournament filter */
.results-tournament_select {
  width: 120px;
}

/* Team filter */
.results-team_select {
  width: 90px;
}

.results-box-full {
  margin-top: 30px;
}

.results-box-lower {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 16px 30px;
  background-color: var(--grey2);
  color: var(--grey1);
}

.results-results_team_info .caption5 {
  color: var(--grey1);
}

@media screen and (max-width: 1150px) {
  .results {
    margin-top: 55px;
  }
}

@media screen and (max-width: 950px) {
  .results-head-container {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
  }

  .results-head-container .results-head {
    /* H3 */
    font-size: 24px;
    line-height: 27px;
    font-family: "Barlow";
    font-weight: 600;
  }

  .results-individual_filters {
    margin-top: 20px;
  }

  .results-individual_filters {
    gap: 25px;
    margin-bottom: 5px;
    width: 100%;
  }

  .results-individual_filters div {
    flex-direction: column;
    row-gap: 0;
    width: 100%;
    max-width: 142px;
  }

  .results-individual_filters div p {
    margin-left: 0;
    margin-right: auto;

    /* Caption4 */
    font-size: 12px;
    line-height: 15px;
    font-family: "Barlow";
    font-weight: 400;
  }

  .results-team_intro {
    display: flex;
    flex-direction: column;
    width: fit-content;
    text-align: center;
    gap: 10px;
    margin-left: auto;
    margin-right: 0;
  }

  .results-team_intro:first-child {
    display: flex;
    flex-direction: column-reverse;
    margin-left: 0;
    margin-right: auto;
  }

  .results-team_intro .caption5 {
    text-align: center;

    /* Caption6 */
    font-size: 12px;
    line-height: 15px;
    font-family: "Barlow";
    font-weight: 400;
  }

  .results-team_intro .h3 {
    /* h8 */
    font-size: 14px;
    line-height: 17px;
    font-family: "Barlow";
    font-weight: 600;
    margin-bottom: 2px;
  }

  .results-team_intro img {
    width: 100%;
    max-width: 40px;
    height: auto;
  }

  .results-box {
    padding: 20px 25px;
  }

  .results-game_result p {
    /* H3 */
    font-size: 24px;
    line-height: 27px;
    font-family: "Barlow";
    font-weight: 600;

    margin-top: auto;
    margin-bottom: auto;
  }

  .results-box-lower {
    padding: 13px 15px;
    gap: 10px;
  }

  .results-box-lower p {
    /* Caption4 */
    font-size: 12px;
    line-height: 15px;
    font-family: "Barlow";
    font-weight: 400;
  }

  .results-box-full {
    margin-top: 15px;
  }

  .results-btn-more {
    padding-top: 14px;
    padding-bottom: 14px;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .results-btn-more a {
    padding: 14px 20px;

    /* btn2 */
    font-size: 14px;
    line-height: 17px;
    font-family: "Barlow";
    font-weight: 600;
  }
}

@media screen and (max-width: 479px) {

  .results-head-container {
    padding-bottom: 30px;
  }
}