
.wowp-pro-features {
  display: grid;
  grid-template-columns: repeat(1, minmax(0px, 1fr));
  gap: 0.5rem;
  margin-block: 1.5rem;
}

.wowp-pro-feature {
  display: flex;
  grid-column: span 1 / span 1;
  margin-bottom: 1rem;
}

.wowp-pro-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 1rem;
  //box-shadow: rgba(0, 0, 0, 0.1) 0 1px 3px,  rgba(0, 0, 0, 0.1) 0 1px 2px -1px;
  box-shadow: var(--wpie-shadow-small);
  font-size: 1.25rem;
  color: #ffffff;
  border-radius: 0.25rem;
}

.wowp-pro-feature__title {
  color: var(--wpie-color-dark);
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
  box-sizing: border-box;
  font-weight: 700;
}

.wowp-pro-feature__desc {
  color: #6A7282;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}

.wowp-pro-divider {
  grid-column: span 2 / span 2;
}

.wowp-pro-divider:not(:first-of-type) {
  padding-block-start: 1rem;
  border-top: 1px solid var(--wpie-field-border-default);
}

.wowp-pro-divider__title {
  color: #101828;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  margin: 1rem 0;
}

.wowp-pro-divider__desc {
  color: #6A7282;
  line-height: 28px;
  margin: 0 0 20px;
}

.wowp-pro-upgrade {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  border-radius: 0.25rem;
  background-color: #f9fafb;
  margin: -1.25rem -1.25rem 0;
  @media screen and (max-width: 996px) {
    flex-direction: column;
    align-items: flex-start;
  }

  .button-primary {
    margin-top: 1rem;
  }
}

.wowp-pro-upgrade h3 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: rgb(17, 24, 39);
}

.wowp-pro-upgrade p {
  margin: 0 0 1.25rem 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  color: rgb(107, 114, 128);
}

.wowp-pro__profits {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;

  dd {
    margin: 0;
  }

  .wowp-pro__profit {
    border-left: 2px solid var(--wpie-color-blue);
    padding-left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;

    .wpie-icon {
      color: var(--wpie-color-orange);
    }

    dt {
      font-weight: 600;
      font-size: 0.875rem;
      color: var(--wpie-color-dark);
      display: flex;
      align-items: center;
      gap: 0.5rem
    }
  }
}

.wowp-pro-upgrade ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.wowp-pro-upgrade ul li {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.wowp-pro-upgrade .button-primary {
  background: rgb(var(--wpie-rgb-blurple));
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.wowp-pro-upgrade .button-primary:hover {
  background: rgb(var(--wpie-rgb-blue));
}