.payment-pricing-list {
  background: transparent;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.payment-plan-card[data-template="true"] {
  display: none;
}

.payment-plan-card {
  background: #fff;
  border-radius: var(--radius-tiny);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-plan-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.payment-plan-price {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-blue-dark);
}

.payment-plan-description {
  color: var(--color-gray-medium);
  white-space: normal;
  word-break: break-word;
}

.payment-plan-description .datalist-html-cell {
  max-height: none;
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
}

.payment-plan-footer {
  margin-top: auto;
}

.payment-plan-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-plan-tier {
  font-size: 10px;
  color: var(--color-blue-primary);
  background: rgba(0,123,255,0.08);
  padding: 2px 6px;
  border-radius: var(--radius-tiny);
  width: fit-content;
}