.match-best-players {
  margin: 0 0 20px;
}
.match-best-players__potm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 0 16px;
  margin: 0 0 16px;
  border-bottom: 1px solid #ececec;
  text-align: center;
}
.match-best-players__potm-caption {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--primary);
}
.match-best-players__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.match-best-players__column {
  min-width: 0;
}
.match-best-players__column-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.match-best-players__team-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.match-best-players__team-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.match-best-players__items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.match-best-players__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px;
  border-radius: 10px;
  background: var(--grey-light);
}
.match-best-players__item--featured {
  flex-direction: column;
  gap: 6px;
  background: transparent;
  padding: 0;
}
.match-best-players__player {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
  text-decoration: none;
  color: var(--text);
}
.match-best-players__item--featured .match-best-players__player {
  flex-direction: column;
  flex: 0 0 auto;
}
.match-best-players__player--link:hover .match-best-players__name {
  color: var(--primary);
}
.match-best-players__photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #fff;
}
.match-best-players__item--featured .match-best-players__photo {
  width: 56px;
  height: 56px;
}
.match-best-players__name {
  font-weight: 600;
  font-size: 14px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.match-best-players__metric {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  line-height: 1.1;
}
.match-best-players__item--featured .match-best-players__metric {
  align-items: center;
}
.match-best-players__value {
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
}
.match-best-players__item--featured .match-best-players__value {
  font-size: 22px;
}
.match-best-players__label {
  font-size: 11px;
  color: var(--grey);
}
@media (max-width: 640px) {
  .match-best-players__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
