.fakecombinations {
  margin: 1rem 0 1.5rem;
}
.fakecombinations .fc-title {
  display: block;
  font-weight: 600;
  margin-bottom: .5rem;
  text-transform: uppercase;
  font-size: .875rem;
}
.fakecombinations .fc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.fakecombinations .fc-item {
  margin: 0;
}
.fakecombinations .fc-thumb {
  display: block;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  padding: 4px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 72px;
}
.fakecombinations a.fc-thumb:hover {
  border-color: #999;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.fakecombinations .fc-current .fc-thumb {
  border-color: #2fb5d2;
  cursor: default;
}
.fakecombinations .fc-thumb img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}
.fakecombinations .fc-name {
  display: block;
  font-size: .7rem;
  line-height: 1.1;
  margin-top: 3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
