.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.05rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  box-shadow: var(--sh-1);
  font-size: 0.86rem;
  color: var(--ink-soft);
  transition: border-color 0.25s, transform 0.25s;
}

.chip:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
}

.chip__logo {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  object-fit: contain;
  flex: none;
}

.chip__text b {
  color: var(--ink);
  font-weight: 650;
}

.chip__detail {
  color: var(--ink-faint);
}

/* Award variant renders as a vertical tile: a prominent image on top, with the
   award name and detail stacked below. Siblings in a single .strip row stretch
   to equal height via the strip's default align-items: stretch. */
.chip--award {
  flex-direction: column;
  align-items: center;
  width: 220px;
  padding: 1.5rem 1.35rem;
  gap: 0.9rem;
  border-radius: var(--r);
  text-align: center;
}

/* Award logos arrive at wildly mixed aspect ratios and resolutions; a uniform
   white plate per tile keeps the strip reading as one set. */
.chip--award .chip__logo {
  width: 100%;
  height: 84px;
  padding: 0.6rem;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  object-fit: contain;
}

.chip--award .chip__text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  line-height: 1.4;
}

.chip--partner {
  padding: 0.7rem 1.2rem;
  font-weight: 600;
}

.chip--partner b {
  font-weight: 600;
}
