.match-preview {
  margin: 0 0 20px;
}
.match-preview__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.match-preview__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.match-preview__section + .match-preview__section {
  padding-top: 20px;
  border-top: 1px solid #ececec;
}
.match-preview__section-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.match-preview__section-subtitle {
  font-size: 12px;
  color: var(--grey);
  margin-top: 2px;
}
.match-preview__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.match-preview__form-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.match-preview__form-team {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.match-preview__form-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}
.match-preview__form-team-name {
  font-weight: 600;
  font-size: 14px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.match-preview__form-badges {
  display: flex;
  gap: 4px;
}
.match-preview__form-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}
.match-preview__form-badge--win {
  background: #3aa657;
}
.match-preview__form-badge--draw {
  background: #9a9a9a;
}
.match-preview__form-badge--loss {
  background: #d64545;
}
.match-preview__form-meta {
  font-size: 12px;
  color: var(--grey);
}
.match-preview__duel {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.match-preview__duel + .match-preview__duel {
  margin-top: 12px;
}
.match-preview__duel-caption {
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}
.match-preview__duel-counts {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 15px;
}
.match-preview__duel-count--home {
  color: var(--primary);
}
.match-preview__duel-count--draw {
  color: var(--grey);
}
.match-preview__duel-count--away {
  color: #2f80c0;
}
.match-preview__duel-bar {
  display: flex;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--grey-light);
}
.match-preview__duel-seg--home {
  background: var(--primary);
}
.match-preview__duel-seg--draw {
  background: #c9c9c9;
}
.match-preview__duel-seg--away {
  background: #2f80c0;
}
.match-preview__duel-legend {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--grey);
}
.match-preview__streaks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.match-preview__streak {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--grey-light);
  color: var(--text);
  border-left: 3px solid transparent;
}
.match-preview__streak--home {
  border-left-color: var(--primary);
}
.match-preview__streak--away {
  border-left-color: #2f80c0;
}
.match-preview__streak--both {
  border-left-color: #9a9a9a;
}
@media (max-width: 640px) {
  .match-preview__form {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
