.card-section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;

  @include media-breakpoint-down(md) {
    padding: 20px;
  }

  .card {
    width: 32%;
    border-radius: 20px;
    border: none;
    padding: 30px;
    min-width: 360px;

    @include media-breakpoint-down(md) {
      width: 100%;
      min-width: 0;
      padding: 10px 30px
    }
  }

  .card-lg {
    width: 49%;
    margin-top: 20px;

    @media (max-width: 1200px) {
      width: 80%;
    }

    @include media-breakpoint-down(md) {
      width: 100%;
    }
  }

  .feature-card {
    .card-title {
      img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        margin-right: 10px;

        @include media-breakpoint-down(md) {
          width: 60px;
        }
      }

      .title {
        margin: 0;
        font-size: 22px;
        font-weight: bold;
        text-transform: uppercase;

        @include media-breakpoint-down(md) {
          font-size: 20px;
        }
      }
    }

    .feature-description {
      min-height: 140px;
      margin: 30px 0;
      font-size: 20px;
      font-weight: 300;

      @include media-breakpoint-down(md) {
        font-size: 16px;
        font-weight: 400;
        margin: 0;

      }
    }

    .read-more-link {
      font-weight: 600;
    }
  }

  .price-card {

    .card-title {
      margin-bottom: 1.25rem;
    }

    .card-title-price {
      font-size: 32px;
      line-height: 26px;
      font-weight: 600;

      @include media-breakpoint-down(md) {
        font-size: 20px;
        line-height: 32px;
        font-weight: 600;
      }
    }

    .subscription-time {
      color: #B45309;
      font-family: "Poppins", sans-serif;
      letter-spacing: 1px;
      font-weight: 500;
    }

    .price-with-vat {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      line-height: 1.15;
    }

    .price-vat-note {
      display: block;
      margin-top: 2px;
      font-family: "Poppins", sans-serif;
      font-size: 10px;
      font-weight: 400;
      line-height: 1.2;
      letter-spacing: 0.02em;
      opacity: 0.72;
      text-transform: none;
    }

    .feature-description {
      min-height: 140px;
      font-family: "Poppins", sans-serif;
      font-weight: 300;
      font-size: 16px;

      @include media-breakpoint-down(md) {
        font-size: 16px;
      }
    }
  }

  .card-gray {
    color: var(--dark-blue-color);
    background-color: var(--white-gray);
  }

    .card-orange {
    color: var(--white-color);
    background-color: var(--orange-surface);

    .subscription-time {
      color: var(--white-color);
    }

    .price-vat-note {
      opacity: 0.85;
    }

    .read-more-link {
      background: var(--dark-blue-color);
    }
  }

  .card-pink {
    color: var(--white-color);
    background-color: var(--pink-surface);
  }

  .feature-list {
    .feature-title {
      margin: 20px 0 10px 0;
      font-size: 18px;
      font-weight: 500;
    }

    .feature-item {
      margin: 14px 0;
      font-size: 18px;
      font-weight: 300;

      @include media-breakpoint-down(md) {
        font-size: 16px;
      }
    }
  }

  .read-more-link {
    background: var(--blue-color);
    color: white;
    width: max-content;
    text-align: center !important;
    margin: 0 0 0 auto;
    padding: 8px 16px;
    border-radius: 16px;
    font-size: 16px !important;
    font-weight: 500;
    text-transform: uppercase;

    .arrow-icon {
      margin-top: 0;
      margin-left: 12px;
    }

    &:hover {
      background: var(--dark-blue-color);
    }

    //@include media-breakpoint-down(md) {
    //  text-align: start !important;
    //  margin-top: 18px !important;
    //}
  }
}

/* Global VAT hint (marketing + payment) */
.price-vat-note {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
  opacity: 0.72;
  text-transform: none;
}

.your-plan-container {
  .price-vat-note {
    display: block;
    margin-top: 2px;
  }
}
