.tournament-results {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-family: 'Arial', sans-serif;
    width: 60%;
    margin: auto;
    align-items: center;
    text-align: center;
    position: relative;
    margin-bottom: 20px;
}

.image-background-ketqua {
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #c33D3F;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: calc((100% - 150px));
  z-index: 0;
}

.logo-only {
    background-size: contain;
    width: 298px;
    height: 263px;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
}

.text-title-container {
      width: 40%;
    height: 185px;
    border: 1px solid var(--color-red1);
    border-radius: 30px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    margin: auto;
    border-top: 0px;
    margin-bottom: 200px;
}

.text-title-container .text-title {
      width: 50%;
    margin: auto;
    background-color: var(--color-red);
    padding: 10px 50px;
    border-radius: 10px;
    font-size: 48px;
    color: var(--color-white);
    font-weight: var(--font-weight-bold);
    /* position: absolute; */
    transform: translateY(140px);
    text-align: center;
    text-transform: uppercase;
}

.tournament-results .result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 1;
}

.tournament-results .result-item img {
  width: 80px;
  height: 86px;
}

.tournament-results .result-item .title {
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  color: var(--color-red1)
}

.tournament-results .result-item.index0 {
  height: 230px;
  border-bottom: 0;
}

.tournament-results .result-item.index0 .title {
  position: absolute;
  top: -45px;
  left: 280px;
}

.tournament-results .result-item.index0 img {
  width: 230px;
    height: 260px;
    position: absolute;
    left: 30px;
    top: -100px;
}

.tournament-results .result-item.index0 .team,
.tournament-results .result-item.index0 .country {
  color: white;
  display: block;
  position: absolute;
  margin-left: 264px;
  font-size: 48px;
}

.tournament-results .result-item.index0 .team {
  top: 40px;
}

.tournament-results .result-item .team,
.tournament-results .result-item .country {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--color-black)
}

.tournament-results li:nth-child(1) {
  background-color: #ffe8e8;
  font-weight: bold;
}

.tournament-results li:nth-child(2) {
  background-color: #f9f9f9;
}

.tournament-results li img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.tournament-results li strong {
  color: #b22222;
  min-width: 60px;
}

.tournament-results li span.team {
  font-weight: 600;
}

.tournament-results li span.country {
  font-size: 0.9em;
  color: #666;
}


@media (max-width: 1024px) {

  .text-title-container {
        width: 80%;
        height: 55px;
        margin-bottom: 100px;
    }

    .text-title-container .text-title {
        font-size: 15px;
        padding: 10px 20px;
        transform: translateY(33px);
    }

    .tournament-results .result-item.index0 img {
        height: 77px;
        width: 83px;
    }

  .logo-only {

    width: 70px;
    height: 62px;
   }

  .tournament-results .result-item.index0 {
    height: 46px;
  }

  .image-background-ketqua {

    height: 46px;
    width: calc(100% - 30px);
  }

  .tournament-results .result-item img {
    width: 27px;
    height: 29px;
  }

  .tournament-results .result-item .title {
    font-size: 12px;
  }

  .tournament-results {
    width: 80%;
  }

  .tournament-results .result-item .team, .tournament-results .result-item .country {
    font-size: 12px;
    margin-left: 0px;
  }

  .tournament-results .result-item.index0 .country {
    display: none;
  }
  .tournament-results .result-item.index0 .team {
    top: 3px;
    font-size: 15px;
    margin-left: 100px;
    width: 158px;
    display: inline-block;
    text-align: left;
  }

  .tournament-results .result-item.index0 .title {
    top: -22px;
    left: 116px;
  }

  .tournament-results .result-item.index0 img {
    top: -40px;
  }
}

