.package-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 0;

  border: 1px solid $gray;
  border-radius: 4px;

  &.has-stickers-row {
    grid-row: span 6;

    .package-card__content {
      grid-row: span 5;
    }
  }

  &__image {
    width: 100%;
  }

  &__content {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    row-gap: 12px;
    padding: 16px;
  }

  &__title {
    margin-bottom: 0;
  }

  &__usp {
    display: flex;
    flex-direction: column;
    row-gap: 8px;

    margin-bottom: 0;
    padding-left: 0;
    list-style: none;

    &-item {
      display: flex;
      align-items: baseline;
      column-gap: 8px;
    }
  }

  &__icon {
    font-size: 1rem;
    flex-shrink: 0;
  }

  &__price,
  &__button {
    align-self: end;
  }

  &__stickers {
    min-width: 0;
  }
}
