/* Batch 7C.15: Match Award Cards (POTM/POTS). */
.cx-potm-card {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: var(--cx-radius-md);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--cx-white);
}
.cx-potm-wrap {
  flex: 1 0 100%;
  display: flex;
  justify-content: center;
}
.cx-potm-wrap .cx-potm-card {
  margin-top: 0;
}
.cx-potm-link {
  color: var(--cx-white) !important;
  text-decoration: none !important;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.cx-potm-link:hover,
.cx-potm-link:focus-visible {
  color: var(--cx-white) !important;
  text-decoration: none !important;
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}
.cx-potm-card span {
  display: block;
  font-size: 11px;
  opacity: 0.82;
  font-weight: 700;
}
.cx-potm-card strong {
  display: block;
  font-size: 14px;
  font-weight: 900;
}
