/*
 * SANOME — Exclusivity Badge
 * Badge visual de exclusividade nos cards.
 */

.sn-card-exclusive-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  transform: none;
  z-index: 26;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  padding: 5px 11px;
  border-radius: 0;

  background: rgba(12, 14, 18, .82);
  color: #fff;

  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .24);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.sn-card-exclusive-star {
  color: #f5c542;
  font-size: 13px;
  line-height: 1;
  transform: translateY(-.5px);
}

@media (max-width: 640px) {
  .sn-card-exclusive-badge {
    top: 9px;
    padding: 5px 11px;
    font-size: 10.5px;
  }
}
