.content .entry-content {
  & .block-product-cards {
    margin-bottom: 8rem;
  }
}

.block-product-cards {
  background-color: var(--wp--preset--color--bg-off-white);
  margin-bottom: 6rem;
  padding: 88px 0 44px;
  position: relative;

  &.gated-content {
    display: none;
  }

  & .block-product-cards-header {
    padding: 0 1rem 2rem;
    text-align: center;

    & .eyebrow {
      color: var(--wp--custom--eyebrow--color);
      font-size: var(--wp--custom--eyebrow--font-size);
      font-weight: bold;
      margin: 0;
      text-transform: uppercase;
      
    }

    & .title {
      font-size: var(--wp--preset--font-size--lg);
      font-weight: 700;
      line-height: 1.1;
      margin: 0.5rem 0;
    }
  }

  & .product-card-group {
    display: grid;
    gap: 32px;
    grid-template-columns: 1fr;
    justify-content: center;
    margin: 0 auto;
    max-width: 1111px;
    padding: 0 1rem;
    width: 100%;
    

    @media ( width >= 840px ) {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  

  & .product-card {
    border-radius: var(--wp--custom--border-radius--medium);
    background-color: white;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;

    & .content {
      flex: 1;
      padding: 0 1.5rem 1rem;

      & .title {
        align-items: center;
        display: flex;
      }

      & .new {
        background: linear-gradient(to right, #FFA403, #FF7F00);
        border-radius: var(--wp--custom--border-radius--medium);
        color: var(--wp--preset--color--white);
        font-size: 12px;
        margin-left: 8px;
        padding: 0.25rem 0.75rem;
        text-transform: uppercase;
      }

      & a {
        color: var(--wp--preset--color--bodytext);
        font-weight: 600;
        text-decoration: none;

        &:hover {
          color: var(--wp--preset--color--orange);
        }
      }
    }

    & .footer {
      padding: 0 1.5rem;

      & .pricing {
        font-size: var(--wp--preset--font-size--md);
        font-weight: 600;
      }
    }
  }

  & .block-product-cards-footer {
    padding: 4rem 0;
    text-align: center;
  }
}

