
.best {
}
.best__wrap {
    display: grid;
  align-items: stretch;
  grid-template-columns: 3fr 1fr;
  grid-column-gap: 24px;
}
.best__card {
      align-items: stretch;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background-color: var(--color-white);
    height: 540px;
    box-shadow: 0 0 8px 0 #00000025;
    border-radius: 8px;
}
.best__player {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
}

.best__player-img {
  height:calc(100% + 100px);
  object-fit: contain;
  position: absolute;
  object-position: bottom;
  bottom: 0;
  left: 0;
}
.best__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.best__number {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1;
}
.best__name {
  font-size: 32px;
  font-weight: 700;
margin-bottom: 8px;
line-height: 1;
}
.best__position {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.best__text {
  color: var(--color-gray);
  margin-bottom: 16px;
}
.best__btn-wrap {
  margin-top: auto;
}






 
.best__stats {
  margin-bottom: 32px;
  
}

.best__stat {
  padding: 20px;
  background-color: var(--color-white);
  box-shadow: 0 0 8px 0 #00000025;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 8px;
}

.best__stat-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.best__stat-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-gray);
}
.best__stat-value {
  text-align: end;
}
.best__stat-item:last-child {
  border-bottom: none; 
}

.best__stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
}

.best__stat-value {
  font-size: 16px;
  color: var(--color-gray);
}


@media (max-width: 1220px) {
  .best__card {
    height: auto;
  }
  .best__wrap {
        grid-template-columns: 2fr 1fr;
        padding-top: 0;
  }
  .best__player-img {
    height: 100%;
  }
}

@media (max-width: 992px) {
  .best__card {
    grid-template-columns: 1fr 1fr;
  }
  .best__content {
    padding: 16px 16px 16px 24px;
  }
  .best__number {
    font-size: 32px;
  }
  .best__name {
    font-size: 24px;
  }
  .best__text {
    font-size: 14px;
  }
  .best__stat-item span{
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .best__card {
    display: flex;
    flex-direction: column;
  }
  .best__player {
    min-height: 320px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 16px 16px 0 ;
    background: url(/images/bg.webp) no-repeat center center/cover;
    position: relative;
  }
  .best__player::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #d4d4d4a8;
  }
  .best__player-img {
    width: 100%;
    object-position: bottom;
    position: relative;
    z-index: 2;
  }
  .best__wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .best__content {
    align-items: center;
  }
  .best__text {
    text-align: center;
  }
  .best__stat {
    display: none;
  }
}


