/* ===================== SUBSCRIPTION TYPES PAGE ===================== */

#subscription-types-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.subscription-type-card {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.subscription-type-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.subscription-type-name {
  font-size: 16px;
  font-weight: 600;
}

.subscription-type-badge {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 20px;
  background: rgba(0,0,0,0.08);
  color: #555;
  font-weight: 600;
  text-transform: uppercase;
}

.subscription-type-description {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

.subscription-type-features {
  font-size: 13px;
  color: #333;
  margin-top: auto;
}
