.np-circle {
  border-radius: var(--radius-full);
  width: var(--circle-size);
  height: var(--circle-size);
  flex-shrink: 0;

  --circle-border-color: var(--color-border-neutral);
  --circle-border-width: 1px;

  // circle like components have custom typography styles for for default (Inter) font
  font-size: var(--circle-font-size);
  font-weight: var(--font-weight-semi-bold);
  line-height: 1;

  // circle like components have custom typography styles for Wise Sand font
  .np-display {
    font-size: var(--circle-font-size);
  }

  // circle like components has custom icon sizes
  .tw-icon > svg {
    height: var(--circle-icon-size);
    width: var(--circle-icon-size);
  }

  img,
  .wds-flag {
    border-radius: var(--radius-full);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &-border {
    position: relative;
    &::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: var(--radius-full);
      box-shadow: inset 0 0 0 var(--circle-border-width) var(--circle-border-color);
    }
  }
}
