/* gamecard.css — shared game card component */

.gc-wrap { padding: 8px 0; }
.gc-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.gc-home {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.gc-away {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  justify-content: flex-end;
}
.gc-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.gc-name {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.1px;
}
.gc-score {
  font-size: 12px;
  font-weight: 800;
  color: #f0c040;
  padding: 0 10px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.gc-meta {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 4px;
  letter-spacing: 0.1px;
}
