.match-info-strip {
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 16px;
}

.match-info-strip__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #232323;
}

.match-info-strip__items {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
  column-gap: 24px;
}

.match-info-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.3;
  color: #232323;
}

.match-info-strip__icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
}

.match-info-strip__icon svg {
  display: block;
  width: 18px;
  height: auto;
}

.match-info-strip__flag {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 2px;
  flex-shrink: 0;
}

.match-info-strip__text {
  color: #232323;
}

a.match-info-strip__text--link {
  text-decoration: none;
  color: inherit;
  transition: color 0.15s ease;
}

a.match-info-strip__text--link:hover {
  color: var(--primary);
}

@media (max-width: 768px) {
  .match-info-strip {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .match-info-strip__title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .match-info-strip__items {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
  }

  .match-info-strip__item {
    font-size: 13px;
  }
}
