@use "../../../../../styles/int.scss";

.winner {
  display: flex;
  align-items: center;
  gap: int.$spacing-1;
  height: 100%;
  text-transform: none;
  border: 1px solid int.$warmgray-100;

  @include int.sans($size: "100", $role: "label", $weight: "bold");

  &.gop {
    background-color: int.$gop-10;
  }

  &.dem {
    background-color: int.$dem-10;
  }
}

.icon {
  height: 100%;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-right: 1px solid int.$warmgray-100;

  .gop & {
    background-color: int.$gop-50;
  }

  .dem & {
    background-color: int.$dem-50;
  }
}