.product-card_cel {
  --button-width: 200px;

  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;

  @media screen and (width >= 1280px) {
    grid-template-columns: repeat(2, 1fr);
  }

  &.product-card_cel--bundles_cel {
    grid-template-columns: 1fr;
  }
}

.product-card_cel__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--gap-24);
  justify-content: center;
  min-height: 457px;
  min-width: 315px;
  padding: var(--spacers-30);
  width: 315px;

  & .heading {
    height: 56px;
  }

  & .paragraph {
    height: 42px;
  }

  & .heading,
  & .paragraph {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-weight: var(--font-weight-700);
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .buy-buttons .button {
    background: var(--color-white);
    transition: none;

    .button__content {
      background: var(--color-white);
      color: var(--color-indigo);
      font-family: var(--primary-font);
      font-size: var(--font-size-20);
      font-weight: var(--font-weight-700);
      line-height: 120%;
      width: var(--button-width);
    }

    &:hover {
      background-color: var(--color-seafoam);

      .button__content {
        background-color: var(--color-seafoam);
      }
    }
  }
}

.product-card_cel__image {
  display: none;
  height: 100%;
  max-width: 315px;

  img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  @media screen and (width >= 1280px) {
    display: block;
  }
}

.product-card_cel__featured-image {
  height: 163px;
  object-fit: contain;
}
